IsInvertible.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_TYPETRAITS_ISINVERTIBLE_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISINVERTIBLE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
46 #include <blaze/util/mpl/And.h>
47 #include <blaze/util/mpl/Or.h>
50 
51 
52 namespace blaze {
53 
54 //=================================================================================================
55 //
56 // CLASS DEFINITION
57 //
58 //=================================================================================================
59 
60 //*************************************************************************************************
81 template< typename T >
83  : public Or< IsBLASCompatible<T>
84  , IsLongDouble<T>
85  , And< IsComplex<T>
86  , IsLongDouble< UnderlyingElement_<T> > >
87  , And< IsDenseMatrix<T>
88  , IsBLASCompatible< UnderlyingElement_<T> > > >
89 {};
90 //*************************************************************************************************
91 
92 } // namespace blaze
93 
94 #endif
Header file for the And class template.
Header file for the UnderlyingElement type trait.
Header file for the IsBLASCompatible type trait.
Header file for the IsLongDouble type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the Or class template.
Header file for the IsDenseMatrix type trait.
Compile time check for data types.This type trait tests whether or not the given template parameter i...
Definition: IsInvertible.h:82
Compile time logical &#39;or&#39; evaluation.The Or alias declaration performs at compile time a logical &#39;or&#39;...
Definition: Or.h:76
Header file for the IsComplex type trait.