diff --git a/include/sundials/sundials_stepper.h b/include/sundials/sundials_stepper.h index 7be02fa131..cc17fc9daf 100644 --- a/include/sundials/sundials_stepper.h +++ b/include/sundials/sundials_stepper.h @@ -104,6 +104,9 @@ SUNDIALS_EXPORT SUNErrCode SUNStepper_SetGetStepDirectionFn(SUNStepper stepper, SUNStepperGetStepDirectionFn fn); +SUNDIALS_EXPORT SUNErrCode SUNStepper_SetForcingFn(SUNStepper stepper, + SUNStepperSetForcingFn fn); + SUNDIALS_EXPORT SUNErrCode SUNStepper_Evolve(SUNStepper stepper, sunrealtype t0, sunrealtype tout, N_Vector y, sunrealtype* tret); @@ -122,9 +125,6 @@ SUNErrCode SUNStepper_Reset(SUNStepper stepper, sunrealtype tR, N_Vector yR); SUNDIALS_EXPORT SUNErrCode SUNStepper_SetStopTime(SUNStepper stepper, sunrealtype tstop); -SUNDIALS_EXPORT SUNErrCode SUNStepper_SetForcingFn(SUNStepper stepper, - SUNStepperSetForcingFn fn); - SUNDIALS_EXPORT SUNErrCode SUNStepper_SetStepDirection(SUNStepper stepper, sunrealtype stepdir);