StorageOrder.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_STORAGEORDER_H_
36 #define _BLAZE_MATH_STORAGEORDER_H_
37 
38 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // MATRIX STORAGE ORDER TYPES
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
71 constexpr bool rowMajor = false;
72 //*************************************************************************************************
73 
74 
75 //*************************************************************************************************
99 constexpr bool columnMajor = true;
100 //*************************************************************************************************
101 
102 } // namespace blaze
103 
104 #endif
constexpr bool rowMajor
Storage order flag for row-major matrices.
Definition: StorageOrder.h:71
constexpr bool columnMajor
Storage order flag for column-major matrices.
Definition: StorageOrder.h:99
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58