Skip to content

Commit 9edf455

Browse files
committed
Comment out some old debugging code
1 parent 49340dc commit 9edf455

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/point_locator_nanoflann.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ PointLocatorNanoflann::operator() (const Point & p,
319319
candidate_elements.clear();
320320

321321
// Keep track of the number of elements checked in detail
322-
unsigned int n_elems_checked = 0;
322+
// unsigned int n_elems_checked = 0;
323323

324324
// Do the KD-Tree search
325325
auto result_set = this->kd_tree_find_neighbors(p, _num_results);
@@ -350,7 +350,7 @@ PointLocatorNanoflann::operator() (const Point & p,
350350
candidate_elem->contains_point(p);
351351

352352
// Increment the number of elements checked
353-
n_elems_checked++;
353+
// n_elems_checked++;
354354

355355
// If the point is contained in/close to an Elem from an
356356
// allowed subdomain, add it to the list.

0 commit comments

Comments
 (0)