From b2a875551a17864c0b639ffc3d52547981ce30b7 Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Wed, 14 Mar 2012 14:33:15 +0100
Subject: [PATCH] Weaken assertions

---
 dune/tectonic/myblockproblem.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dune/tectonic/myblockproblem.hh b/dune/tectonic/myblockproblem.hh
index 08cce02b..1910eade 100644
--- a/dune/tectonic/myblockproblem.hh
+++ b/dune/tectonic/myblockproblem.hh
@@ -132,7 +132,7 @@ template <class MyConvexProblemTypeTEMPLATE> class MyBlockProblem {
     psi.subDiff(0, D);
     if (D[1] > 0) {
       // NOTE: Numerical instability can actually get us here
-      assert(std::abs(D[1]) < 1e-13);
+      assert(std::abs(D[1]) < 1e-12);
       return 0;
     }
 
-- 
GitLab