<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
|
Concept for vectors that can be converted to a legacy vector. More...
#include <concepts.hpp>
Concept for vectors that can be converted to a legacy vector.
A legacy vector is a vector that can be converted to tlapack::legacy::Vector. The conversion is performed by calling legacy_vector(const T&)
, which should be callable from the namespace tlapack
. The layout of the vector, tlapack::layout<vector_t>, must be either tlapack::Layout::ColMajor, tlapack::Layout::RowMajor, or tlapack::Layout::Strided. Moreover, a legacy vector must also satisfy the concept tlapack::concepts::LegacyArray.
vector_t | Vector type. |