-
Notifications
You must be signed in to change notification settings - Fork 33
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
Generalize vertices type in VPolytope #2004
Comments
Why restricted it |
The vector of abstract vectors is general enough. This is the recommended memory layout for handling many static arrays (https://juliaarrays.github.io/StaticArrays.jl/latest/pages/api/#Arrays-of-static-arrays-1). |
|
Of course, there can be applications that are better off with another outer array type, but none that i'm aware. We can always add a new type to handle further specializations. |
It does not hurt to add the type parameter now. It hurts to change it later again because that is always a breaking change. |
It should be:
The text was updated successfully, but these errors were encountered: