Skip to content

Commit

Permalink
Fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaeuber authored and OpenModelica-Hudson committed Apr 21, 2016
1 parent 4d8f6c5 commit f07d894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/BackEnd/Tearing.mo
Expand Up @@ -4346,7 +4346,7 @@ algorithm
if listEmpty(unassigned) then
// save current full matching
if isNewMatching(matchingListOut,ass1Copy) then
matchingListOut := (ass1Copy,ass2Copy,order) :: matchingListOut;
matchingListOut := (ass1Copy,ass2Copy,listReverse(order)) :: matchingListOut;
end if;
end if;
else
Expand Down

0 comments on commit f07d894

Please sign in to comment.