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
/// A type describing a vector whose elements are doubles e.g. (E_x, E_y)
template <class... Dims>
using DVector = Vector<double, Dims...>;
This issue should be tackled after #38. All functions operating on Vectors should then include static_assertions to ensure that they are correctly mixing covariant/contravariant objects
The text was updated successfully, but these errors were encountered:
Where appropriate replace the use of
std::array
withVector
as defined here:gyselalibxx/src/utils/ddc_aliases.hpp
Lines 80 to 101 in 37a2d44
This issue should be tackled after #38. All functions operating on Vectors should then include static_assertions to ensure that they are correctly mixing covariant/contravariant objects
The text was updated successfully, but these errors were encountered: