Skip to content

Commit

Permalink
Remove redundant step_supports_forcing flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven-Roberts committed Oct 22, 2024
1 parent 3e2e3bf commit 55e6e24
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/arkode/arkode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1443,7 +1443,6 @@ ARKodeMem arkCreate(SUNContext sunctx)
ark_mem->step_supports_implicit = SUNFALSE;
ark_mem->step_supports_massmatrix = SUNFALSE;
ark_mem->step_supports_relaxation = SUNFALSE;
ark_mem->step_supports_forcing = SUNFALSE;

/* Initialize root finding variables */
ark_mem->root_mem = NULL;
Expand Down
1 change: 0 additions & 1 deletion src/arkode/arkode_arkstep.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ void* ARKStepCreate(ARKRhsFn fe, ARKRhsFn fi, sunrealtype t0, N_Vector y0,
ark_mem->step_supports_implicit = SUNTRUE;
ark_mem->step_supports_massmatrix = SUNTRUE;
ark_mem->step_supports_relaxation = SUNTRUE;
ark_mem->step_supports_forcing = SUNTRUE;
ark_mem->step_mem = (void*)step_mem;

/* Set default values for optional inputs */
Expand Down
1 change: 0 additions & 1 deletion src/arkode/arkode_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,6 @@ struct ARKodeMemRec
ARKMassMultFn step_mmult;

/* Time stepper module -- forcing */
sunbooleantype step_supports_forcing;
ARKTimestepSetForcingFn step_setforcing;

/* N_Vector storage */
Expand Down

0 comments on commit 55e6e24

Please sign in to comment.