Skip to content

Commit

Permalink
- fix non c89 comments
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@20124 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Willi Braun committed Apr 14, 2014
1 parent b9be1df commit 8410870
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimulationRuntime/c/simulation/solver/nonlinearSolverNewton.c
Expand Up @@ -314,7 +314,7 @@ int solveNewton(DATA *data, int sysNumber)
giveUp = 0;
nfunc_evals += solverData->nfev;
infoStreamPrint(LOG_NLS, 0, " - iteration making no progress:\t try old values.");
// try to vary the initial values
/* try to vary the initial values */
}
else if(retries < 2)
{
Expand All @@ -324,7 +324,7 @@ int solveNewton(DATA *data, int sysNumber)
giveUp = 0;
nfunc_evals += solverData->nfev;
infoStreamPrint(LOG_NLS, 0, " - iteration making no progress:\t vary solution point by 1%%.");
// try to vary the initial values
/* try to vary the initial values */
}
else if(retries < 3)
{
Expand Down

0 comments on commit 8410870

Please sign in to comment.