BaseTemplate.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_ADAPTORS_DIAGONALMATRIX_BASETEMPLATE_H_
36 #define _BLAZE_MATH_ADAPTORS_DIAGONALMATRIX_BASETEMPLATE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
45 
46 
47 namespace blaze {
48 
49 //=================================================================================================
50 //
51 // CLASS DEFINITION
52 //
53 //=================================================================================================
54 
55 //*************************************************************************************************
553 template< typename MT // Type of the adapted matrix
554  , bool SO = IsColumnMajorMatrix<MT>::value // Storage order of the adapted matrix
555  , bool DF = IsDenseMatrix<MT>::value > // Density flag
557 {};
558 //*************************************************************************************************
559 
560 } // namespace blaze
561 
562 #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.
Matrix adapter for diagonal matrices.
Definition: BaseTemplate.h:556