We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a97df27 commit 9a3c241Copy full SHA for 9a3c241
src/arkode/arkode_lsrkstep_io.c
@@ -456,8 +456,10 @@ int lsrkStep_SetDefaults(ARKodeMem ark_mem)
456
step_mem->domeignfe = 0;
457
step_mem->stagemax = 0;
458
step_mem->ndomeigupdates = 0;
459
- step_mem->stagemaxlimit = round(SUNRsqrt(ark_mem->reltol / (10.0 * ark_mem->uround)));
460
- step_mem->stagemaxlimit = (step_mem->stagemaxlimit > 2) ? step_mem->stagemaxlimit : 2;
+ step_mem->stagemaxlimit =
+ round(SUNRsqrt(ark_mem->reltol / (10.0 * ark_mem->uround)));
461
462
+ (step_mem->stagemaxlimit > 2) ? step_mem->stagemaxlimit : 2;
463
step_mem->nstsig = 0;
464
465
/* Spectral info */
0 commit comments