Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed May 3, 2024
1 parent 265fe3b commit 7bdeb07
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
15 changes: 10 additions & 5 deletions python/sdist/amici/sbml_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -1839,7 +1839,8 @@ def _process_event_observables(
f'Event observable {eo["name"]} uses `t` in '
"it's formula which is not the time variable. "
"For the time variable, please use `time` "
"instead!"
"instead!",
stacklevel=1,
)

# check for nesting of observables (unsupported)
Expand Down Expand Up @@ -2158,7 +2159,8 @@ def _get_conservation_laws_demartino(
"Conservation laws for non-constant species in "
"combination with parameterized stoichiometric "
"coefficients are not currently supported "
"and will be turned off."
"and will be turned off.",
stacklevel=1,
)
return []

Expand Down Expand Up @@ -2235,7 +2237,8 @@ def _get_conservation_laws_rref(
"Conservation laws for non-constant species in "
"combination with parameterized stoichiometric "
"coefficients are not currently supported "
"and will be turned off."
"and will be turned off.",
stacklevel=1,
)
return []

Expand Down Expand Up @@ -3049,7 +3052,8 @@ def _non_const_conservation_laws_supported(sbml_model: sbml.Model) -> bool:
warnings.warn(
"Conservation laws for non-constant species in "
"models with RateRules are currently not supported "
"and will be turned off."
"and will be turned off.",
stacklevel=1,
)
return False

Expand All @@ -3061,7 +3065,8 @@ def _non_const_conservation_laws_supported(sbml_model: sbml.Model) -> bool:
warnings.warn(
"Conservation laws for non-constant species in "
"models with Species-AssignmentRules are currently not "
"supported and will be turned off."
"supported and will be turned off.",
stacklevel=1,
)
return False

Expand Down
6 changes: 4 additions & 2 deletions python/sdist/amici/swig_wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ def runAmiciSimulation(
warnings.warn(
"Adjoint sensitivity analysis for models with discontinuous right hand sides (events/piecewise functions) has not been thoroughly tested."
"Sensitivities might be wrong. Tracked at https://github.com/AMICI-dev/AMICI/issues/18. "
"Adjoint sensitivity analysis may work if the location of the discontinuity is not parameter-dependent, but we still recommend testing accuracy of gradients."
"Adjoint sensitivity analysis may work if the location of the discontinuity is not parameter-dependent, but we still recommend testing accuracy of gradients.",
stacklevel=1,
)

with _capture_cstdout():
Expand Down Expand Up @@ -119,7 +120,8 @@ def runAmiciSimulations(
warnings.warn(
"Adjoint sensitivity analysis for models with discontinuous right hand sides (events/piecewise functions) has not been thoroughly tested. "
"Sensitivities might be wrong. Tracked at https://github.com/AMICI-dev/AMICI/issues/18. "
"Adjoint sensitivity analysis may work if the location of the discontinuity is not parameter-dependent, but we still recommend testing accuracy of gradients."
"Adjoint sensitivity analysis may work if the location of the discontinuity is not parameter-dependent, but we still recommend testing accuracy of gradients.",
stacklevel=1,
)

with _capture_cstdout():
Expand Down
1 change: 1 addition & 0 deletions python/sdist/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,5 @@ line-length = 79
extend-include = ["*.ipynb"]

[tool.ruff.lint]
extend-select = ["B028"]
ignore = ["E402", "F403", "F405", "E741"]

0 comments on commit 7bdeb07

Please sign in to comment.