From 536c14bf6fa61e701036e96569b893d140b7f644 Mon Sep 17 00:00:00 2001 From: Cody Balos Date: Mon, 6 May 2024 11:10:26 -0700 Subject: [PATCH] cleanup --- src/sundials/sundials_stepper_impl.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/sundials/sundials_stepper_impl.h b/src/sundials/sundials_stepper_impl.h index 194dda3dd8..edff3112d9 100644 --- a/src/sundials/sundials_stepper_impl.h +++ b/src/sundials/sundials_stepper_impl.h @@ -21,7 +21,6 @@ extern "C" { #endif typedef struct SUNStepper_Ops_s* SUNStepper_Ops; -typedef struct SUNStepper_PrivOps_s* SUNStepper_PrivOps; struct SUNStepper_Ops_s { @@ -52,12 +51,6 @@ struct SUNStepper_s /* fused op workspace */ sunrealtype* fused_scalars; N_Vector* fused_vectors; - - /* Space requirements */ - sunindextype lrw1; /* no. of sunrealtype words in 1 N_Vector */ - sunindextype liw1; /* no. of integer words in 1 N_Vector */ - long int lrw; /* no. of sunrealtype words in work vectors */ - long int liw; /* no. of integer words in work vectors */ }; #ifdef __cplusplus