We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are two right-hand side functions
user_rhs
Solver
step_rhs
step
There are (at least) 3 different signatures:
def simple(t: float, y: ndarray_1d) -> ndarray_1d: pass def with_args(t: float, y: ndarray_1d, *args) -> ndarray_1d: pass def with_p(t: float, y: ndarray_1d, p: ndarray) -> ndarray_1d: pass
simple
with_p
with_args
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are two right-hand side functions
user_rhs
: provided by the user to theSolver
step_rhs
: provided by theSolver
tostep
There are (at least) 3 different signatures:
step
(in the future)simple
with_p
(if p is always the same, i.e. a 1d vector)with_args
with_p
The text was updated successfully, but these errors were encountered: