Skip to content

Commit 512da53

Browse files
Add interface_checks to allowed keywords
This PR adds the `interface_checks` keyword argument to the list of allowed keywords for `solve` and `init`, as documented in SciMLBase.jl PR #561. Previously, using `interface_checks = false` would throw an unrecognized keyword error. Now it's properly recognized as a valid keyword argument. Fixes #980 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d878c48 commit 512da53

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/solve.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ const allowedkeywords = (:dense,
101101
# For AbstractAliasSpecifier
102102
:alias,
103103
# Parameter estimation with BVP
104-
:fit_parameters)
104+
:fit_parameters,
105+
# Interface checks control
106+
:interface_checks)
105107

106108
const KWARGWARN_MESSAGE = """
107109
Unrecognized keyword arguments found.

0 commit comments

Comments
 (0)