From: Luca Heltai Date: Wed, 27 Apr 2016 10:42:38 +0000 (+0200) Subject: Try to fix test. X-Git-Tag: v8.5.0-rc1~1072^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2559%2Fhead;p=dealii.git Try to fix test. --- diff --git a/tests/manifold/composition_manifold_04.cc b/tests/manifold/composition_manifold_04.cc index c0d3c33b63..deec2cb00a 100644 --- a/tests/manifold/composition_manifold_04.cc +++ b/tests/manifold/composition_manifold_04.cc @@ -43,9 +43,12 @@ int main () cp[0][0] = 1.0; cp[1][0] = 1.0; + // Force roundoff errors on one side only + double eps=1e-10; + // Last point cp[0][1] = -numbers::PI/4; - cp[1][1] = numbers::PI/4; + cp[1][1] = numbers::PI/4-eps; // Spacedim points std::vector > sp(2);