|
|
reset(self,
n,
has_jac)
Prepare integrator for call: allocate memory, set flags, etc. |
source code
|
|
|
|
run(self,
f,
jac,
y0,
t0,
t1,
f_params,
jac_params)
Integrate from t=t0 to t=t1 using y0 as an initial condition. |
source code
|
|
|
|
step(self,
f,
jac,
y0,
t0,
t1,
f_params,
jac_params)
Make one integration step and return (y1,t1). |
source code
|
|
|
|
run_relax(self,
f,
jac,
y0,
t0,
t1,
f_params,
jac_params)
Integrate from t=t0 to t>=t1 and return (y1,t). |
source code
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__init__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|