diff --git a/AMDiS/src/UmfPackSolver.h b/AMDiS/src/UmfPackSolver.h index 04453a6b50914cd74ff3572d7b4a776bb54d0bb0..183c60e37bbe45fdb50f07953cc485f9006d681e 100644 --- a/AMDiS/src/UmfPackSolver.h +++ b/AMDiS/src/UmfPackSolver.h @@ -88,9 +88,11 @@ namespace AMDiS { else solver->update(); - // std::cout << "UmfPackSolver: A = \n" << A << "\n"; 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; }