From 611843165c87f5802f43c9c6450396888ee1316d Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Mon, 1 Sep 2014 14:33:58 +0000 Subject: [PATCH] Reduce the eps for the FD to 1e-10 That should be no problem now that we use a 50-decimal digits type for the FD approximation. [[Imported from SVN: r9876]] --- test/adolctest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/adolctest.cc b/test/adolctest.cc index 0e0525a6..3f790bbd 100644 --- a/test/adolctest.cc +++ b/test/adolctest.cc @@ -326,7 +326,7 @@ assembleGradientAndHessian(const Entity& element, localHessian.setSize(nDofs, nDofs); localHessian = 0; - const field_type eps = 1e-4; + const field_type eps = 1e-10; std::vector<ATargetSpace> localASolution(localSolution.size()); std::vector<typename ATargetSpace::CoordinateType> aRaw(localSolution.size()); -- GitLab