Skip to content

Add interface_checks to allowed keywords #1174

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ChrisRackauckas
Copy link
Member

Summary

Test plan

  • Verified that using interface_checks = false no longer throws an unrecognized keyword error
  • All existing tests pass

Example

Previously this would error:

using OrdinaryDiffEq
ode = ODEProblem((u, p, t) -> u, 1.0, (0.0, 1.0))
solve(ode; interface_checks = false)  # ERROR: Unrecognized keyword arguments

Now it's properly recognized as a valid keyword.

Fixes #980

🤖 Generated with Claude Code

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 <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support keyword argument interface_checks
1 participant