Skip to content

Commit

Permalink
- more trailing whitespace stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
vwaurich committed Jul 7, 2015
1 parent 3b2b0aa commit 1a4cb22
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions Compiler/BackEnd/BackendDAEUtil.mo
Expand Up @@ -8245,27 +8245,27 @@ algorithm
case(BackendDAE.SINGLEEQUATION(eqn=i1,var=i2),BackendDAE.SINGLEEQUATION(eqn=j1,var=j2))
equation
then intEq(i1,j1) and intEq(i2,j2);

case(BackendDAE.EQUATIONSYSTEM(eqns=l1,vars=l2),BackendDAE.EQUATIONSYSTEM(eqns=k1,vars=k2))
equation
then List.isEqualOnTrue(l1,k1,intEq) and List.isEqualOnTrue(l2,k2,intEq);

case(BackendDAE.SINGLEARRAY(eqn=i1,vars=l1),BackendDAE.SINGLEARRAY(eqn=j1,vars=k1))
equation
then intEq(i1,j1) and List.isEqualOnTrue(l1,k1,intEq);

case(BackendDAE.SINGLEALGORITHM(eqn=i1,vars=l1),BackendDAE.SINGLEALGORITHM(eqn=j1,vars=k1))
equation
then intEq(i1,j1) and List.isEqualOnTrue(l1,k1,intEq);

case(BackendDAE.SINGLECOMPLEXEQUATION(eqn=i1,vars=l1),BackendDAE.SINGLECOMPLEXEQUATION(eqn=j1,vars=k1))
equation
then intEq(i1,j1) and List.isEqualOnTrue(l1,k1,intEq);

case(BackendDAE.SINGLEWHENEQUATION(eqn=i1,vars=l1),BackendDAE.SINGLEWHENEQUATION(eqn=j1,vars=k1))
equation
then intEq(i1,j1) and List.isEqualOnTrue(l1,k1,intEq);

case(BackendDAE.SINGLEIFEQUATION(eqn=i1,vars=l1),BackendDAE.SINGLEIFEQUATION(eqn=j1,vars=k1))
equation
then intEq(i1,j1) and List.isEqualOnTrue(l1,k1,intEq);
Expand All @@ -8290,7 +8290,7 @@ algorithm
case((i1,l1),(i2,l2))
equation
then intEq(i1,i2) and List.isEqualOnTrue(l1,l2,intEq);

else
then false;
end matchcontinue;
Expand Down
8 changes: 4 additions & 4 deletions Compiler/BackEnd/HpcOmTaskGraph.mo
Expand Up @@ -5004,12 +5004,12 @@ algorithm
if intNe(listLength(sortedSystComps),listLength(sortedGraphComps)) then print("the graph and the system have a difference number of components.\n"); end if;
isEqual := true;
while isEqual and not listEmpty(sortedGraphComps) loop
tpl1::sortedGraphComps := sortedGraphComps;
tpl2::sortedSystComps := sortedSystComps;
(comp1,i1) := tpl1;
tpl1::sortedGraphComps := sortedGraphComps;
tpl2::sortedSystComps := sortedSystComps;
(comp1,i1) := tpl1;
(comp2,i2) := tpl2;
if BackendDAEUtil.componentsEqual(comp1,comp2) and intEq(i1,i2) then isEqual:= true;
else
else
isEqual := false;
print("comp"+intString(i1)+BackendDump.printComponent(comp1)+" is not equal to "+"comp"+intString(i2)+BackendDump.printComponent(comp2)+"\n");
end if;
Expand Down

0 comments on commit 1a4cb22

Please sign in to comment.