All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
StorageOrder.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_MATH_STORAGEORDER_H_
23 #define _BLAZE_MATH_STORAGEORDER_H_
24 
25 
26 namespace blaze {
27 
28 //=================================================================================================
29 //
30 // MATRIX STORAGE ORDER TYPES
31 //
32 //=================================================================================================
33 
34 //*************************************************************************************************
58 const bool rowMajor = false;
59 //*************************************************************************************************
60 
61 
62 //*************************************************************************************************
86 const bool columnMajor = true;
87 //*************************************************************************************************
88 
89 } // namespace blaze
90 
91 #endif