<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
|
Concept for matrices that can be converted to a legacy matrix. More...
#include <concepts.hpp>
Concept for matrices that can be converted to a legacy matrix.
A legacy matrix is a matrix that can be converted to tlapack::legacy::Matrix. The conversion is performed by calling legacy_matrix(const T&)
, which should be callable from the namespace tlapack
. The layout of the matrix, tlapack::layout<matrix_t>, must be either tlapack::Layout::ColMajor or tlapack::Layout::RowMajor.
matrix_t | Matrix type. |