Skip to content

Commit

Permalink
Merge pull request #1084 from daviehh/master
Browse files Browse the repository at this point in the history
doc: u0, p keyword arg in solve()
  • Loading branch information
ChrisRackauckas authored Sep 12, 2024
2 parents e2b5a33 + 22e5fa6 commit 6079a64
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,10 @@ explanations of the timestepping algorithms, see the
* `wrap`: Toggles whether to wrap the solution if `prob.problem_type` has a preferred
alternate wrapper type for the solution. Useful when speed, but not shape of solution
is important. Defaults to `Val(true)`. `Val(false)` will cancel wrapping the solution.
* `u0`: The initial condition, overrides the one defined in the problem struct.
Defaults to `nothing` (no override, use the `u0` defined in `prob`).
* `p`: The parameters, overrides the one defined in the problem struct.
Defaults to `nothing` (no override, use the `p` defined in `prob`).
### Progress Monitoring
Expand Down

0 comments on commit 6079a64

Please sign in to comment.