Skip to content

Commit 9136bce

Browse files
committed
Version updated to v0.7.1.
1 parent 208cc16 commit 9136bce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.12)
66

77
project(pico_tree
88
LANGUAGES CXX
9-
VERSION 0.7.0
9+
VERSION 0.7.1
1010
DESCRIPTION "PicoTree is a C++ header only library with Python bindings for nearest neighbor searches and range searches using a KdTree."
1111
HOMEPAGE_URL "https://github.com/Jaybro/pico_tree")
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ See the table below to get an impression of the performance provided by the [KdT
1313
| [SciPy cKDTree][spck] v1.5.0 | ... | 9.6s | ... | 14.1s |
1414
| [Scikit-learn KDTree][skck] 0.22.2 | ... | 27.1s | ... | 55.4s |
1515
| [OpenCV FLANN][cvfn] 4.5.1 | 4.1s | ... | 7.0s | ... |
16-
| PicoTree KdTree v0.7.0 | 1.8s | 2.0s | 3.1s | 4.1s |
16+
| PicoTree KdTree v0.7.1 | 1.8s | 2.0s | 3.1s | 4.1s |
1717

1818
The comparison was generated using 13729039 3d points from a [LiDAR](./docs/benchmark.md) scan, float64, with k=1 for queries and OMP_NUM_THREADS=1. Note that a different C++ back-end was used for each of the `Knn C++` and `Knn Python` benchmarks. This means that they shouldn't be compared directly. See the [Python comparison](./examples/python/kd_tree.py) for more details. A more detailed [C++ comparison](./docs/benchmark.md) of PicoTree is available with respect to [nanoflann][nano].
1919

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def compile_cmake_args():
3434

3535
setup(name='pico_tree',
3636
# The same as the CMake project version.
37-
version='0.7.0',
37+
version='0.7.1',
3838
description='PicoTree Python Bindings',
3939
author='Jonathan Broere',
4040
url='https://github.com/Jaybro/pico_tree',

0 commit comments

Comments
 (0)