Skip to content

Commit

Permalink
[Janitor mode] Fix tabs
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@16254 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Jun 9, 2013
1 parent 76d656a commit 19d3fe7
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions SimulationRuntime/c/simulation/solver/radau.c
Expand Up @@ -625,17 +625,17 @@ int kinsolOde(void* ode)
int i;
initKinsol(kinOde);
for(i = 0; i<2; ++i)
{
kData->error_code = KINSol( kData->kmem, /* KINSol memory block */
kData->x, /* initial guess on input; solution vector */
kData->glstr, /* global stragegy choice */
kData->sVars, /* scaling vector, for the variable cc */
kData->sEqns );
if(kData->error_code != 0)
kData->glstr = 1 -kData->glstr;
else
return 0;
}
{
kData->error_code = KINSol( kData->kmem, /* KINSol memory block */
kData->x, /* initial guess on input; solution vector */
kData->glstr, /* global stragegy choice */
kData->sVars, /* scaling vector, for the variable cc */
kData->sEqns );
if(kData->error_code != 0)
kData->glstr = 1 -kData->glstr;
else
return 0;
}
return -1;
}
#else
Expand Down

0 comments on commit 19d3fe7

Please sign in to comment.