From: Bruno Blais Date: Mon, 24 Jan 2022 14:49:54 +0000 (-0500) Subject: Fix tolerance because particles are still lost X-Git-Tag: v9.4.0-rc1~565^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eaa7e0c78a016359d67a31de64a27cdc068fdef7;p=dealii.git Fix tolerance because particles are still lost --- diff --git a/source/particles/particle_handler.cc b/source/particles/particle_handler.cc index 1d7a9b703d..d6120e0626 100644 --- a/source/particles/particle_handler.cc +++ b/source/particles/particle_handler.cc @@ -1376,7 +1376,7 @@ namespace Particles reference_locations); if (GeometryInfo::is_inside_unit_cell( - reference_locations[0])) + reference_locations[0]),1e-12) { current_cell = *cell; found_cell = true;