Skip to content

Commit e78c33d

Browse files
committed
Add linsolve_kwargs
1 parent 02cc6eb commit e78c33d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/solve.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ const allowedkeywords = (:dense,
8181
:alias_noise,
8282
# This is for SimpleNonlinearSolve handling for batched Nonlinear Solves
8383
:batch,
84-
# `problem_type` is for BVPs. needed in Ensemble Solve
85-
:problem_type,
8684
# Shooting method in BVP needs to differentiate between these two categories
8785
:nlsolve_kwargs,
88-
:odesolve_kwargs)
86+
:odesolve_kwargs,
87+
# If Solvers which internally use linsolve
88+
:linsolve_kwargs)
8989

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

0 commit comments

Comments
 (0)