Skip to content

Commit

Permalink
Change comment block at the top of KDTree.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
crvs committed May 10, 2024
1 parent e5771f0 commit 464d82d
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions KDTree.cpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
/*
* file: KDTree.hpp
* author: J. Frederico Carvalho
*
* This is an adaptation of the KD-tree implementation in rosetta code
* https://rosettacode.org/wiki/K-d_tree
*
* It is a reimplementation of the C code using C++. It also includes a few
* more queries than the original, namely finding all points at a distance
* smaller than some given distance to a point.
*
*/
/// @file KDTree.cpp
/// @author J. Frederico Carvalho
///
/// This is an adaptation of the KD-tree implementation in rosetta code
/// https://rosettacode.org/wiki/K-d_tree
///
/// It is a reimplementation of the C code using C++. It also includes a few
/// more queries than the original, namely finding all points at a distance
/// smaller than some given distance to a point.

#include <algorithm>
#include <cmath>
Expand Down

0 comments on commit 464d82d

Please sign in to comment.