You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Importing the ODE and JumpProcess modules is currently done as follows,
frompySODM.models.baseimportODE, 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,
frompySODM.modelsimportODE, JumpProcess
The text was updated successfully, but these errors were encountered:
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,The text was updated successfully, but these errors were encountered: