Blaze 3.9
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
49namespace blaze {
50
51//=================================================================================================
52//
53// CLASS DEFINITION
54//
55//=================================================================================================
56
57//*************************************************************************************************
609template< typename MT // Type of the adapted matrix
610 , bool SO = StorageOrder_v<MT> // Storage order of the adapted matrix
611 , bool DF = IsDenseMatrix_v<MT> // Density flag
612 , bool SF = IsScalar_v< UnderlyingElement_t<MT> > > // Scalar flag
614{};
615//*************************************************************************************************
616
617} // namespace blaze
618
619#endif
Header file for the IsDenseMatrix type trait.
Header file for the IsScalar type trait.
Header file for the UnderlyingElement type trait.
Matrix adapter for symmetric matrices.
Definition: BaseTemplate.h:614
Header file for the StorageOrder type trait.