35#ifndef _BLAZE_MATH_CONSTRAINTS_STRICTLYLOWER_H_
36#define _BLAZE_MATH_CONSTRAINTS_STRICTLYLOWER_H_
61#define BLAZE_CONSTRAINT_MUST_BE_STRICTLY_LOWER_MATRIX_TYPE(T) \
62 static_assert( ::blaze::IsStrictlyLower_v<T>, "Non-strictly lower triangular matrix type detected" )
81#define BLAZE_CONSTRAINT_MUST_NOT_BE_STRICTLY_LOWER_MATRIX_TYPE(T) \
82 static_assert( !::blaze::IsStrictlyLower_v<T>, "Strictly lower triangular matrix type detected" )
Header file for the IsStrictlyLower type trait.