Skip to content

Commit

Permalink
- Fix initial value for rhsConstant (previously always returned false)
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8931 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed May 11, 2011
1 parent 322f9a0 commit 195abdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/BackEnd/BackendDAEUtil.mo
Expand Up @@ -4926,7 +4926,7 @@ algorithm
true;
case ((dae as BackendDAE.DAE(orderedEqs = eqns)))
equation
((_,res)) = BackendEquation.traverseBackendDAEEqnsWithStop(eqns,rhsConstant2,(dae,false));
((_,res)) = BackendEquation.traverseBackendDAEEqnsWithStop(eqns,rhsConstant2,(dae,true));
then
res;
end matchcontinue;
Expand Down

0 comments on commit 195abdb

Please sign in to comment.