Skip to content

Commit

Permalink
Remove default argument in evaluate_basis_functions
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd committed Dec 25, 2024
1 parent 732e794 commit ff5c1fd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cpp/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -971,8 +971,7 @@ template <std::floating_point U>
std::pair<std::vector<U>, std::array<std::size_t, 3>>
evaluate_basis_functions(const dolfinx::fem::FunctionSpace<U>& V,
std::span<const U> x,
std::span<const std::int32_t> cells,
const U tol = 5000 * std::numeric_limits<U>::epsilon())
std::span<const std::int32_t> cells, const U tol)
{
assert(x.size() % 3 == 0);
const std::size_t num_points = x.size() / 3;
Expand Down

0 comments on commit ff5c1fd

Please sign in to comment.