Skip to content

Commit

Permalink
- fix the order of equations dumped by simCodeDump
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@24166 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Willi Braun committed Jan 23, 2015
1 parent cba6a8a commit 5687737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/SimCode/SimCodeUtil.mo
Expand Up @@ -7622,7 +7622,7 @@ public function dumpSimEqSystemLst
protected
list<String> sLst;
algorithm
sLst := List.map(eqSysLstIn,dumpSimEqSystem);
sLst := List.mapReverse(eqSysLstIn,dumpSimEqSystem);
sLst := List.map1(sLst,stringAppend,"\n");
sOut := List.fold(sLst,stringAppend,"");
end dumpSimEqSystemLst;
Expand Down

0 comments on commit 5687737

Please sign in to comment.