BaseTemplate.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_ADAPTORS_SYMMETRICMATRIX_BASETEMPLATE_H_
36 #define _BLAZE_MATH_ADAPTORS_SYMMETRICMATRIX_BASETEMPLATE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
47 
48 
49 namespace blaze {
50 
51 //=================================================================================================
52 //
53 // CLASS DEFINITION
54 //
55 //=================================================================================================
56 
57 //*************************************************************************************************
604 template< typename MT // Type of the adapted matrix
605  , bool SO = IsColumnMajorMatrix<MT>::value // Storage order of the adapted matrix
606  , bool DF = IsDenseMatrix<MT>::value // Density flag
607  , bool NF = IsNumericMatrix<MT>::value > // Numeric flag
608 class SymmetricMatrix
609 {};
610 //*************************************************************************************************
611 
612 } // namespace blaze
613 
614 #endif
Header file for the IsColumnMajorMatrix type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the IsDenseMatrix type trait.
Header file for the IsNumeric type trait.
Header file for the IsNumericMatrix type trait.