-
-
Couldn't load subscription status.
- Fork 120
Move utilities to SciMLBase #1197
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
Conversation
|
Core tests fail |
f7c3a4f to
bd458cd
Compare
|
Yeah it's looking for functions that will be in SciMLBase but aren't there yet. I can confirm that on this branch and with SciMLBase master the Core tests pass, so I don't think SciMLBase needs anymore changes at least. |
|
@ChrisRackauckas downstream 2 is failing because |
|
Without this, there are compatibility issues leading to precompilation errors from the automatic upgrade of SciMLBase. For example: |
|
It's because solve for EnsembleProblems is duplicated and becomes overwritten. Maybe better to fix the precompilation issue first then handle this since it's such a huge PR. #1201 |
2ed3616 to
a843902
Compare
d405d1d to
f845a85
Compare
|
@ChrisRackauckas as far as I can tell none of the test failures are caused by this, so I think this is ready to look at. |
Checklist
contributor guidelines, in particular the SciML Style Guide and
COLPRAC.
Additional context
This moves most of the utilities used by the solve function to SciMLBase. This will allow other packages to use some of the utilities useful for
solvewithout depending on DiffEqBase. Specifically NonlinearSolveBase will need to use several of these functions in order to move away from depending on DiffEqBase.(SciML/SciMLBase.jl#1110)