Skip to content
This repository has been archived by the owner on May 18, 2019. It is now read-only.

Commit

Permalink
[NF] Evaluate >= as >=, not as >.
Browse files Browse the repository at this point in the history
Belonging to [master]:
  - #2773
  • Loading branch information
perost authored and OpenModelica-Hudson committed Nov 7, 2018
1 parent 2492d60 commit 19ec6d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/NFFrontEnd/NFCeval.mo
Expand Up @@ -1214,7 +1214,7 @@ algorithm
case Op.LESS then evalRelationLess(exp1, exp2);
case Op.LESSEQ then evalRelationLessEq(exp1, exp2);
case Op.GREATER then evalRelationGreater(exp1, exp2);
case Op.GREATEREQ then evalRelationGreater(exp1, exp2);
case Op.GREATEREQ then evalRelationGreaterEq(exp1, exp2);
case Op.EQUAL then evalRelationEqual(exp1, exp2);
case Op.NEQUAL then evalRelationNotEqual(exp1, exp2);
else
Expand Down

0 comments on commit 19ec6d1

Please sign in to comment.