Skip to content

Commit

Permalink
[Janitor mode] Fix tabs
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@19818 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Mar 27, 2014
1 parent b5b0cda commit 5268a63
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Compiler/BackEnd/Tearing.mo
Expand Up @@ -126,8 +126,8 @@ algorithm
case (_) equation
true = stringEqual(inTearingMethod, "cellier");
then CELLIER_TEARING();
case (_) equation
case (_) equation
true = stringEqual(inTearingMethod, "carpanzano2");
then CARPANZANO_TEARING();

Expand All @@ -150,20 +150,20 @@ protected function callTearingMethod
algorithm
(ocomp, outRunMatching) := match(inTearingMethod, isyst, ishared, eindex, vindx, ojac, jacType)
case(OMC_TEARING(), _, _, _, _, _, _)
equation
(ocomp,outRunMatching)=omcTearing(isyst, ishared, eindex, vindx, ojac, jacType);
equation
(ocomp,outRunMatching)=omcTearing(isyst, ishared, eindex, vindx, ojac, jacType);
then (ocomp,outRunMatching);

case(CELLIER_TEARING(), _, _, _, _, _, _)
equation
(ocomp,outRunMatching)=tearingSystem1_1(isyst, ishared, eindex, vindx, ojac, jacType);
equation
(ocomp,outRunMatching)=tearingSystem1_1(isyst, ishared, eindex, vindx, ojac, jacType);
then (ocomp,outRunMatching);
//case(CARPANZANO_TEARING(), _, _, _, _, _, _)
// equation
// (ocomp,outRunMatching)=tearingSystem1_1(isyst, ishared, eindex, vindx, ojac, jacType);
//case(CARPANZANO_TEARING(), _, _, _, _, _, _)
// equation
// (ocomp,outRunMatching)=tearingSystem1_1(isyst, ishared, eindex, vindx, ojac, jacType);
// then (ocomp,outRunMatching);
end match;
end callTearingMethod;

Expand Down

0 comments on commit 5268a63

Please sign in to comment.