-
-
Notifications
You must be signed in to change notification settings - Fork 234
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
EnsembleProblem support AbstractVector #1062
Comments
I don't understand. EnsembleProblem allows for static array problems via prob_func. Can you share an example/MWE? |
Yes, using
|
What interface? share the docs link? |
The u0s thing isn't documented and is deprecated before it ever got documented though? |
Thanks for clarification! |
Okay so this wasn't pulled from any documentation? If so, then this is at least a completion to the issue since there hasn't been an intent to finish it. If it's just from reading the code, note that this interface is not planned to be finished, it's planned to be removed since there's some issues with it and it does not save much over just using the |
But if this is documented anywhere, please please let me know, that's not intended. |
Thanks. I do not think it is documented anywhere. |
Is your feature request related to a problem? Please describe.
Rightnow
EnsembleProblem(prob::AbstractSciMLProblem, u0s::Vector{Vector{T}}; kwargs...)
only support Vector{Vector{T}} as u0s, but in some cases, we may want to use Vector{StaticVector} as u0s.Describe the solution you’d like
So I think it would be better to support AbstractVector as u0s.
The text was updated successfully, but these errors were encountered: