Skip to content

Commit 11c5dcf

Browse files
committed
README and copyright stuff.
1 parent b4431cd commit 11c5dcf

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

COPYRIGHT

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Copyright (C) 2007-2009 John Tsiombikas <[email protected]>
2+
* Original work
3+
4+
Copyright (C) 2009 Tamas Nepusz <[email protected]>
5+
* Single nearest neighbor search
6+
7+
Copyright (C) 2010 Scott Deming <[email protected]>
8+
* C++ derivative

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
KDTree
2+
======
3+
4+
This is very much a work in progress.
5+
6+
C++ KDTree implementation derived from the C KDTree implementation written by
7+
John Tsiombikas. The original C version is available at [http://code.google.com/p/kdtree]
8+
and the specific version this was derived from is available at
9+
[http://github.com/sdeming/kdtree] under the git tag 'original'
10+
11+
License
12+
-------
13+
14+
[New BSD license][license]
15+
16+
Requirements
17+
------------
18+
19+
* cmake 2.8.2+
20+
* g++ 4.4+
21+
* gnu make
22+
23+
Contributing
24+
------------
25+
26+
1. Fork it.
27+
2. Create a branch
28+
3. Commit your changes
29+
4. Push to the branch
30+
5. Fire off a pull request
31+
32+
[license]: http://www.opensource.org/licenses/bsd-license.php

kdtree.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
2525
OF SUCH DAMAGE.
2626
*/
2727
/* single nearest neighbor search written by Tamas Nepusz <[email protected]> */
28+
2829
#include <stdio.h>
2930
#include <stdlib.h>
3031
#include <string.h>

0 commit comments

Comments
 (0)