diff --git a/python/sdist/amici/exporters/sundials/cxx_functions.py b/python/sdist/amici/exporters/sundials/cxx_functions.py index df5de58c5d..ae9eb7013d 100644 --- a/python/sdist/amici/exporters/sundials/cxx_functions.py +++ b/python/sdist/amici/exporters/sundials/cxx_functions.py @@ -434,7 +434,7 @@ def var_in_signature(self, varname: str, ode: bool = True) -> bool: func_name for func_name, func_info in functions.items() if "const int ip" in func_info.arguments() -] +] + ["deltaxB", "dzdx", "drzdx"] #: list of sparse sensitivity functions sparse_sensi_functions = [ @@ -454,6 +454,7 @@ def var_in_signature(self, varname: str, ode: bool = True) -> bool: ] #: list of event sensitivity functions +# (really only those that take `ie` and `ip` as arguments) event_sensi_functions = [ func_name for func_name, func_info in functions.items()