From e482196810259ef0b674645f945cfc4c4ef62f5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Oberhuber?= <tomas.oberhuber@fjfi.cvut.cz> Date: Mon, 15 Jul 2019 11:48:03 +0200 Subject: [PATCH] Apply suggestion to src/TNL/Solvers/Linear/BICGStabL_impl.h --- src/TNL/Solvers/Linear/BICGStabL_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TNL/Solvers/Linear/BICGStabL_impl.h b/src/TNL/Solvers/Linear/BICGStabL_impl.h index 23f4d69e64..025d9b6780 100644 --- a/src/TNL/Solvers/Linear/BICGStabL_impl.h +++ b/src/TNL/Solvers/Linear/BICGStabL_impl.h @@ -68,7 +68,7 @@ solve( ConstVectorViewType b, VectorViewType x ) // initialize the norm of the preconditioned right-hand-side if( this->preconditioner ) { this->preconditioner->solve( b, M_tmp ); - b_norm = lpNorm( M_tmp.getView(), 2.0 ); + b_norm = lpNorm( M_tmp, 2.0 ); } else b_norm = lpNorm( b.getView(), 2.0 ); -- GitLab