Skip to content

Commit

Permalink
- fix bootsrapping
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@12579 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Aug 17, 2012
1 parent 871a1a0 commit 81ae702
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Compiler/BackEnd/BackendDAEOptimize.mo
Original file line number Diff line number Diff line change
Expand Up @@ -1317,7 +1317,7 @@ algorithm
BackendDAE.EquationArray eqns,eqns1;
Option<BackendDAE.IncidenceMatrix> m;
Option<BackendDAE.IncidenceMatrixT> mT;
BackendDAE.Matching matching;
BackendDAE.Matching matching;
case ({},_,_) then inSysts1;
case (BackendDAE.EQSYSTEM(v,eqns,m,mT,matching)::rest,_,_)
equation
Expand Down
5 changes: 3 additions & 2 deletions Compiler/BackEnd/Uncertainties.mo
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,7 @@ protected function eliminateVariablesDAE2
the given set of equations. Returns a set of variable replacements that can
be used to replace the variables in the equations that are left
"
input list<BackendDAE.Equation> eqns;
input list<BackendDAE.Equation> ieqns;
input Integer eqnIndex;
input BackendDAE.Variables vars;
input BackendDAE.Variables knvars;
Expand All @@ -1156,7 +1156,7 @@ protected function eliminateVariablesDAE2
output BackendVarTransform.VariableReplacements outRepl;
algorithm
(outEqns,outSimpleEqns,outMvars,outRepl):=
matchcontinue (eqns,eqnIndex,vars,knvars,mvars,repl,inDoubles,m,elimVarIndexList,failCheck)
matchcontinue (ieqns,eqnIndex,vars,knvars,mvars,repl,inDoubles,m,elimVarIndexList,failCheck)
local
HashTable.HashTable mvars_1,mvars_2;
BackendVarTransform.VariableReplacements repl_1,repl_2;
Expand All @@ -1165,6 +1165,7 @@ algorithm
list<Integer> varIndexList, elimVarIndexList_1;
Integer elimVarIndex;
BackendDAE.Equation e;
list<BackendDAE.Equation> eqns;
DAE.Exp e2;
DAE.ElementSource source;
array<Option<BackendDAE.Var>> varOptArr;
Expand Down

0 comments on commit 81ae702

Please sign in to comment.