From c4cb7df5de6c422e9c46f3024bb3be07c88deb8f 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 12:04:19 +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 c33cd27c95..b1255e33c5 100644
--- a/src/TNL/Solvers/Linear/BICGStab_impl.h
+++ b/src/TNL/Solvers/Linear/BICGStab_impl.h
@@ -106,7 +106,7 @@ bool BICGStab< Matrix >::solve( ConstVectorViewType b, VectorViewType x )
       else {
          this->matrix->vectorProduct( s, As );
       }
-      aux = lpNorm( As.getView(), 2.0 );
+      aux = lpNorm( As, 2.0 );
       omega = As.scalarProduct( s ) / ( aux * aux );
 
       /****
-- 
GitLab