Importing the ODE and JumpProcess modules is currently done as follows,
from pySODM.models.base import ODE, JumpProcess
But it would actually be more straightforward to move these classes from the base.py to a separate file ODE.py and JumpProcess.py so they can be loaded as follows,
Importing the ODE and JumpProcess modules is currently done as follows,
But it would actually be more straightforward to move these classes from the
base.py
to a separate fileODE.py
andJumpProcess.py
so they can be loaded as follows,