RelaxationFlag.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_RELAXATIONFLAG_H_
36 #define _BLAZE_MATH_RELAXATIONFLAG_H_
37 
38 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // RELAXATION FLAG TYPES
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
64 constexpr bool strict = false;
65 //*************************************************************************************************
66 
67 
68 //*************************************************************************************************
85 constexpr bool relaxed = true;
86 //*************************************************************************************************
87 
88 } // namespace blaze
89 
90 #endif
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
constexpr bool strict
Relaxation flag for strict semantics.
Definition: RelaxationFlag.h:64
constexpr bool relaxed
Relaxation flag for relaxed semantics.
Definition: RelaxationFlag.h:85