-
Notifications
You must be signed in to change notification settings - Fork 246
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
Documenter 1.0 upgrade #697
Conversation
SDE example is only compatible with SciMLBase 2. There is also another error regarding a solver name that I don't know how to fix: GeneralMIRK4 |
Finally found the setting to get the buildkite working on PR. |
SciML/BoundaryValueDiffEq.jl#109 should be the only one left, and I hope it merges today. |
docs/src/tutorials/bvp_example.md
Outdated
function bc2!(residual, u, p, t) # u[1] is the beginning of the time span, and u[end] is the ending | ||
residual[1] = u[1][1] + pi / 2 # the solution at the beginning of the time span should be -pi/2 | ||
residual[2] = u[end][1] - pi / 2 # the solution at the end of the time span should be pi/2 | ||
function bc2!((resid_a, resid_b), (u_a, u_b), p, t) # u[1] is the beginning of the time span, and u[end] is the ending |
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.
@avik-pal is this not right?
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.
The t
should not be present
Co-authored-by: Avik Pal <[email protected]>
Looks like there's still more. @avik-pal can you complete this? Let's make sure that the constructors are "complete" before being set in stone. |
No description provided.