Skip to content

Commit 463e414

Browse files
committed
clean
1 parent 91b2c02 commit 463e414

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/geode/geometry/nn_search.cpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -198,25 +198,13 @@ namespace geode
198198
return;
199199
}
200200
const auto vertices = radius_neighbors( point( p ), epsilon );
201-
// auto min_index = find_min_unmapped_element( vertices, mapping
202-
// ); Logger::trace( p, " : Min index ", min_index );
203201
std::lock_guard< std::mutex > lock( mutex );
204202
if( mapping[p] != NO_ID )
205203
{
206204
Logger::trace(
207205
p, " : correction 1 / mapping[p] ", mapping[p] );
208206
return;
209207
}
210-
// if( mapping[min_index] != NO_ID )
211-
// {
212-
// Logger::trace( p, " : correction 2 / min_index before",
213-
// min_index, " / mapping[min_index] ",
214-
// mapping[min_index] );
215-
// min_index = find_min_unmapped_element( vertices, mapping
216-
// ); Logger::trace(
217-
// p, " : correction 2 / min_index after ", min_index );
218-
// }
219-
// Logger::trace( p, " : Definitive min index ", min_index );
220208
for( const auto id : vertices )
221209
{
222210
Logger::trace(

0 commit comments

Comments
 (0)