Commit 2aa75f55 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixing matrix info for dense matrices.

parent fa362ab6
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -40,6 +40,8 @@ template< typename Real,
struct MatrixInfo< DenseMatrixView< Real, Device, Index, Organization > >
{
   static String getDensity() { return String( "dense" ); };

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

template< typename Real,
@@ -50,9 +52,6 @@ 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,