From: heltai Date: Tue, 21 Jan 2014 10:15:35 +0000 (+0000) Subject: Reduced again eps in HyperBallBoundary. Now build tests do not fail. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddd5c9425efe3f1ebe251120b0c23222dfd1371c;p=dealii-svn.git Reduced again eps in HyperBallBoundary. Now build tests do not fail. git-svn-id: https://svn.dealii.org/branches/branch_manifold_id@32278 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/grid/tria_boundary_lib.cc b/deal.II/source/grid/tria_boundary_lib.cc index 0d6f7cb93d..39fb037a50 100644 --- a/deal.II/source/grid/tria_boundary_lib.cc +++ b/deal.II/source/grid/tria_boundary_lib.cc @@ -237,7 +237,7 @@ HyperBallBoundary::get_intermediate_point(const Point &p v1=p1-center; const double length=std::sqrt((v1-v0).square()); - double eps=1e-5; + double eps=1e-3; double r=0; if (compute_radius_automatically) {