You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 29, 2019. It is now read-only.
Would it be possible to make sure that algorithms and functions take a EigenBase<T>, MatrixBase<T> or any other adequate abstract type instead of concrete type so that metapod can avoid enforcing its own matrix type confVector to everyone.
A side effect would be to let the user choose its own scalar type, matrix implementation, etc. which could lead to many potential optimization on the end-user side.
Dear all,
I have the following code which is sub-optimal:
...the following version would avoid a copy but is not possible right now:
Would it be possible to make sure that algorithms and functions take a
EigenBase<T>,MatrixBase<T>or any other adequate abstract type instead of concrete type so that metapod can avoid enforcing its own matrix typeconfVectorto everyone.A side effect would be to let the user choose its own scalar type, matrix implementation, etc. which could lead to many potential optimization on the end-user side.
Thanks!