From 45509e702e5b456468ad8f018a7e33ea8fb622fb Mon Sep 17 00:00:00 2001
From: Lukas Cejka <lukas.ostatek@gmail.com>
Date: Sat, 2 Mar 2019 22:19:33 +0100
Subject: [PATCH] Deleted useless old troubleshooting cout statements.

---
 src/TNL/Matrices/ChunkedEllpack_impl.h | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/TNL/Matrices/ChunkedEllpack_impl.h b/src/TNL/Matrices/ChunkedEllpack_impl.h
index 2a55a761b0..878c7c2734 100644
--- a/src/TNL/Matrices/ChunkedEllpack_impl.h
+++ b/src/TNL/Matrices/ChunkedEllpack_impl.h
@@ -217,13 +217,6 @@ void ChunkedEllpack< Real, Device, Index >::setCompressedRowLengths( ConstCompre
          this->setSlice( rowLengths, sliceIndex, elementsToAllocation );
       this->rowPointers.scan();
    }
-   
-//   std::cout << "\ngetRowLength after first if: " << std::endl;
-//   for( IndexType i = 0; i < rowLengths.getSize(); i++ )
-//   {
-//       std::cout << getRowLength( i ) << std::endl;
-//   }
-//   std::cout << "\n";
 
    if( std::is_same< Device, Devices::Cuda >::value )
    {
@@ -248,7 +241,6 @@ void ChunkedEllpack< Real, Device, Index >::setCompressedRowLengths( ConstCompre
       elementsToAllocation = hostMatrix.values.getSize();
    }
    this->maxRowLength = max( rowLengths );
-//   std::cout << "\nrowLengths.max() = " << rowLengths.max() << std::endl;
    Sparse< Real, Device, Index >::allocateMatrixElements( elementsToAllocation );
 }
 
-- 
GitLab