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 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // VECTOR TRANSPOSE FLAG TYPES
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
58 const bool columnVector = false;
59 //*************************************************************************************************
60 
61 
62 //*************************************************************************************************
73 const bool rowVector = true;
74 //*************************************************************************************************
75 
76 } // namespace blaze
77 
78 #endif
const bool columnVector
Transpose flag for column vectors.
Definition: TransposeFlag.h:58
const bool rowVector
Transpose flag for row vectors.
Definition: TransposeFlag.h:73
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57