Blaze 3.9
TransposeFlag.h
Go to the documentation of this file.
1//=================================================================================================
33//=================================================================================================
34
35#ifndef _BLAZE_MATH_TRANSPOSEFLAG_H_
36#define _BLAZE_MATH_TRANSPOSEFLAG_H_
37
38
39namespace blaze {
40
41//=================================================================================================
42//
43// VECTOR TRANSPOSE FLAG TYPES
44//
45//=================================================================================================
46
47//*************************************************************************************************
58constexpr bool columnVector = false;
59//*************************************************************************************************
60
61
62//*************************************************************************************************
73constexpr bool rowVector = true;
74//*************************************************************************************************
75
76} // namespace blaze
77
78#endif
constexpr bool columnVector
Transpose flag for column vectors.
Definition: TransposeFlag.h:58
constexpr bool rowVector
Transpose flag for row vectors.
Definition: TransposeFlag.h:73