All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AlignmentFlag.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_VIEWS_ALIGNMENTFLAG_H_
36 #define _BLAZE_MATH_VIEWS_ALIGNMENTFLAG_H_
37 
38 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // ALIGNMENT FLAG VALUES
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
63 const bool unaligned = false;
64 //*************************************************************************************************
65 
66 
67 //*************************************************************************************************
83 const bool aligned = true;
84 //*************************************************************************************************
85 
86 } // namespace blaze
87 
88 #endif
const bool aligned
Alignment flag for aligned subvectors and submatrices.
Definition: AlignmentFlag.h:83
const bool unaligned
Alignment flag for unaligned subvectors and submatrices.
Definition: AlignmentFlag.h:63