Fix master CI: import OrdinaryDiffEq sub-packages explicitly#367
Draft
ChrisRackauckas-Claude wants to merge 1 commit intoSciML:mainfrom
Draft
Fix master CI: import OrdinaryDiffEq sub-packages explicitly#367ChrisRackauckas-Claude wants to merge 1 commit intoSciML:mainfrom
ChrisRackauckas-Claude wants to merge 1 commit intoSciML:mainfrom
Conversation
After OrdinaryDiffEq v7's split into sub-packages, `Rodas4`, `Rodas5`, and other Rosenbrock solvers are no longer in scope from a bare `using DifferentialEquations` (which re-exports the OrdinaryDiffEq shell). Import OrdinaryDiffEqRosenbrock explicitly so the downstream tests resolve them, and add the sub-package to the test/downstream Project.toml deps. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
After OrdinaryDiffEq v7's split into sub-packages,
Rodas4andRodas5are no longer in scope from a bareusing DifferentialEquations(which now just re-exports the OrdinaryDiffEq shell). ImportOrdinaryDiffEqRosenbrockexplicitly so the downstream test intest/downstream/diffeq_tests.jlresolves them.Master CI on this repo has been red since the OrdinaryDiffEq v7 ecosystem-bump merge. This PR resolves the
UndefVarError: Rodas4 not definedandUndefVarError: Rodas5 not definedfailures (Issues 55 and 36).Note: after the import is fixed, one separate pre-existing master failure remains (NOT introduced by this PR): the
Performance / Issue 36testset hitsArgumentError: Passing a Bool for keyword argument autodiff is no longer supported. Use an ADType specifier from ADTypes.jl, e.g. AutoForwardDiff() or AutoFiniteDiff(). The test callsRodas5(autodiff = false), which needs to be updated toRodas5(autodiff = AutoFiniteDiff()). Out of scope for this PR per task constraints.Ignore until reviewed by @ChrisRackauckas.