Skip to content

Commit

Permalink
- use intEq instead of equality.
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@6217 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Sep 25, 2010
1 parent 39e624c commit 5a7990e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/Inst.mo
Expand Up @@ -9051,7 +9051,7 @@ algorithm
DAE.Dimension de;
case (DAE.DIM_INTEGER(integer = xI), DAE.DIM_INTEGER(integer = yI))
equation
equality(xI = yI);
true = intEq(xI, yI); // equality(xI = yI);
then
inDimension1;
case (DAE.DIM_UNKNOWN, de) then de;
Expand Down

0 comments on commit 5a7990e

Please sign in to comment.