diff --git a/dumux/common/geometry/boundingboxtree.hh b/dumux/common/geometry/boundingboxtree.hh index 2e74524da299bec445497ac36f557c42023e36ae..3541867287b4d2425bafdce860e2e313daf5d201 100644 --- a/dumux/common/geometry/boundingboxtree.hh +++ b/dumux/common/geometry/boundingboxtree.hh @@ -406,7 +406,7 @@ template<int dimworld, class ctypea, class ctypeb, typename std::enable_if_t<dim inline bool intersectsBoundingBoxBoundingBox(const ctypea* a, const ctypeb* b) { using ctype = typename Dune::PromotionTraits<ctypea, ctypeb>::PromotedType; - static constexpr ctype eps_ = 1.0e-1; + static constexpr ctype eps_ = 1.0e-7; const ctype eps0 = eps_*std::max(b[1]-b[0], a[1]-a[0]); return b[0] - eps0 <= a[1] && a[0] <= b[1] + eps0; }