From a46c34fb8c00bec7168798c6ffcfbc2be8cd475f Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Thu, 26 Sep 2024 14:17:01 -0700 Subject: [PATCH] Fix missing getstepdirection assignment in SUNStepper_Create --- src/sundials/sundials_stepper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sundials/sundials_stepper.c b/src/sundials/sundials_stepper.c index e588cc2c26..f1a9f5a97b 100644 --- a/src/sundials/sundials_stepper.c +++ b/src/sundials/sundials_stepper.c @@ -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;