Skip to content
Snippets Groups Projects
Commit 21a5cf18 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Apply suggestion to src/TNL/Solvers/Linear/TFQMR_impl.h

parent c04a1e7d
No related branches found
No related tags found
1 merge request!34Runge kutta
...@@ -56,7 +56,7 @@ bool TFQMR< Matrix >::solve( ConstVectorViewType b, VectorViewType x ) ...@@ -56,7 +56,7 @@ bool TFQMR< Matrix >::solve( ConstVectorViewType b, VectorViewType x )
} }
v = Au; v = Au;
d.setValue( 0.0 ); d.setValue( 0.0 );
tau = lpNorm( r.getView(), 2.0 ); tau = lpNorm( r, 2.0 );
theta = eta = 0.0; theta = eta = 0.0;
r_ast = r; r_ast = r;
rho = r_ast.scalarProduct( r ); rho = r_ast.scalarProduct( r );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment