Skip to content

Commit

Permalink
- Fix syntax error
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@12533 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Aug 15, 2012
1 parent 748da59 commit 24e1cfd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Compiler/BackEnd/BackendQSS.mo
Expand Up @@ -681,7 +681,7 @@ public function getRHSVars
input list<DAE.ComponentRef> states,disc,algs;
output list<DAE.ComponentRef> out;
algorithm
out:=matchcontinue (beqs,vars,simJac,states,disc,algs)
out:= match (beqs,vars,simJac,states,disc,algs)
local
list<DAE.ComponentRef> vars_cref;
list<DAE.Exp> eqs;
Expand Down Expand Up @@ -888,7 +888,7 @@ public function getDiscRHSVars
input list<DAE.ComponentRef> algs;
output list<DAE.ComponentRef> out;
algorithm
out:=matchcontinue (beqs,vars,simJac,states,disc,algs)
out:= match (beqs,vars,simJac,states,disc,algs)
local
list<DAE.ComponentRef> vars_cref;
list<DAE.Exp> eqs;
Expand Down
4 changes: 2 additions & 2 deletions Compiler/BackEnd/Uncertainties.mo
Expand Up @@ -594,12 +594,12 @@ protected function getEquationsWithOneVariable
input list<Integer> uncertainVariables;
output list<Integer> outEq;
algorithm
outEq:=matchcontinue(dae,uncertainVariables)
outEq := match(dae,uncertainVariables)
local array<list<Integer>> m;
case (BackendDAE.DAE(BackendDAE.EQSYSTEM(_,_,SOME(m),_,_)::_,_),uncertainVariables)
then
getEquationsWithOneVariable2(arrayList(m),uncertainVariables,1);
end match;
end match;
end getEquationsWithOneVariable;

protected function getEquationsWithOneVariable2
Expand Down

0 comments on commit 24e1cfd

Please sign in to comment.