Skip to content

Commit

Permalink
-vxworks include
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@22574 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
RuedKamp committed Oct 2, 2014
1 parent cedb83f commit 112569e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions SimulationRuntime/cpp/Solver/Euler/Euler.cpp
Expand Up @@ -335,9 +335,10 @@ void Euler::doEulerBackward()
*T = new double[_dimSys*_dimSys], // Iterationsmatrix
*jac = new double[_dimSys*_dimSys], // Jacobimatrix
*yHelp = new double[_dimSys],
*fHelp = new double[_dimSys],
*pHelp = new double[_dimSys]; // Hilfsvariale Pivotisierun
memset(pHelp,0,_dimSys*sizeof(double));
*fHelp = new double[_dimSys];

long int *pHelp = new long int[_dimSys]; // Hilfsvariale Pivotisierun
memset(pHelp,0,_dimSys*sizeof(long int));

while( _idid == 0 && _solverStatus != USER_STOP )
{
Expand Down Expand Up @@ -539,9 +540,9 @@ void Euler::doMidpoint()
*deltaZ = new double[_dimSys], // Hilfsvariable für Stufe
*f0 = new double[_dimSys],
*LSErhs = new double[_dimSys],
*pHelp = new double[_dimSys],
*fHelp = new double[_dimSys]; // Hilfsvariable für rechte Seite

long int *pHelp = new long int[_dimSys]; // Hilfsvariale Pivotisierun
// Rechte Seite
double* k1 = new double[_dimSys];

Expand Down

0 comments on commit 112569e

Please sign in to comment.