-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
Start using termination conditions from DiffEqBase #208
Start using termination conditions from DiffEqBase #208
Conversation
Based on: SciML/SimpleNonlinearSolve.jl#45 Should we keep the existing interface, i.e., providing options to specify |
Codecov Report
@@ Coverage Diff @@
## master #208 +/- ##
==========================================
+ Coverage 92.42% 92.91% +0.49%
==========================================
Files 19 19
Lines 1702 1806 +104
==========================================
+ Hits 1573 1678 +105
+ Misses 129 128 -1
... and 1 file with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Yes, for simplicity and keeping the same interface. If |
3eb98ae
to
a6d1020
Compare
I based this check on the SimpleNonlinearSolve.jl behavior: https://github.com/SciML/SimpleNonlinearSolve.jl/blob/main/src/batched/utils.jl#L17-L20 |
@avik-pal can you work with @utkarsh530 to rebase this and get it in? Are the termination conditions all uniform after this? |
aff4595
to
eefbca3
Compare
I think this is just about done, but we need to discuss a few last interface issues:
What this does is effectively allow for the "simple" interface of @avik-pal can you chime in. |
Yeah I agree with the suggestions. The original implementation lived inside DEQs.jl so it was't fleshed out carefully. |
eefbca3
to
2763d65
Compare
Is this done? |
No, not done yet |
@ChrisRackauckas @avik-pal this should be good to merge now. |
Requires #203