Skip to content
Snippets Groups Projects
Commit 3e4a0cc6 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

* Removed debug information output

parent e551c4a2
No related branches found
No related tags found
No related merge requests found
......@@ -108,15 +108,13 @@ namespace AMDiS {
// Check if x is a solution of the linear system.
if (SOLVE_INFO(iter, sqrt(alpha1), &old_res)) {
*p = *x;
*p *= -1.0;
// r = b - Ax
matVec->matVec(NoTranspose, *p, *r);
*r += *b;
::std::cout << "Final res: " << norm(r) << ::std::endl;
*p = *x;
*p *= -1.0;
// r = b - Ax
matVec->matVec(NoTranspose, *p, *r);
*r += *b;
return(iter);
}
......
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