Skip to content

Commit 7d1194c

Browse files
[Janitor mode] Fix whitespace
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@23366 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent 9afcf30 commit 7d1194c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Compiler/BackEnd/HpcOmEqSystems.mo

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ algorithm
368368
print(" BUILT SINGLE EQUATONS\n");
369369
BackendDAE.MATCHING(ass1=ass1New, ass2=ass2New, comps=compsNew) := matchingNew;
370370
compsNew := List.map2(compsNew,updateIndicesInComp,listLength(varLst),listLength(eqLst));
371-
371+
372372
//// get the strongComponent for the residual equations and add it at the end of the new StrongComponents
373373
(rComps,resEqsOut,tVarsOut) := buildEqSystemComponent(residualEqs,tearingVars,resEqsOut,tVarsOut,a_iArr,ishared);
374374
print(" BUILT SYSTEM COMPONENTS\n");
@@ -514,7 +514,7 @@ algorithm
514514
list<BackendDAE.Equation> restEqs;
515515
list<BackendDAE.Var> restVars;
516516
case({},_,_,_)
517-
then gaussEqsIn;
517+
then gaussEqsIn;
518518
case(var::restVars,BackendDAE.EQUATION(exp=lhs,scalar=rhs,source=source,attr=attr)::restEqs,_,_)
519519
equation
520520
cref = BackendVariable.varCref(var);
@@ -526,7 +526,7 @@ algorithm
526526
then symbolicGauss2(restVars,restEqs,replIn,BackendDAE.EQUATION(varExp,solvedExp,source,attr)::gaussEqsIn);
527527
end matchcontinue;
528528
end symbolicGauss2;
529-
529+
530530

531531
protected function buildEqSystemComponent "builds a strongComponent for the reduced System. if the system size is 1, a SingleEquation is built, otherwise a EqSystem with jacobian.
532532
author:Waurich TUD 2013-12"
@@ -568,12 +568,12 @@ algorithm
568568
// these are the single equations
569569
(comps,sccEqs,sccVars) = buildEqSystemComponent2(List.intRange(listLength(resEqsIn)),eqIdcsIn,varIdcsIn,m,mT,false,{});
570570
print("CHECKED SYSTEM FOR ASSIGNABLES\n");
571-
571+
572572
// build an equation system from the rest
573573
_::jacValues = arrayList(jacValuesIn);
574574
jac = buildLinearJacobian(jacValues,sccEqs,sccVars);
575575
comp = BackendDAE.EQUATIONSYSTEM(eqIdcsIn,varIdcsIn,BackendDAE.FULL_JACOBIAN(jac),BackendDAE.JAC_LINEAR());
576-
576+
577577
//BackendDump.dumpVarList(tVarsIn,"tVarsIn");
578578
//BackendDump.dumpEquationList(resEqsIn,"resEqsIn");
579579
resEqs = resEqsIn;
@@ -583,7 +583,7 @@ algorithm
583583
//if List.isNotEmpty(sccEqs) then comps = listAppend(comps,{comp}); end if;
584584
resEqs = resEqsIn;
585585
comps = listAppend(comps,comps);
586-
586+
587587
then (comps,resEqs,tVarsIn);
588588

589589
end matchcontinue;

0 commit comments

Comments
 (0)