From 3a26598d4aeb5786a30d63de26340ea1618d2d63 Mon Sep 17 00:00:00 2001 From: Steven Roberts Date: Tue, 29 Oct 2024 10:06:33 -0700 Subject: [PATCH] Rename SUNStepper Jacobian typedefs --- include/sundials/sundials_stepper.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/include/sundials/sundials_stepper.h b/include/sundials/sundials_stepper.h index 3b109dae3e..029ca538b2 100644 --- a/include/sundials/sundials_stepper.h +++ b/include/sundials/sundials_stepper.h @@ -19,12 +19,13 @@ extern "C" { #endif -typedef int (*SUNJacFn)(sunrealtype t, N_Vector y, N_Vector fy, SUNMatrix Jac, - void* user_data, N_Vector tmp1, N_Vector tmp2, - N_Vector tmp3); +typedef int (*SUNRhsJacFn)(sunrealtype t, N_Vector y, N_Vector fy, + SUNMatrix Jac, void* user_data, N_Vector tmp1, + N_Vector tmp2, N_Vector tmp3); -typedef int (*SUNJacTimesFn)(N_Vector v, N_Vector Jv, sunrealtype t, N_Vector y, - N_Vector fy, void* user_data, N_Vector tmp); +typedef int (*SUNRhsJacTimesFn)(N_Vector v, N_Vector Jv, sunrealtype t, + N_Vector y, N_Vector fy, void* user_data, + N_Vector tmp); typedef _SUNDIALS_STRUCT_ SUNStepper_* SUNStepper;