Skip to content

Commit

Permalink
WARNING: You will need the latest rml-mmc to compile this MetaModelic…
Browse files Browse the repository at this point in the history
…a code

#1833
- Clean-up


git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@13042 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Sep 25, 2012
1 parent 7157aa8 commit f882590
Show file tree
Hide file tree
Showing 5 changed files with 378 additions and 378 deletions.
8 changes: 4 additions & 4 deletions Compiler/BackEnd/BackendDump.mo
Expand Up @@ -1004,7 +1004,7 @@ algorithm
dumpEqnsSolved2(rest,eqns,vars);
then
();
case (BackendDAE.EQUATIONSYSTEM(eqns=elst,vars=vlst,jacType=jacType)::rest,eqns,vars)
case (BackendDAE.EQUATIONSYSTEM(eqns=elst,vars=vlst,jacType=jacType)::rest,_,_)
equation
print("Equationsystem " +& jacobianTypeStr(jacType) +& ":\n");
varlst = List.map1r(vlst, BackendVariable.getVarAt, vars);
Expand All @@ -1014,7 +1014,7 @@ algorithm
dumpEqnsSolved2(rest,eqns,vars);
then
();
case (BackendDAE.SINGLEARRAY(eqn=e,vars=vlst)::rest,_,vars)
case (BackendDAE.SINGLEARRAY(eqn=e,vars=vlst)::rest,_,_)
equation
print("ArrayEquation:\n");
varlst = List.map1r(vlst, BackendVariable.getVarAt, vars);
Expand All @@ -1024,7 +1024,7 @@ algorithm
dumpEqnsSolved2(rest,eqns,vars);
then
();
case (BackendDAE.SINGLEALGORITHM(eqn=e,vars=vlst)::rest,_,vars)
case (BackendDAE.SINGLEALGORITHM(eqn=e,vars=vlst)::rest,_,_)
equation
print("Algorithm:\n");
varlst = List.map1r(vlst, BackendVariable.getVarAt, vars);
Expand All @@ -1034,7 +1034,7 @@ algorithm
dumpEqnsSolved2(rest,eqns,vars);
then
();
case (BackendDAE.SINGLECOMPLEXEQUATION(eqn=e,vars=vlst)::rest,_,vars)
case (BackendDAE.SINGLECOMPLEXEQUATION(eqn=e,vars=vlst)::rest,_,_)
equation
print("ComplexEquation:\n");
varlst = List.map1r(vlst, BackendVariable.getVarAt, vars);
Expand Down
2 changes: 1 addition & 1 deletion Compiler/FrontEnd/ConnectUtil.mo
Expand Up @@ -706,7 +706,7 @@ protected function outerConnectionMatches
algorithm
matches := match(oc,cr1,cr2)
local DAE.ComponentRef cr11,cr22;
case(Connect.OUTERCONNECT(cr1=cr11,cr2=cr22),cr1,cr2)
case(Connect.OUTERCONNECT(cr1=cr11,cr2=cr22),_,_)
equation
matches =
ComponentReference.crefEqual(cr11,cr1) and ComponentReference.crefEqual(cr22,cr2) or
Expand Down

0 comments on commit f882590

Please sign in to comment.