Skip to content

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 <noreply@anthropic.com>
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