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

Concept definition

template<typename work_t>
concept tlapack::concepts::Workspace = requires(work_t& work)
{
{
reshape(work, 0, 0)
}
->internal::PairOfTransposableMatrixAndOther<>;
{
reshape(work, 0)
}
->internal::PairOfVectorAndOther<>;
}
Definition concepts.hpp:538
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