twallema / pySODM

Simulating and Optimising Dynamical Models in Python 3
Other
9 stars 2 forks source link

Split base.py in ODE and JumpProcess #77

Open twallema opened 3 months ago

twallema commented 3 months ago

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,

from pySODM.models import ODE, JumpProcess