Skip to content

Commit

Permalink
Removed unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
drreynolds committed Jan 17, 2025
1 parent 8d76dad commit b7e15af
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/arkode/arkode_arkstep.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ void* ARKStepCreate(ARKRhsFn fe, ARKRhsFn fi, sunrealtype t0, N_Vector y0,
ARKodeMem ark_mem;
ARKodeARKStepMem step_mem;
SUNNonlinearSolver NLS;
sunbooleantype nvectorOK;
int retval;

/* Check that at least one of fe, fi is supplied and is to be used */
Expand Down
1 change: 0 additions & 1 deletion src/arkode/arkode_erkstep.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ void* ERKStepCreate(ARKRhsFn f, sunrealtype t0, N_Vector y0, SUNContext sunctx)
{
ARKodeMem ark_mem;
ARKodeERKStepMem step_mem;
sunbooleantype nvectorOK;
int retval;

/* Check that f is supplied */
Expand Down
1 change: 0 additions & 1 deletion src/arkode/arkode_lsrkstep.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ void* lsrkStep_Create_Commons(ARKRhsFn rhs, sunrealtype t0, N_Vector y0,
{
ARKodeMem ark_mem;
ARKodeLSRKStepMem step_mem;
sunbooleantype nvectorOK;
int retval;

/* Check that rhs is supplied */
Expand Down
1 change: 0 additions & 1 deletion src/arkode/arkode_mristep.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ void* MRIStepCreate(ARKRhsFn fse, ARKRhsFn fsi, sunrealtype t0, N_Vector y0,
ARKodeMem ark_mem; /* outer ARKODE memory */
ARKodeMRIStepMem step_mem; /* outer stepper memory */
SUNNonlinearSolver NLS; /* default nonlin solver */
sunbooleantype nvectorOK;
int retval;

/* Check that at least one of fse, fsi is supplied and is to be used*/
Expand Down
1 change: 0 additions & 1 deletion src/arkode/arkode_sprkstep.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ void* SPRKStepCreate(ARKRhsFn f1, ARKRhsFn f2, sunrealtype t0, N_Vector y0,
{
ARKodeMem ark_mem = NULL;
ARKodeSPRKStepMem step_mem = NULL;
sunbooleantype nvectorOK = 0;
int retval = 0;

/* Check that f1 and f2 are supplied */
Expand Down

0 comments on commit b7e15af

Please sign in to comment.