BaseTemplate.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_VIEWS_ROW_BASETEMPLATE_H_
36 #define _BLAZE_MATH_VIEWS_ROW_BASETEMPLATE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
46 #include <blaze/util/Types.h>
47 
48 
49 namespace blaze {
50 
51 //=================================================================================================
52 //
53 // ::blaze NAMESPACE FORWARD DECLARATIONS
54 //
55 //=================================================================================================
56 
57 //*************************************************************************************************
62 template< typename MT // Type of the matrix
63  , bool SO = IsRowMajorMatrix<MT>::value // Storage order
64  , bool DF = IsDenseMatrix<MT>::value // Density flag
65  , bool SF = IsSymmetric<MT>::value // Symmetry flag
66  , size_t... CRAs > // Compile time row arguments
67 class Row
68 {};
70 //*************************************************************************************************
71 
72 
73 
74 
75 //=================================================================================================
76 //
77 // ALIAS DECLARATIONS
78 //
79 //=================================================================================================
80 
81 //*************************************************************************************************
89 template< typename MT // Type of the matrix
90  , size_t... CRAs > // Compile time row arguments
91 using Row_ = Row< MT
92  , IsRowMajorMatrix<MT>::value
93  , IsDenseMatrix<MT>::value
94  , IsSymmetric<MT>::value
95  , CRAs... >;
97 //*************************************************************************************************
98 
99 } // namespace blaze
100 
101 #endif
Header file for basic type definitions.
Header file for the IsSymmetric type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the IsDenseMatrix type trait.
Header file for the IsRowMajorMatrix type trait.