File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
name = " DiffEqBase"
2
2
uuid = " 2b5f629d-d688-5b77-993f-72d75c75574e"
3
3
authors = [
" Chris Rackauckas <[email protected] >" ]
4
- version = " 6.129 .0"
4
+ version = " 6.130 .0"
5
5
6
6
[deps ]
7
7
ArrayInterface = " 4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Original file line number Diff line number Diff line change @@ -80,7 +80,12 @@ const allowedkeywords = (:dense,
80
80
# This is for copying/deepcopying noise in StochasticDiffEq
81
81
:alias_noise ,
82
82
# 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 )
84
89
85
90
const KWARGWARN_MESSAGE = """
86
91
Unrecognized keyword arguments found. Future versions will error.
205
210
const NOISE_SIZE_MESSAGE = """
206
211
Noise sizes are incompatible. The expected number of noise terms in the defined
207
212
`noise_rate_prototype` does not match the number of noise terms in the defined
208
- `AbstractNoiseProcess`. Please ensure that
213
+ `AbstractNoiseProcess`. Please ensure that
209
214
size(prob.noise_rate_prototype,2) == length(prob.noise.W[1]).
210
215
211
216
Note: Noise process definitions require that users specify `u0`, and this value is
You can’t perform that action at this time.
0 commit comments