35 #ifndef _BLAZE_MATH_CONSTRAINTS_VECVECKRONEXPR_H_ 36 #define _BLAZE_MATH_CONSTRAINTS_VECVECKRONEXPR_H_ 62 #define BLAZE_CONSTRAINT_MUST_BE_VECVECKRONEXPR_TYPE(T) \ 63 static_assert( ::blaze::IsVecVecKronExpr_v<T>, "Non-vector/vector Kronecker product expression type detected" ) 82 #define BLAZE_CONSTRAINT_MUST_NOT_BE_VECVECKRONEXPR_TYPE(T) \ 83 static_assert( !::blaze::IsVecVecKronExpr_v<T>, "Vector/vector Kronecker product expression type detected" ) 102 #define BLAZE_CONSTRAINT_MUST_FORM_VALID_VECVECKRONEXPR(T1,T2) \ 103 static_assert( ::blaze::IsVector_v<T1> && \ 104 ::blaze::IsVector_v<T2> \ 105 , "Invalid vector/vector Kronecker product expression detected" ) Header file for the IsVecVecKronExpr type trait class.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the IsVector type trait.