Skip to content
Snippets Groups Projects
Commit bdeff26f authored by andy's avatar andy
Browse files

BUG: corrected tableBase max-bounds check

parent fdee1a27
Branches
Tags
No related merge requests found
......@@ -241,7 +241,7 @@ bool Foam::TableBase<Type>::checkMaxBounds
scalar& xDash
) const
{
if (x < table_.last().first())
if (x > table_.last().first())
{
switch (boundsHandling_)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment