#ifndef WR_MATRIXTRAITS_HH_INCLUDED #define WR_MATRIXTRAITS_HH_INCLUDED #include #include template struct MatrixTraits : public Dune::SparseRowMatrixTraits { struct StencilType { int nonZerosEstimate( ColSpaceImp& rangeSpace_ ) { return 0; } }; }; /* usage: typedef Dune::SparseRowMatrixObject< DiscreteFunctionSpaceTypeA, DiscreteFunctionSpaceTypeB, MatrixTraits MassMatrixType; */ #endif