Commit fa362ab6 authored by Lukáš Matthew Čejka's avatar Lukáš Matthew Čejka
Browse files

Added getFormat for DenseMatrix.

parent 245668fb
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -50,6 +50,9 @@ template< typename Real,
struct MatrixInfo< DenseMatrix< Real, Device, Index, Organization, RealAllocator > >
: public MatrixInfo< typename DenseMatrix< Real, Device, Index, Organization, RealAllocator >::ViewType >
{
   static String getDensity() { return String( "dense" ); };

   static String getFormat() { return "Dense"; };
};

template< typename Real,