From 0d1f8fd1d479c49f3aa014118cf649b57629bcd6 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:56 +0200
Subject: [PATCH] Apply suggestion to src/TNL/Solvers/Linear/BICGStab_impl.h

---
 src/TNL/Solvers/Linear/BICGStab_impl.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/TNL/Solvers/Linear/BICGStab_impl.h b/src/TNL/Solvers/Linear/BICGStab_impl.h
index c03e4d27ed..292dcaf173 100644
--- a/src/TNL/Solvers/Linear/BICGStab_impl.h
+++ b/src/TNL/Solvers/Linear/BICGStab_impl.h
@@ -61,7 +61,7 @@ bool BICGStab< Matrix >::solve( ConstVectorViewType b, VectorViewType x )
       this->preconditioner->solve( M_tmp, r );
    }
    else {
-      b_norm = lpNorm( b.getView(), 2.0 );
+      b_norm = lpNorm( b, 2.0 );
       this->matrix->vectorProduct( x, r );
       r.addVector( b, 1.0, -1.0 );
    }
-- 
GitLab