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@16238 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Jun 6, 2013
1 parent 125f870 commit a297e3c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Compiler/BackEnd/HpcOmTaskGraph.mo
Original file line number Diff line number Diff line change
Expand Up @@ -580,11 +580,11 @@ algorithm
_ := match(iGraph, fileName)
case(GRAPH(components = components), _)
equation
graph = GraphML.getGraph("TaskGraph", true);
graph = List.fold(components, addSccToGraphML, graph);
GraphML.dumpGraph(graph, fileName);
then ();
end match;
graph = GraphML.getGraph("TaskGraph", true);
graph = List.fold(components, addSccToGraphML, graph);
GraphML.dumpGraph(graph, fileName);
then ();
end match;
end dumpAsGraphML_SccLevel;


Expand Down
10 changes: 5 additions & 5 deletions Compiler/BackEnd/IndexReduction.mo
Original file line number Diff line number Diff line change
Expand Up @@ -7523,11 +7523,11 @@ algorithm
outGraph := match(inNode, eqns, mapIncRowEqn, numberMode, inGraph)
case(_,_,_,false,_)
equation
eqn = BackendDAEUtil.equationNth(eqns, mapIncRowEqn[inNode]-1);
str = BackendDump.equationString(eqn);
//str := intString(inNode);
str = intString(inNode) +& ": " +& BackendDump.equationString(eqn);
str = Util.xmlEscape(str);
eqn = BackendDAEUtil.equationNth(eqns, mapIncRowEqn[inNode]-1);
str = BackendDump.equationString(eqn);
//str := intString(inNode);
str = intString(inNode) +& ": " +& BackendDump.equationString(eqn);
str = Util.xmlEscape(str);
then GraphML.addNode("n" +& intString(inNode),str,GraphML.COLOR_GREEN,GraphML.RECTANGLE(),NONE(),inGraph);
case(_,_,_,true,_)
equation
Expand Down

0 comments on commit a297e3c

Please sign in to comment.