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 bioptim/dynamics/integrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ class Integrator:
The parameters variables scaling factor
fun: Callable
The dynamic function which provides the derivative of the states
implicit_fun: Callable
The implicit dynamic function which provides the defects of the dynamics
control_type: ControlType
The type of the controls
step_time: float
Expand Down
8 changes: 8 additions & 0 deletions bioptim/dynamics/ode_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@ class COLLOCATION(OdeSolverBase):
----------
polynomial_degree: int
The degree of the implicit RK
method : str
The method of interpolation ("legendre" or "radau")
defects_type: DefectType
The type of defect to use (DefectType.EXPLICIT or DefectType.IMPLICIT)

Methods
-------
Expand Down Expand Up @@ -309,6 +313,10 @@ class IRK(COLLOCATION):
----------
polynomial_degree: int
The degree of the implicit RK
method: str
The method of interpolation ("legendre" or "radau")
defects_type: DefectType
The type of defect to use (DefectType.EXPLICIT or DefectType.IMPLICIT)

Methods
-------
Expand Down