Christopher Rackauckas
Christopher Rackauckas
My plan is to create a keyword argument `alias` which then has a struct `ODEAliases
@jClugstor does this specification make sense?
You'll find: > alias_u0: allows the solver to alias the initial condition array that is contained in the problem struct. Defaults to false. in DiffEq > alias_A::Bool: Whether to alias...
Yes exactly.
I don't think so, they will just be a new common kwarg to solve.
The interface needs a few more things. We should define the interface in `AbstractAliasSpecifier` to have: * A keyword argument `alias = nothing`, which if `true` would override all other...
> I think we have to take this one step further - if users just use the old API, everything has to work as documented. See, e.g., https://github.com/SciML/OrdinaryDiffEq.jl/pull/2503/files#r1818084222 Yes, that's...
```julia struct ODEAliases
> Are there any solvers where alias_p and alias_f should actually do anything at this point? I haven't found any solvers where these are keywords. No, those are ones to...