From 1d359c94f2574aa55dff77394b6767809cd4fb8d Mon Sep 17 00:00:00 2001 From: Leo Date: Fri, 1 Aug 2025 14:52:44 +0100 Subject: [PATCH 1/2] lower tolerance --- tests/firedrake/regression/test_interpolate_cross_mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/firedrake/regression/test_interpolate_cross_mesh.py b/tests/firedrake/regression/test_interpolate_cross_mesh.py index d5a3ef4867..e0d6165485 100644 --- a/tests/firedrake/regression/test_interpolate_cross_mesh.py +++ b/tests/firedrake/regression/test_interpolate_cross_mesh.py @@ -107,7 +107,7 @@ def parameters(request): m_dest = CircleManifoldMesh(1000, degree=2) # note degree! # Function.at often gets conflicting answers across boundaries for this # mesh, so we lower the tolerance a bit for this test - m_dest.tolerance = 0.1 + m_dest.tolerance = 0.01 coords = np.array( [ [0, 1], From ca0c590105a6f71fcae9ef1cca13e8245bba7104 Mon Sep 17 00:00:00 2001 From: Leo Date: Thu, 21 Aug 2025 20:28:24 +0100 Subject: [PATCH 2/2] increase tolerance --- tests/firedrake/regression/test_interpolate_cross_mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/firedrake/regression/test_interpolate_cross_mesh.py b/tests/firedrake/regression/test_interpolate_cross_mesh.py index e0d6165485..1d3a9c79da 100644 --- a/tests/firedrake/regression/test_interpolate_cross_mesh.py +++ b/tests/firedrake/regression/test_interpolate_cross_mesh.py @@ -107,7 +107,7 @@ def parameters(request): m_dest = CircleManifoldMesh(1000, degree=2) # note degree! # Function.at often gets conflicting answers across boundaries for this # mesh, so we lower the tolerance a bit for this test - m_dest.tolerance = 0.01 + m_dest.tolerance = 1e-10 coords = np.array( [ [0, 1],