Skip to content

Commit

Permalink
[Janitor mode] Fix tabs
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@16519 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Jun 28, 2013
1 parent 5827a36 commit 4fd5493
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Compiler/FrontEnd/ExpressionSimplify.mo
Expand Up @@ -3918,7 +3918,7 @@ algorithm
Expression.operatorEqual(op1,DAE.ADD(ty));

true = Expression.operatorEqual(op2,DAE.DIV(ty)) or
Expression.operatorEqual(op2,DAE.MUL(ty));
Expression.operatorEqual(op2,DAE.MUL(ty));
e1_1 = DAE.BINARY(e1, DAE.MUL(ty),e2);
e = DAE.BINARY(e4, DAE.MUL(ty),e5);
res = DAE.BINARY(e1_1,op1,e);
Expand All @@ -3931,8 +3931,8 @@ algorithm
true = Expression.expEqual(e2,e4);
true = Expression.operatorEqual(op1,DAE.SUB(ty)) or
Expression.operatorEqual(op1,DAE.ADD(ty));
e = Expression.expDiv(e3,e4);
res = DAE.BINARY(e1,op1,e);
e = Expression.expDiv(e3,e4);
res = DAE.BINARY(e1,op1,e);
then
res;

Expand All @@ -3942,8 +3942,8 @@ algorithm
true = Expression.expEqual(e2,e4);
true = Expression.operatorEqual(op1,DAE.SUB(ty)) or
Expression.operatorEqual(op1,DAE.ADD(ty));
e = Expression.expDiv(e3,e4);
res = DAE.BINARY(e,op1,e1);
e = Expression.expDiv(e3,e4);
res = DAE.BINARY(e,op1,e1);
then
res;

Expand All @@ -3954,10 +3954,10 @@ algorithm
true = Expression.operatorEqual(op1,DAE.SUB(ty)) or
Expression.operatorEqual(op1,DAE.ADD(ty));
true = Expression.operatorEqual(op2,DAE.DIV(ty)) or
Expression.operatorEqual(op2,DAE.MUL(ty));
e = Expression.expDiv(e4,e3);
e1_1 = DAE.BINARY(e1,op2,e2);
res = DAE.BINARY(e1_1,op1,e);
Expression.operatorEqual(op2,DAE.MUL(ty));
e = Expression.expDiv(e4,e3);
e1_1 = DAE.BINARY(e1,op2,e2);
res = DAE.BINARY(e1_1,op1,e);
then
res;

Expand Down

0 comments on commit 4fd5493

Please sign in to comment.