Skip to content

Commit

Permalink
- Fix compilation
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8853 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed May 6, 2011
1 parent ebdcf57 commit 8d01c27
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Compiler/BackEnd/SimCode.mo
Expand Up @@ -2186,7 +2186,7 @@ algorithm

// Replace variables in nonlinear equation systems with xloc[index]
// variables.
allEquations = applyResidualReplacements(allEquations);
allEquations = Util.listMap(allEquations,applyResidualReplacements);
Debug.fcall("execJacstat",print, "*** SimCode -> generate analytical Jacobians: " +& realString(clock()) +& "\n" );
LinearMats = createJacobianMatrix(functionTree,dlow,ass1,ass2,comps,m,mt);
LinearMats = createLinearModelMatrixes(functionTree,dlow,ass1,ass2,LinearMats);
Expand Down Expand Up @@ -2349,7 +2349,7 @@ algorithm

// Replace variables in nonlinear equation systems with xloc[index]
// variables.
allEquations = applyResidualReplacements(allEquations);
allEquations = Util.listMap(allEquations,applyResidualReplacements);
Debug.fcall("execJacstat",print, "*** SimCode -> generate analytical Jacobians: " +& realString(clock()) +& "\n" );
LinearMats = createJacobianMatrix(functionTree,dlow,ass1,ass2,comps,m,mt);
LinearMats = createLinearModelMatrixes(functionTree,dlow,ass1,ass2,LinearMats);
Expand Down Expand Up @@ -4303,7 +4303,6 @@ algorithm
Integer index;
list<DAE.ComponentRef> crefs;
VarTransform.VariableReplacements repl;
SimEqSystem ;
list<SimVar> discVars;
list<Integer> values,value_dims;

Expand Down

0 comments on commit 8d01c27

Please sign in to comment.