<T>LAPACK 0.1.1
C++ Template Linear Algebra PACKage
Loading...
Searching...
No Matches
tlapack::concepts::Matrix Concept Reference

Concept definition

template<typename matrix_t>
concept tlapack::concepts::Matrix = requires(const matrix_t& A)
{
A(0, 0);
{
nrows(A)
}
->std::integral<>;
{
ncols(A)
}
->std::integral<>;
{
size(A)
}
->std::integral<>;
}
Definition concepts.hpp:330
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition scalar_type_traits.hpp:113