Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/sdist/amici/exporters/sundials/cxx_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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()
Expand Down
Loading