Skip to content

Commit

Permalink
- bugfix dynamic state selection
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@14703 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Jan 7, 2013
1 parent 53967ec commit f49a670
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Compiler/BackEnd/IndexReduction.mo
Original file line number Diff line number Diff line change
Expand Up @@ -2524,7 +2524,8 @@ algorithm
// generate system
eqns = BackendEquation.listEquation(eqnslst);
eqns = BackendEquation.addEquations(eqnslst1, eqns);
vars = BackendVariable.addVars(vlst, hovvars);
vars = BackendVariable.listVar1(vlst);
vars = BackendVariable.addVars(BackendVariable.varList(hovvars), vars);
syst = BackendDAE.EQSYSTEM(vars,eqns,NONE(),NONE(),BackendDAE.NO_MATCHING(),{});
// BackendDump.printEqSystem(syst);
// get advanced incidence Matrix
Expand Down

0 comments on commit f49a670

Please sign in to comment.