Skip to content

Commit

Permalink
- fixed level scheduling
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@21303 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Volker Waurich committed Jun 27, 2014
1 parent 1456d7c commit 5c8950a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/BackEnd/HpcOmScheduler.mo
Expand Up @@ -1414,7 +1414,7 @@ algorithm
levelComps := List.mapList1_1(level,Util.arrayGetIndexFirst,inComps);
levelComps := List.mapList1_1(levelComps,List.sort,intGt);
SCCs := List.map1(levelComps,getSimEqSysIdcsForNodeLst,iSccSimEqMapping);
levelTasks := List.threadMap(SCCs,List.map(level,List.create),makeCalcLevelTaskLst);
levelTasks := List.threadMap(SCCs,List.mapList(level,List.create),makeCalcLevelTaskLst);
oSchedule := HpcOmSimCode.LEVELSCHEDULE(levelTasks);

//update nodeMark for graphml representation
Expand Down

0 comments on commit 5c8950a

Please sign in to comment.