BaseTemplate.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_VIEWS_COLUMN_BASETEMPLATE_H_
36 #define _BLAZE_MATH_VIEWS_COLUMN_BASETEMPLATE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
47 
48 
49 namespace blaze {
50 
51 //=================================================================================================
52 //
53 // CLASS DEFINITION
54 //
55 //=================================================================================================
56 
57 //*************************************************************************************************
350 template< typename MT // Type of the matrix
351  , bool SO = IsColumnMajorMatrix<MT>::value // Storage order
352  , bool DF = IsDenseMatrix<MT>::value // Density flag
353  , bool SF = IsSymmetric<MT>::value > // Symmetry flag
354 class Column
355 {};
356 //*************************************************************************************************
357 
358 } // namespace blaze
359 
360 #endif
Header file for the alignment flag values.
Header file for the IsColumnMajorMatrix type trait.
Header file for the IsSymmetric type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Reference to a specific column of a dense or sparse matrix.The Column template represents a reference...
Definition: BaseTemplate.h:354
Header file for the IsDenseMatrix type trait.