Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
maggul committed Oct 8, 2024
1 parent 1d2c835 commit 2d4709f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/arkode/C_serial/ark_analytic_lsrk.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ static int compute_error(N_Vector y, sunrealtype t);
int main(void)
{
/* general problem parameters */
sunrealtype T0 = SUN_RCONST(0.0); /* initial time */
sunrealtype Tf = SUN_RCONST(10.0); /* final time */
sunrealtype dTout = SUN_RCONST(1.0); /* time between outputs */
sunindextype NEQ = 1; /* number of dependent vars. */
sunrealtype T0 = SUN_RCONST(0.0); /* initial time */
sunrealtype Tf = SUN_RCONST(10.0); /* final time */
sunrealtype dTout = SUN_RCONST(1.0); /* time between outputs */
sunindextype NEQ = 1; /* number of dependent vars. */

#if defined(SUNDIALS_DOUBLE_PRECISION)
sunrealtype reltol = SUN_RCONST(1.0e-8); /* tolerances */
Expand Down

0 comments on commit 2d4709f

Please sign in to comment.