Skip to content

Commit

Permalink
- Minor performance increase by reordering modules
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@9783 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Sep 12, 2011
1 parent 38fbc3d commit b88c1a2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Compiler/BackEnd/BackendDAEUtil.mo
Expand Up @@ -6274,7 +6274,14 @@ public function getPreOptModulesString
" function: getPreOptModulesString"
output list<String> strPreOptModules;
algorithm
strPreOptModules := RTOpts.getPreOptModules({"partitionIndependentBlocks","removeFinalParameters","removeEqualFunctionCalls","removeSimpleEquations","expandDerOperator","collapseIndependentBlocks"});
strPreOptModules := RTOpts.getPreOptModules({
"removeFinalParameters",
"removeEqualFunctionCalls",
"partitionIndependentBlocks",
"expandDerOperator",
"removeSimpleEquations",
"collapseIndependentBlocks"
});
end getPreOptModulesString;

protected function getPreOptModules
Expand Down

0 comments on commit b88c1a2

Please sign in to comment.