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