From: Maximilian Bergbauer Date: Mon, 2 Oct 2023 19:01:23 +0000 (+0200) Subject: Adjust tolerance X-Git-Tag: relicensing~433^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16081%2Fhead;p=dealii.git Adjust tolerance --- diff --git a/include/deal.II/non_matching/mapping_info.h b/include/deal.II/non_matching/mapping_info.h index c445c9959b..7b06e54343 100644 --- a/include/deal.II/non_matching/mapping_info.h +++ b/include/deal.II/non_matching/mapping_info.h @@ -192,7 +192,7 @@ namespace NonMatching { const auto jac_0 = inverse_jacobians[0]; const double zero_tolerance_double = - 1. / diameter * std::numeric_limits::epsilon() * 1024.; + 1e4 / diameter * std::numeric_limits::epsilon() * 1024.; bool jacobian_constant = true; for (unsigned int q = 1; q < inverse_jacobians.size(); ++q) {