-
-
Notifications
You must be signed in to change notification settings - Fork 217
Add DDE support in System
#2207
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
DDEProblem{true}(sys, args...; kwargs...) | ||
end | ||
function DiffEqBase.DDEProblem{iip}(sys::AbstractODESystem, u0map = [], | ||
h = (u, p) -> zeros(length(states(sts))), |
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.
bold assumption. yeah we'll need to have some way to give a history function.
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.
Since it's a positional argument before something with a default, it must also have a default.
What is your planned representation for passing symbolic history functions? Just if the default value is a symbolic expression? |
Yeah, since |
Yes, so okay just wanted to double check. |
now works. See
test/dde.jl
for more details.