Skip to content

Commit 02cc6eb

Browse files
authored
Add solve kwargs from BVP
1 parent 69366dd commit 02cc6eb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/solve.jl

Lines changed: 6 additions & 1 deletion
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+
# `problem_type` is for BVPs. needed in Ensemble Solve
85+
:problem_type,
86+
# Shooting method in BVP needs to differentiate between these two categories
87+
:nlsolve_kwargs,
88+
:odesolve_kwargs)
8489

8590
const KWARGWARN_MESSAGE = """
8691
Unrecognized keyword arguments found. Future versions will error.

0 commit comments

Comments
 (0)