Skip to content

Commit

Permalink
Fix missing getstepdirection assignment in SUNStepper_Create
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven-Roberts committed Sep 26, 2024
1 parent 75ee9d0 commit a46c34f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/sundials/sundials_stepper.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ SUNErrCode SUNStepper_Create(SUNContext sunctx, SUNStepper* stepper_ptr)
stepper->ops->reset = NULL;
stepper->ops->setstoptime = NULL;
stepper->ops->setstepdirection = NULL;
stepper->ops->getstepdirection = NULL;

*stepper_ptr = stepper;

Expand Down

0 comments on commit a46c34f

Please sign in to comment.