AlphaNow
Results
1
issues of
AlphaNow
This code, using points with a lot of dimensions ```rust let pts = (0..100_000).map(|i| [i as f32; 100]).collect::(); let tree = RTree::bulk_load(pts); dbg!(tree.root().children().len()); ``` prints 100_000 which is far above...