Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions python/sdist/amici/sim/sundials/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
# from .swig_wrappers
hdf5_enabled = "read_solver_settings_from_hdf5" in dir()
# These modules require the swig interface and other dependencies
from ._debugging import get_model_for_preeq
from ._numpy import ExpDataView as ExpDataView
from ._numpy import ReturnDataView as ReturnDataView
from ._numpy import evaluate as evaluate
Expand Down Expand Up @@ -83,6 +84,7 @@ def get_model(self) -> amici_swig_py.Model:
"ModelModule",
*_swig_wrappers.__all__,
"AmiciModel",
"get_model_for_preeq",
]

# expose the swig module itself
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_preequilibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import amici
import numpy as np
import pytest
from amici.debugging import get_model_for_preeq
from amici.importers.antimony import antimony2amici
from amici.sim.sundials import (
AMICI_ERROR,
Expand All @@ -19,6 +18,7 @@
SteadyStateComputationMode,
SteadyStateSensitivityMode,
SteadyStateStatus,
get_model_for_preeq,
parameter_scaling_from_int_vector,
run_simulation,
)
Expand Down
Loading