Skip to content
This repository was archived by the owner on May 18, 2019. It is now read-only.

Commit c5383bb

Browse files
committed
Fix wrong escape sequence
1 parent bb86695 commit c5383bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

SimulationRuntime/c/util/simulation_options.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const char *FLAG_DESC[FLAG_MAX+1] = {
162162
/* FLAG_NEWTON_STRATEGY */ "value specifies the damping strategy for the newton solver",
163163
/* FLAG_NLS */ "value specifies the nonlinear solver",
164164
/* FLAG_NLS_INFO */ "outputs detailed information about solving process of non-linear systems into csv files.",
165-
/* FLAG_NLS_LS */ "value specifies the linear solver used by the non-linear solver\m nlsLS=[totalpivot|lapack|klu]",
165+
/* FLAG_NLS_LS */ "value specifies the linear solver used by the non-linear solver",
166166
/* FLAG_NOEMIT */ "do not emit any results to the result file",
167167
/* FLAG_NOEQUIDISTANT_GRID */ "stores results not in equidistant time grid as given by stepSize or numberOfIntervals, instead the variable step size of dassl is used.",
168168
/* FLAG_NOEQUIDISTANT_OUT_FREQ*/ "value controls the output frequency in noEquidistantTimeGrid mode",
@@ -331,7 +331,7 @@ const char *FLAG_DETAILED_DESC[FLAG_MAX+1] = {
331331
/* FLAG_NLS_INFO */
332332
" Outputs detailed information about solving process of non-linear systems into csv files.",
333333
/* FLAG_NLS_LS */
334-
"value specifies the linear solver used by the non-linear solver\m nlsLS=[totalpivot|lapack|klu]",
334+
" Value specifies the linear solver used by the non-linear solver:\n * totalpivot\n * lapack (default)\n * klu",
335335
/* FLAG_NOEMIT */
336336
" Do not emit any results to the result file.",
337337
/* FLAG_NOEQUIDISTANT_GRID */

0 commit comments

Comments
 (0)