Loading src/TNL/Matrices/DistributedMatrix.h +1 −1 Original line number Diff line number Diff line Loading @@ -120,7 +120,7 @@ public: // FIXME: does not work for distributed matrices, here only due to common interface template< typename Vector1, typename Vector2 > bool performSORIteration( const Vector1& b, void performSORIteration( const Vector1& b, const IndexType row, Vector2& x, const RealType& omega = 1.0 ) const; Loading src/TNL/Matrices/DistributedMatrix_impl.h +2 −2 Original line number Diff line number Diff line Loading @@ -268,14 +268,14 @@ vectorProduct( const InVector& inVector, template< typename Matrix > template< typename Vector1, typename Vector2 > bool void DistributedMatrix< Matrix >:: performSORIteration( const Vector1& b, const IndexType row, Vector2& x, const RealType& omega ) const { return getLocalMatrix().performSORIteration( b, row, x, omega ); getLocalMatrix().performSORIteration( b, row, x, omega ); } } // namespace Matrices Loading Loading
src/TNL/Matrices/DistributedMatrix.h +1 −1 Original line number Diff line number Diff line Loading @@ -120,7 +120,7 @@ public: // FIXME: does not work for distributed matrices, here only due to common interface template< typename Vector1, typename Vector2 > bool performSORIteration( const Vector1& b, void performSORIteration( const Vector1& b, const IndexType row, Vector2& x, const RealType& omega = 1.0 ) const; Loading
src/TNL/Matrices/DistributedMatrix_impl.h +2 −2 Original line number Diff line number Diff line Loading @@ -268,14 +268,14 @@ vectorProduct( const InVector& inVector, template< typename Matrix > template< typename Vector1, typename Vector2 > bool void DistributedMatrix< Matrix >:: performSORIteration( const Vector1& b, const IndexType row, Vector2& x, const RealType& omega ) const { return getLocalMatrix().performSORIteration( b, row, x, omega ); getLocalMatrix().performSORIteration( b, row, x, omega ); } } // namespace Matrices Loading