@@ -391,15 +391,15 @@ type IncidenceMatrixT = IncidenceMatrix "IncidenceMatrixT : a list of equation i
391391- Incidence Matrix T" ;
392392
393393public
394- uniontype Solvability
394+ uniontype Solvability
395395 record SOLVABILITY_SOLVED "Equation is already solved for the variable" end SOLVABILITY_SOLVED ;
396396 record SOLVABILITY_CONSTONE "Coefficient is equal 1 or -1" end SOLVABILITY_CONSTONE ;
397397 record SOLVABILITY_CONST "Coefficient is constant" end SOLVABILITY_CONST ;
398398 record SOLVABILITY_PARAMETER "Coefficient contains parameters"
399- Boolean b "false if the partial derivative is zero" ;
399+ Boolean b "false if the partial derivative is zero" ;
400400 end SOLVABILITY_PARAMETER ;
401401 record SOLVABILITY_TIMEVARYING "Coefficient contains variables, is time varying"
402- Boolean b "false if the partial derivative is zero" ;
402+ Boolean b "false if the partial derivative is zero" ;
403403 end SOLVABILITY_TIMEVARYING ;
404404 record SOLVABILITY_NONLINEAR "The variable occurse nonlinear in the equation." end SOLVABILITY_NONLINEAR ;
405405 record SOLVABILITY_UNSOLVABLE "The variable occurse in the equation, but it is not posible to solve
@@ -475,7 +475,7 @@ type ConstraintEquations = list<tuple<Integer,list<Equation>>>;
475475
476476
477477public
478- uniontype StateOrder
478+ uniontype StateOrder
479479 record STATEORDER
480480 HashTableCG . HashTable hashTable "x -> dx" ;
481481 HashTable3 . HashTable invHashTable "dx -> {x,y,z}" ;
@@ -485,7 +485,7 @@ end StateOrder;
485485public
486486uniontype StrongComponent
487487 record SINGLEEQUATION
488- Integer eqn;
488+ Integer eqn;
489489 Integer var ;
490490 end SINGLEEQUATION ;
491491
@@ -494,13 +494,13 @@ uniontype StrongComponent
494494 list< Integer > vars "be carefule with states, this are solved for der(x)" ;
495495 Option < list< tuple< Integer , Integer , Equation >>> jac;
496496 JacobianType jacType;
497- end EQUATIONSYSTEM ;
497+ end EQUATIONSYSTEM ;
498498
499499 record MIXEDEQUATIONSYSTEM
500500 StrongComponent condSystem;
501501 list< Integer > disc_eqns;
502502 list< Integer > disc_vars;
503- end MIXEDEQUATIONSYSTEM ;
503+ end MIXEDEQUATIONSYSTEM ;
504504
505505 record SINGLEARRAY
506506 Integer eqn;
@@ -522,7 +522,7 @@ uniontype StrongComponent
522522 list< Integer > residualequations;
523523 list< tuple< Integer ,list< Integer >>> otherEqnVarTpl "list of tuples of indexes for Equation and Variable solved in the equation, in the order they have to be solved" ;
524524 Boolean linear;
525- end TORNSYSTEM ;
525+ end TORNSYSTEM ;
526526
527527end StrongComponent ;
528528
0 commit comments