All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SparseMatrix.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_MATH_EXPRESSIONS_SPARSEMATRIX_H_
23 #define _BLAZE_MATH_EXPRESSIONS_SPARSEMATRIX_H_
24 
25 
26 //*************************************************************************************************
27 // Includes
28 //*************************************************************************************************
29 
31 
32 
33 namespace blaze {
34 
35 //=================================================================================================
36 //
37 // CLASS DEFINITION
38 //
39 //=================================================================================================
40 
41 //*************************************************************************************************
55 template< typename MT // Type of the sparse matrix
56  , bool SO > // Storage order
57 struct SparseMatrix : public Matrix<MT,SO>
58 {};
59 //*************************************************************************************************
60 
61 } // namespace blaze
62 
63 #endif