diff --git a/AMDiS/src/UmfPackSolver.h b/AMDiS/src/UmfPackSolver.h index 183c60e37bbe45fdb50f07953cc485f9006d681e..d41d0bbd687b9d97fcc3d729926be7d8e0844fc1 100644 --- a/AMDiS/src/UmfPackSolver.h +++ b/AMDiS/src/UmfPackSolver.h @@ -89,10 +89,7 @@ namespace AMDiS { solver->update(); int code= (*solver)(x, b); - print(x); - std::cout << std::endl; mtl::dense_vector<value_type> r(b); r-= A * x; residual= two_norm(r); - // std::cout.precision(5); std::cout << "UmfPackSolver: ||b-Ax|| = " << residual << "\n"; return code; }