You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Rust-optimized quadtree with a clean Python API
35
35
- Fast [serialization](https://elan456.github.io/fastquadtree/benchmark/#serialization-vs-rebuild) to/from bytes
36
36
- Support for multiple data types (f32, f64, i32, i64) for coordinates
37
37
-[100% test coverage](https://codecov.io/gh/Elan456/fastquadtree) and CI on GitHub Actions
38
-
- Offers a drop-in [pyqtree shim](https://elan456.github.io/fastquadtree/benchmark/#pyqtree-drop-in-shim-performance-gains) that is ~6.5x faster while keeping the same API
38
+
- Offers a drop-in [pyqtree shim](https://elan456.github.io/fastquadtree/benchmark/#pyqtree-drop-in-shim-performance-gains) that is ~10x faster while keeping the same API
39
39
40
40
----
41
41
@@ -49,7 +49,7 @@ from fastquadtree import QuadTree # Point handling
49
49
from fastquadtree import RectQuadTree # Bounding box handling
50
50
from fastquadtree import QuadTreeObjects # Point handling with object tracking
51
51
from fastquadtree import RectQuadTreeObjects # Bounding box handling with object tracking
52
-
from fastquadtree.pyqtree import Index # Drop-in pyqtree shim (~6.5x faster while keeping the same API)
52
+
from fastquadtree.pyqtree import Index # Drop-in pyqtree shim (~10x faster while keeping the same API)
53
53
```
54
54
55
55
@@ -77,15 +77,15 @@ fastquadtree **outperforms** all other quadtree Python packages, including the R
77
77
78
78
| Library | Build (s) | Query (s) | Total (s) | Speed vs PyQtree |
# "Brute force": _create_brute_force_engine(bounds, max_points, max_depth), # Brute force doesn't scale well on the graphs so omit it from the main set
0 commit comments