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@17750 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Oct 18, 2013
1 parent 5d8ac56 commit b695185
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Compiler/BackEnd/Tearing.mo
Expand Up @@ -1930,16 +1930,16 @@ algorithm
matchcontinue(me,meT,m,mt,impossibleAss,algo)
local
list<Integer> potentials;
String heuristic;
String heuristic;
case(_,_,_,_,_,1)
equation
Debug.fcall(Flags.TEARING_DUMPVERBOSE, print,"\n" +& BORDER +& "\nBEGINNING of potentialsCellier\n\n");
heuristic = Config.getTearingHeuristic();
Debug.fcall(Flags.TEARING_DUMPVERBOSE, print,"Chosen Heuristic: " +& heuristic +& "\n\n");
heuristic = Config.getTearingHeuristic();
Debug.fcall(Flags.TEARING_DUMPVERBOSE, print,"Chosen Heuristic: " +& heuristic +& "\n\n");
potentials = Debug.bcallret3(stringEqual(heuristic,"cellier"),potentialsCellier,m,mt,impossibleAss,{});
potentials = Debug.bcallret3(stringEqual(heuristic,"cellier2"),potentialsCellier2,m,mt,impossibleAss,potentials);
potentials = Debug.bcallret3(stringEqual(heuristic,"cellier3"),potentialsCellier3,m,mt,impossibleAss,potentials);
potentials = Debug.bcallret3(stringEqual(heuristic,"cellier4"),potentialsCellier4,m,mt,impossibleAss,potentials);
potentials = Debug.bcallret3(stringEqual(heuristic,"cellier2"),potentialsCellier2,m,mt,impossibleAss,potentials);
potentials = Debug.bcallret3(stringEqual(heuristic,"cellier3"),potentialsCellier3,m,mt,impossibleAss,potentials);
potentials = Debug.bcallret3(stringEqual(heuristic,"cellier4"),potentialsCellier4,m,mt,impossibleAss,potentials);
Debug.fcall(Flags.TEARING_DUMPVERBOSE, print,"\nEND of potentialsCellier\n" +& BORDER +& "\n\n");
// potentials = List.setDifference(potentials,unsolvables);
then
Expand Down

0 comments on commit b695185

Please sign in to comment.