From 735af931de474e5a991a73756a93e24da7a12a1e Mon Sep 17 00:00:00 2001 From: Maximilian Bergbauer Date: Mon, 2 Oct 2023 21:01:23 +0200 Subject: [PATCH] Adjust tolerance --- include/deal.II/non_matching/mapping_info.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.5