Skip to content

Commit 456cb3d

Browse files
Merge pull request #926 from SciML/ap/kwargs
Add solve kwargs from BVP
2 parents c47b6b7 + b4e50e4 commit 456cb3d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DiffEqBase"
22
uuid = "2b5f629d-d688-5b77-993f-72d75c75574e"
33
authors = ["Chris Rackauckas <[email protected]>"]
4-
version = "6.129.0"
4+
version = "6.130.0"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/solve.jl

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,12 @@ const allowedkeywords = (:dense,
8080
# This is for copying/deepcopying noise in StochasticDiffEq
8181
:alias_noise,
8282
# This is for SimpleNonlinearSolve handling for batched Nonlinear Solves
83-
:batch)
83+
:batch,
84+
# Shooting method in BVP needs to differentiate between these two categories
85+
:nlsolve_kwargs,
86+
:odesolve_kwargs,
87+
# If Solvers which internally use linsolve
88+
:linsolve_kwargs)
8489

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

0 commit comments

Comments
 (0)