Skip to content

Commit

Permalink
Fix accidental deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven-Roberts committed Jun 19, 2024
1 parent e927ea3 commit 7a29a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/idas/idas_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -2265,7 +2265,7 @@ int IDAPrintAllStats(void* ida_mem, FILE* outfile, SUNOutputFormat fmt)
sunfprintf_long(outfile, fmt, SUNFALSE, "Residual fn evals", IDA_mem->ida_nre);

/* IC calculation stats */
sunfprintf_long(outfile, fmt, SUNFALSE, "IC linesearch backtrack ",
sunfprintf_long(outfile, fmt, SUNFALSE, "IC linesearch backtrack ops",
IDA_mem->ida_nbacktr);

/* nonlinear solver stats */
Expand Down

0 comments on commit 7a29a73

Please sign in to comment.