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
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
62 enum AlignmentFlag : bool
63 {
64  unaligned = false,
65  aligned = true
66 };
67 //*************************************************************************************************
68 
69 } // namespace blaze
70 
71 #endif
AlignmentFlag
Alignment flag for (un-)aligned vectors and matrices.Via these flags it is possible to specify subvec...
Definition: AlignmentFlag.h:62
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Flag for aligned vectors and matrices.
Definition: AlignmentFlag.h:65
Flag for unaligned vectors and matrices.
Definition: AlignmentFlag.h:64