Loading src/TNL/Matrices/Dense.hpp +10 −10 Original line number Diff line number Diff line Loading @@ -77,9 +77,9 @@ Dense< Real, Device, Index, RowMajorOrder, RealAllocator >:: getSerializationType() { return String( "Matrices::Dense< " ) + getType< RealType >() + ", " + getType< Device >() + ", " + getType< IndexType >() + " >"; TNL::getSerializationType< RealType >() + ", [any_device], " + TNL::getSerializationType< IndexType >() + ( RowMajorOrder ? "true" : "false" ) + ", [any_allocator] >"; } template< typename Real, Loading src/TNL/Matrices/DenseMatrixView.hpp +7 −7 Original line number Diff line number Diff line Loading @@ -82,9 +82,9 @@ DenseMatrixView< Real, Device, Index, RowMajorOrder >:: getSerializationType() { return String( "Matrices::Dense< " ) + getType< RealType >() + ", " + getType< Device >() + ", " + getType< IndexType >() + " >"; TNL::getSerializationType< RealType >() + ", [any_device], " + TNL::getSerializationType< IndexType >() + ( RowMajorOrder ? "true" : "false" ) + ", [any_allocator] >"; } template< typename Real, Loading src/TNL/Matrices/Tridiagonal_impl.h→src/TNL/Matrices/Tridiagonal.hpp +0 −0 File moved. View file src/TNL/Matrices/Dense.h +2 −2 File changed.Contains only whitespace changes. Show changes Loading
src/TNL/Matrices/Dense.hpp +10 −10 Original line number Diff line number Diff line Loading @@ -77,9 +77,9 @@ Dense< Real, Device, Index, RowMajorOrder, RealAllocator >:: getSerializationType() { return String( "Matrices::Dense< " ) + getType< RealType >() + ", " + getType< Device >() + ", " + getType< IndexType >() + " >"; TNL::getSerializationType< RealType >() + ", [any_device], " + TNL::getSerializationType< IndexType >() + ( RowMajorOrder ? "true" : "false" ) + ", [any_allocator] >"; } template< typename Real, Loading
src/TNL/Matrices/DenseMatrixView.hpp +7 −7 Original line number Diff line number Diff line Loading @@ -82,9 +82,9 @@ DenseMatrixView< Real, Device, Index, RowMajorOrder >:: getSerializationType() { return String( "Matrices::Dense< " ) + getType< RealType >() + ", " + getType< Device >() + ", " + getType< IndexType >() + " >"; TNL::getSerializationType< RealType >() + ", [any_device], " + TNL::getSerializationType< IndexType >() + ( RowMajorOrder ? "true" : "false" ) + ", [any_allocator] >"; } template< typename Real, Loading