Skip to content

Commit

Permalink
[Janitor mode] Fix whitespace
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@23115 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Oct 31, 2014
1 parent 7a27ec3 commit cc1a03d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Compiler/BackEnd/BackendDAEUtil.mo
Expand Up @@ -2516,7 +2516,7 @@ algorithm
row := incidenceRow(eq, inVars, inIndexType, functionTree, {});
// Put it in the arrays.
arrayUpdate(outIncidenceArray, idx, row);
outIncidenceArrayT := fillincidenceMatrixT(row, {idx}, outIncidenceArrayT);
outIncidenceArrayT := fillincidenceMatrixT(row, {idx}, outIncidenceArrayT);
end for;
end incidenceMatrixDispatch;

Expand Down Expand Up @@ -2581,10 +2581,10 @@ algorithm
ei := eqnsindxs;
end if;

// Put it in the array.
// Put it in the array.
row := listAppend(ei, arrayGet(inIncidenceArrayT, v));
arrayUpdate(outIncidenceArrayT, v, row);
end for;
end for;
end fillincidenceMatrixT;

public function incidenceRow
Expand Down Expand Up @@ -2680,7 +2680,7 @@ algorithm
case BackendDAE.ALGORITHM(size=size,alg=DAE.ALGORITHM_STMTS(statementLst = statementLst))
equation
res = traverseStmts(statementLst, function incidenceRowAlgorithm(inVariables = vars,
functionTree = functionTree, inIndexType = inIndexType), iRow);
functionTree = functionTree, inIndexType = inIndexType), iRow);
then
(res,size);

Expand Down Expand Up @@ -2719,7 +2719,7 @@ protected
algorithm
for eq in inEquation loop
(outIntegerLst, size) :=
incidenceRow(eq, inVariables, inIndexType, functionTree, outIntegerLst);
incidenceRow(eq, inVariables, inIndexType, functionTree, outIntegerLst);
rowSize := rowSize + size;
end for;
end incidenceRowLst;
Expand Down Expand Up @@ -2785,7 +2785,7 @@ protected
list<Integer> row;
algorithm
(exp, row) := inTuple;
row := incidenceRowExp(exp, inVariables, row, functionTree, inIndexType);
row := incidenceRowExp(exp, inVariables, row, functionTree, inIndexType);
outTuple := (exp, row);
end incidenceRowAlgorithm;

Expand Down

0 comments on commit cc1a03d

Please sign in to comment.