Skip to content

Commit

Permalink
Update _solution.py (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-kidger authored Jun 13, 2024
1 parent e8b8e5c commit dac8620
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions diffrax/_solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,8 @@ class Solution(AbstractPath):
- `ys`: The value of the solution at each of the times in `ts`. Might `None` if no
values were saved.
- `stats`: Statistics for the solve (number of steps etc.).
- `result`: Integer specifying the success or cause of failure of the solve. A
value of `0` corresponds to a successful solve. Any other value is a failure.
A human-readable message can be obtained by looking up messages via
`diffrax.RESULTS[<integer>]`.
- `result`: Enumeration specifying the success or cause of failure of the solve.
A human-readable message is displayed if printed. No message means success!
- `solver_state`: If saved, the final internal state of the numerical solver.
- `controller_state`: If saved, the final internal state for the step size
controller.
Expand Down

0 comments on commit dac8620

Please sign in to comment.