diff --git a/src/TNL/Solvers/Linear/GMRES_impl.h b/src/TNL/Solvers/Linear/GMRES_impl.h index c0e84af86a25ac88da4b007baae910c962444964..a9db56a7ff12d4204b88a5d09edb5982dddc9ac0 100644 --- a/src/TNL/Solvers/Linear/GMRES_impl.h +++ b/src/TNL/Solvers/Linear/GMRES_impl.h @@ -228,7 +228,7 @@ orthogonalize_MGS( const int m, const RealType normb, const RealType beta ) /*** * H_{i+1,i} = |w| */ - RealType normw = lpNorm( w.getView(), ( RealType ) 2.0 ); + RealType normw = lpNorm( w, 2.0 ); H[ i + 1 + i * ( m + 1 ) ] = normw; /***