Skip to content

Commit

Permalink
BreakTiesAsBefore
Browse files Browse the repository at this point in the history
  • Loading branch information
HansOlsson committed Feb 18, 2022
1 parent fb57949 commit cdabfdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modelica/Resources/C-Sources/ModelicaStandardTables.c
Expand Up @@ -4264,7 +4264,7 @@ double ModelicaStandardTables_CombiTable2D_getDerValue(void* _tableID, double u1
extrapolate2 = LEFT;
last2 = 0;
}
else if (!isLess(u2, der_u2, u2Max)) {
else if (isLess(u2Max, -der_u2, u2)) {
extrapolate2 = RIGHT;
last2 = nCol - 3;
}
Expand Down

0 comments on commit cdabfdc

Please sign in to comment.