-
-
Notifications
You must be signed in to change notification settings - Fork 77
refactoring ODEq and SDEq utils.jl to DEDiffTools #21
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
src/misc_utils.jl
Outdated
| DiffCache(zeros(T, length), zeros(Dual{chunk_size, T}, length)) | ||
| end | ||
|
|
||
| Base.@pure DiffCache(u::AbstractArray) = DiffCache(eltype(u),length(u),Val{ForwardDiff.pickchunksize(length(u))}) |
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.
Just delete this file
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.
Deleted
src/StochasticDiffEq.jl
Outdated
| import DiffEqBase: resize!,deleteat!,addat!,full_cache,user_cache, u_cache,du_cache, | ||
| resize_non_user_cache!,deleteat_non_user_cache!,addat_non_user_cache!, | ||
| terminate!,get_du, get_dt,get_proposed_dt, | ||
| terminate!,DiffEqDiffTools.get_du, get_dt,get_proposed_dt, |
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.
Don't shadow here. This is a "different get_du" which is part of the integrator interface.
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.
Deleted.
Beware blind find->replace.
|
You should remove DiffBase, ForwardDiff, and NLsolve from the REQUIRE file. |
|
Removed. |
|
Supersceded by other changes. |
pew pew!