BaseTemplate.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_VIEWS_SUBMATRIX_BASETEMPLATE_H_
36 #define _BLAZE_MATH_VIEWS_SUBMATRIX_BASETEMPLATE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
46 
47 
48 namespace blaze {
49 
50 //=================================================================================================
51 //
52 // CLASS DEFINITION
53 //
54 //=================================================================================================
55 
56 //*************************************************************************************************
499 template< typename MT // Type of the matrix
500  , bool AF = unaligned // Alignment flag
501  , bool SO = IsColumnMajorMatrix<MT>::value // Storage order
502  , bool DF = IsDenseMatrix<MT>::value > // Density flag
504 {};
505 //*************************************************************************************************
506 
507 } // namespace blaze
508 
509 #endif
Header file for the alignment flag values.
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.
constexpr bool unaligned
Alignment flag for unaligned vectors and matrices.Via this flag it is possible to specify subvectors...
Definition: AlignmentFlag.h:64
View on a specific submatrix of a dense or sparse matrix.The Submatrix class template represents a vi...
Definition: BaseTemplate.h:503