Loading src/TNL/Matrices/SparseMatrixView.hpp +1 −1 Original line number Diff line number Diff line Loading @@ -379,7 +379,7 @@ vectorProduct( const InVector& inVector, IndexType lastRow ) const { TNL_ASSERT_EQ( this->getColumns(), inVector.getSize(), "Matrix columns do not fit with input vector." ); //TNL_ASSERT_EQ( this->getRows(), outVector.getSize(), "Matrix rows do not fit with output vector." ); TNL_ASSERT_EQ( this->getRows(), outVector.getSize(), "Matrix rows do not fit with output vector." ); const auto inVectorView = inVector.getConstView(); auto outVectorView = outVector.getView(); Loading Loading
src/TNL/Matrices/SparseMatrixView.hpp +1 −1 Original line number Diff line number Diff line Loading @@ -379,7 +379,7 @@ vectorProduct( const InVector& inVector, IndexType lastRow ) const { TNL_ASSERT_EQ( this->getColumns(), inVector.getSize(), "Matrix columns do not fit with input vector." ); //TNL_ASSERT_EQ( this->getRows(), outVector.getSize(), "Matrix rows do not fit with output vector." ); TNL_ASSERT_EQ( this->getRows(), outVector.getSize(), "Matrix rows do not fit with output vector." ); const auto inVectorView = inVector.getConstView(); auto outVectorView = outVector.getView(); Loading