AlignmentFlag.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_ALIGNMENTFLAG_H_
36 #define _BLAZE_MATH_ALIGNMENTFLAG_H_
37 
38 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // ALIGNMENT FLAG VALUES
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
64 const bool unaligned = false;
65 //*************************************************************************************************
66 
67 
68 //*************************************************************************************************
85 const bool aligned = true;
86 //*************************************************************************************************
87 
88 } // namespace blaze
89 
90 #endif
const bool aligned
Alignment flag for aligned vectors and matrices.Via this flag it is possible to specify subvectors...
Definition: AlignmentFlag.h:85
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
const bool unaligned
Alignment flag for unaligned vectors and matrices.Via this flag it is possible to specify subvectors...
Definition: AlignmentFlag.h:64