From ff5c1fdabfbf7a71be64617bb3df3727f4b4bff5 Mon Sep 17 00:00:00 2001 From: jorgensd Date: Wed, 25 Dec 2024 19:41:34 +0000 Subject: [PATCH] Remove default argument in evaluate_basis_functions --- cpp/utils.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cpp/utils.h b/cpp/utils.h index b945daf..a8aba51 100644 --- a/cpp/utils.h +++ b/cpp/utils.h @@ -971,8 +971,7 @@ template std::pair, std::array> evaluate_basis_functions(const dolfinx::fem::FunctionSpace& V, std::span x, - std::span cells, - const U tol = 5000 * std::numeric_limits::epsilon()) + std::span cells, const U tol) { assert(x.size() % 3 == 0); const std::size_t num_points = x.size() / 3;