From b611d808d82f57becd3cae5a27c48a569e48c870 Mon Sep 17 00:00:00 2001 From: Thomas Witkowski <thomas.witkowski@gmx.de> Date: Wed, 5 Mar 2008 14:14:52 +0000 Subject: [PATCH] * Small UMFPACK-Bug fix --- AMDiS/src/UmfPackSolver.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AMDiS/src/UmfPackSolver.hh b/AMDiS/src/UmfPackSolver.hh index b0aa82aa..9fa5313b 100644 --- a/AMDiS/src/UmfPackSolver.hh +++ b/AMDiS/src/UmfPackSolver.hh @@ -162,7 +162,7 @@ namespace AMDiS { MSG("Residual: %e\n", this->residual); - if (this->residual < this->tolerance) { + if (this->residual > this->tolerance) { ERROR_EXIT("UMFPACK could not solve the system!\n"); } -- GitLab