-
-
Notifications
You must be signed in to change notification settings - Fork 81
Bump compat for OrdinaryDiffEq v7 / SciMLBase v3 ecosystem #1466
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -188,7 +188,7 @@ let | |
|
|
||
| # Solves and checks values of solution (do this before integrator mutation test | ||
| # since integrator mutation affects shared parameter state). | ||
| sol = solve(prob, Tsit5(); maxiters = 10, verbose = false) | ||
| sol = solve(prob, Tsit5(); maxiters = 10) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am still confussed here,
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's if you want literally everything off, though it's probably not a good idea to always do that 😅
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To be honest, not sure what the intention is for these tests, I didn't write them
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think it needs verbosity turned off. |
||
| @test sol[:X][1] == 1.0 | ||
| @test sol[:X2][1] == 0.0 | ||
| @test sol[:Y][1] == 0.0 | ||
|
|
@@ -215,7 +215,7 @@ let | |
| @test prob2.ps[:d] == 0.5 # not changed | ||
|
|
||
| # Test that we can solve the remade problem and verify solution values. | ||
| sol2 = solve(prob2, Tsit5(); maxiters = 10, verbose = false) | ||
| sol2 = solve(prob2, Tsit5(); maxiters = 10) | ||
| @test sol2[:X][1] == 3.0 | ||
| @test sol2[:X2][1] == 2.0 | ||
| @test sol2[:Y][1] == 1.0 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is
verobes = falsenow the default forsolve?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it doesn't use booleans at all.