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@17083 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Sep 6, 2013
1 parent a872839 commit c2656a8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions SimulationRuntime/c/simulation/solver/solver_main.c
Expand Up @@ -149,7 +149,7 @@ int initializeSolverData(DATA* data, SOLVER_INFO* solverInfo)

if(solverInfo->solverMethod != S_OPTIMIZATION)
{
sim_result.emit(&sim_result,data);
sim_result.emit(&sim_result,data);
overwriteOldSimulationData(data);
}

Expand Down Expand Up @@ -659,11 +659,11 @@ static int rungekutta_step(DATA* data, SOLVER_INFO* solverInfo)
#ifdef WITH_IPOPT
static int ipopt_step(DATA* data, SOLVER_INFO* solverInfo)
{
int cJ = currectJumpState;
currectJumpState = ERROR_OPTIMIZE;
startIpopt(data, solverInfo,5);
currectJumpState = cJ;
return 0;
int cJ = currectJumpState;
currectJumpState = ERROR_OPTIMIZE;
startIpopt(data, solverInfo,5);
currectJumpState = cJ;
return 0;
}
#endif

Expand Down
2 changes: 1 addition & 1 deletion SimulationRuntime/c/util/omc_error.c
Expand Up @@ -80,7 +80,7 @@ const char *LOG_STREAM_DESC[LOG_MAX] = {
"additional information during event iteration", /* LOG_EVENTS */
"verbose logging of event system", /* LOG_EVENTS_V */
"additional information during initialization", /* LOG_INIT */
"more information from Ipopt" /* LOG_IPOPT */
"more information from Ipopt" /* LOG_IPOPT */
"outputs the jacobian matrix used by dassl", /* LOG_JAC */
"logging for linear systems", /* LOG_LS */
"verbose logging of linear systems", /* LOG_LS_V */
Expand Down

0 comments on commit c2656a8

Please sign in to comment.