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 const bool rowMajor = false;
72 //*************************************************************************************************
73 
74 
75 //*************************************************************************************************
99 const bool columnMajor = true;
100 //*************************************************************************************************
101 
102 } // namespace blaze
103 
104 #endif
const bool columnMajor
Storage order flag for column-major matrices.
Definition: StorageOrder.h:99
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
const bool rowMajor
Storage order flag for row-major matrices.
Definition: StorageOrder.h:71