-
-
Notifications
You must be signed in to change notification settings - Fork 104
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
Add aliasing API types #830
Conversation
1e50992
to
5c81a89
Compare
what's next here? |
I still need to make sure that every problem has an associated That's mostly done for LinearSolve, NonlinearSolve, and OrdinaryDiffEq. Actually, if we need to be able to use it to decide whether to alias |
Checklist
contributor guidelines, in particular the SciML Style Guide and
COLPRAC.
Additional context
This adds the abstract type
AbstractAliasSpecifier
and the concrete subtypesODEAliases
andLinearAliases
meant to hold information on which variables to alias when solving the problems. When an alias specifier is true, that variable is aliased, and vice versa for false. When the alias specifier isnothing
, the solvers default behavior is used.Also bumps the minor version since this is a new feature.