Skip to content

Commit

Permalink
Merge pull request #926 from SciML/ap/kwargs
Browse files Browse the repository at this point in the history
Add solve kwargs from BVP
  • Loading branch information
ChrisRackauckas authored Sep 20, 2023
2 parents c47b6b7 + b4e50e4 commit 456cb3d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DiffEqBase"
uuid = "2b5f629d-d688-5b77-993f-72d75c75574e"
authors = ["Chris Rackauckas <[email protected]>"]
version = "6.129.0"
version = "6.130.0"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
9 changes: 7 additions & 2 deletions src/solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ const allowedkeywords = (:dense,
# This is for copying/deepcopying noise in StochasticDiffEq
:alias_noise,
# This is for SimpleNonlinearSolve handling for batched Nonlinear Solves
:batch)
:batch,
# Shooting method in BVP needs to differentiate between these two categories
:nlsolve_kwargs,
:odesolve_kwargs,
# If Solvers which internally use linsolve
:linsolve_kwargs)

const KWARGWARN_MESSAGE = """
Unrecognized keyword arguments found. Future versions will error.
Expand Down Expand Up @@ -205,7 +210,7 @@ end
const NOISE_SIZE_MESSAGE = """
Noise sizes are incompatible. The expected number of noise terms in the defined
`noise_rate_prototype` does not match the number of noise terms in the defined
`AbstractNoiseProcess`. Please ensure that
`AbstractNoiseProcess`. Please ensure that
size(prob.noise_rate_prototype,2) == length(prob.noise.W[1]).
Note: Noise process definitions require that users specify `u0`, and this value is
Expand Down

0 comments on commit 456cb3d

Please sign in to comment.