kiddo 6.0.0-alpha.2

A high-performance, flexible, ergonomic k-d tree library. Ideal for geo- and astro- nearest-neighbour and k-nearest-neighbor queries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
//! The core `KdTree` struct lives here, around which the whole crate is based.
//!
//! Alongside it are some ancillary structs:
//! * `ArchivedKdTree` is the type that a `KdTree` serialized with `rkyv` deserializes into when
//!   using `rkyv`'s full zero-copy deserialization mode. It implements `KdTreeAccessor` so that
//!   all queries that can be performed on a `KdTree` can also be performed on an `ArchivedKdTree`.
//! * `KdTreeIter` is the type returned by `KdTree::iter()`.
//! * `KdTreeResolver` is created by the `rkyv::Archive` derive macro. You can almost certainly
//!   ignore it.
//! * [`QueryBuilder`] is returned by `KdTree::query()` - **this is where you'll find documentation
//!   on how to build queries and all the query methods and their semantics.**
//! * `WithinUnsortedIter` is the lazy iterator returned by
//!   `QueryBuilder::within().unsorted().iter()` if you have not also called
//!   `QueryBuilder.with_points()`. This is a more memory-efficient iterator, avoiding materializing
//!   the full result set up-front, maintaining the traversal state, and lazily emitting results as
//!   soon as they are found.
//!
mod construction;
mod iter;
pub(crate) mod orchestrator;
mod query;
pub(crate) mod query_context;
pub(crate) mod query_stack;
pub(crate) mod query_stack_simd;
mod stem_leaf_resolution;

use aligned_vec::{AVec, CACHELINE_ALIGN};
use nonmax::NonMaxUsize;

#[doc(hidden)]
pub use crate::traits::kd_tree::{KdTreeAccessor, StemLeafResolution};
pub use iter::{KdTreeIter, WithinUnsortedIter};
#[doc(hidden)]
pub use orchestrator::KdTreeQueryOps;
pub use query::QueryBuilder;
#[doc(hidden)]
pub use query::{Exclude, Include, Projection};
pub use query_stack::QueryScratch;
#[doc(hidden)]
pub use stem_leaf_resolution::OwnedStemLeafResolution;

use crate::traits::leaf_strategy::{BucketLimitType, ConstructibleLeafStrategy, Mutability};
use crate::{Axis, Content, LeafStrategy, StemStrategy};

/// Errors returned by kd-tree construction and mutation when caller-controlled
/// input or configuration cannot be accommodated.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ConstructionError {
    /// Auto-generated item indices from `new_from_slice` do not fit in `T`.
    AutoGeneratedItemIndexOverflow {
        /// Number of source points passed to the constructor.
        item_count: usize,
        /// Human-readable type name of the generated item type.
        item_type: &'static str,
    },
    /// A full mutable bucket could not be split without violating bucket semantics.
    UnsplittableBucket {
        /// Split dimension selected when the failure occurred.
        split_dim: usize,
    },
}

impl std::fmt::Display for ConstructionError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::AutoGeneratedItemIndexOverflow {
                item_count,
                item_type,
            } => write!(
                f,
                "cannot auto-generate {item_count} item indices for item type {item_type}"
            ),
            Self::UnsplittableBucket { split_dim } => {
                write!(
                    f,
                    "cannot split leaf on dimension {split_dim} because all points have the same value on that dimension"
                )
            }
        }
    }
}

impl std::error::Error for ConstructionError {}

/// Errors returned by in-place owned-tree mutation operations.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum MutationError {
    /// No entry exactly matched the requested point and item.
    EntryNotFound,
}

impl std::fmt::Display for MutationError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::EntryNotFound => write!(f, "entry not found"),
        }
    }
}

impl std::error::Error for MutationError {}

/// Errors returned when converting one `KdTree` variant into another.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum KdTreeConversionError {
    /// Converting an item failed.
    ItemConversion {
        /// Index of the failing logical entry in iterator order.
        point_index: usize,
        /// Debug-formatted source conversion error.
        source: String,
    },
    /// Converting one coordinate in a point failed.
    AxisConversion {
        /// Index of the failing logical entry in iterator order.
        point_index: usize,
        /// Coordinate dimension that failed to convert.
        dim: usize,
        /// Debug-formatted source conversion error.
        source: String,
    },
    /// Rebuilding the destination tree failed.
    Construction(ConstructionError),
}

impl std::fmt::Display for KdTreeConversionError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::ItemConversion {
                point_index,
                source,
            } => write!(
                f,
                "failed to convert item at point_index {point_index}: {source}"
            ),
            Self::AxisConversion {
                point_index,
                dim,
                source,
            } => write!(
                f,
                "failed to convert axis value at point_index {point_index}, dim {dim}: {source}"
            ),
            Self::Construction(err) => write!(f, "failed to rebuild converted kd-tree: {err}"),
        }
    }
}

impl std::error::Error for KdTreeConversionError {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            Self::Construction(err) => Some(err),
            _ => None,
        }
    }
}

impl From<ConstructionError> for KdTreeConversionError {
    fn from(value: ConstructionError) -> Self {
        Self::Construction(value)
    }
}

#[inline(always)]
fn resolve_arithmetic_terminal_stem_idx(
    stem_idx: usize,
    arithmetic_leaf_idx: usize,
    stems_depth: usize,
    leaf_count: usize,
) -> usize {
    if arithmetic_leaf_idx >= leaf_count {
        panic!(
            "arithmetic leaf resolution out of bounds: stem_idx={} arithmetic_leaf_idx={} leaf_count={} stems_depth={}",
            stem_idx, arithmetic_leaf_idx, leaf_count, stems_depth
        );
    }

    arithmetic_leaf_idx
}

#[inline(always)]
fn resolve_mapped_terminal_stem_idx(
    stem_idx: usize,
    min_stem_leaf_idx: usize,
    map_len: usize,
    mut get_map_entry: impl FnMut(usize) -> Option<usize>,
) -> usize {
    if stem_idx >= min_stem_leaf_idx {
        let map_idx = stem_idx - min_stem_leaf_idx;
        get_map_entry(map_idx).unwrap_or_else(|| {
            panic!(
                "mapped leaf resolution miss: stem_idx={} map_idx={} leaf_idx_map_len={}",
                stem_idx, map_idx, map_len
            )
        })
    } else {
        panic!(
            "mapped leaf resolution miss: stem_idx={} below min_stem_leaf_idx={}",
            stem_idx, min_stem_leaf_idx
        )
    }
}

/// A k-d tree for efficient spatial queries.
///
/// # Type Parameters
/// * `A`: [`Axis`] - coordinate type (e.g., `f32`, `f64`, or fixed-point types)
/// * `T`: [`Content`] - item type stored at each point. `u32` is the default choice and most common.
/// * `SS`: [`StemStrategy`] - determines what ordering scheme is used for stem nodes and what
///   approaches are used for prefetch, traversal, backtracking, and leaf node resolution.
/// * `LS`: [`LeafStrategy`] - determines how leaf nodes are stored.
/// * `K`: [`usize`] - Dimensionality (number of dimensions)
/// * `B`: [`usize`] - Bucket size (maximum items per leaf node - 32 is the recommended default)
#[cfg_attr(
    feature = "rkyv_08",
    derive(rkyv_08::Archive, rkyv_08::Serialize, rkyv_08::Deserialize)
)]
#[cfg_attr(feature = "rkyv_08", rkyv(crate = rkyv_08))]
#[cfg_attr(feature = "rkyv_08", rkyv(attr(allow(missing_docs))))]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Clone, Debug, PartialEq)]
pub struct KdTree<
    A,              // Axis
    T,              // Content,
    SS,             // StemStrategy
    LS,             // LeafStrategy
    const K: usize, // dimensionality
    const B: usize, // bucket size
> {
    #[cfg_attr(
        feature = "rkyv_08",
        rkyv(with = crate::rkyv::adapters::AsAlignedCachelineABox)
    )]
    stems: AVec<A>,
    leaves: LS,
    pub(crate) stem_leaf_resolution: OwnedStemLeafResolution,

    size: usize,
    max_stem_level: i32,
    pub(crate) max_leaf_len: usize,
    pub(crate) _phantom: std::marker::PhantomData<(SS, T)>,
}

impl<A, T, SS, LS, const K: usize, const B: usize> KdTreeAccessor<A, T, SS, LS, K, B>
    for KdTree<A, T, SS, LS, K, B>
where
    A: Axis<Coord = A>,
    T: Content,
    SS: StemStrategy,
    LS: LeafStrategy<A, T, SS, K, B>,
{
    #[inline(always)]
    fn stems(&self) -> &[A] {
        self.stems.as_slice()
    }

    #[inline(always)]
    fn leaves(&self) -> &LS {
        &self.leaves
    }

    #[inline(always)]
    fn stem_leaf_resolution(&self) -> &impl StemLeafResolution {
        &self.stem_leaf_resolution
    }

    #[inline(always)]
    fn size(&self) -> usize {
        self.size
    }

    #[inline(always)]
    fn max_stem_level(&self) -> i32 {
        self.max_stem_level
    }

    #[inline(always)]
    fn max_leaf_len(&self) -> usize {
        self.max_leaf_len
    }
}

#[cfg(feature = "rkyv_08")]
impl<A, T, SS, LS, const K: usize, const B: usize> ArchivedKdTree<A, T, SS, LS, K, B>
where
    A: rkyv_08::Archive + Axis<Coord = A>,
    T: Content,
    SS: StemStrategy,
    LS: rkyv_08::Archive,
    rkyv_08::Archived<LS>: LeafStrategy<A, T, SS, K, B>,
{
    #[inline]
    pub(crate) fn archived_stems(&self) -> &[rkyv_08::Archived<A>] {
        self.stems.get().as_slice()
    }

    #[inline]
    /// Returns `true` if the archived tree contains no points.
    pub fn is_empty(&self) -> bool {
        self.size.to_native() as usize == 0
    }

    #[inline]
    /// Returns the number of points in the archived tree.
    pub fn size(&self) -> usize {
        self.size.to_native() as usize
    }

    #[inline]
    /// Returns the maximum stem level in the archived tree.
    pub fn max_stem_level(&self) -> i32 {
        self.max_stem_level.to_native()
    }

    #[inline]
    /// Returns the configured maximum leaf size heuristic used to size hot-path scratch buffers.
    pub fn max_leaf_len(&self) -> usize {
        self.max_leaf_len.to_native() as usize
    }

    #[inline]
    /// Returns the number of leaf nodes in the archived tree.
    pub fn leaf_count(&self) -> usize {
        self.leaves.leaf_count()
    }

    #[inline]
    /// Returns an iterator over all item/point pairs in the archived tree.
    pub fn iter(&self) -> KdTreeIter<'_, Self, A, T, SS, rkyv_08::Archived<LS>, K, B> {
        KdTreeIter::new(self)
    }
}

#[cfg(feature = "rkyv_08")]
impl<A, T, SS, LS, const K: usize, const B: usize>
    KdTreeAccessor<A, T, SS, rkyv_08::Archived<LS>, K, B> for ArchivedKdTree<A, T, SS, LS, K, B>
where
    A: rkyv_08::Archive + Axis<Coord = A>,
    T: Content,
    SS: StemStrategy,
    LS: rkyv_08::Archive,
    rkyv_08::Archived<LS>: LeafStrategy<A, T, SS, K, B>,
{
    #[inline(always)]
    fn stems(&self) -> &[A] {
        crate::rkyv::utils::transform_slice(self.archived_stems())
    }

    #[inline(always)]
    fn leaves(&self) -> &rkyv_08::Archived<LS> {
        &self.leaves
    }

    #[inline(always)]
    fn stem_leaf_resolution(&self) -> &impl StemLeafResolution {
        &self.stem_leaf_resolution
    }

    #[inline(always)]
    fn size(&self) -> usize {
        self.size.to_native() as usize
    }

    #[inline(always)]
    fn max_stem_level(&self) -> i32 {
        self.max_stem_level.to_native()
    }

    #[inline(always)]
    fn max_leaf_len(&self) -> usize {
        self.max_leaf_len.to_native() as usize
    }
}

impl<A, T, SS, LS, const K: usize, const B: usize> Default for KdTree<A, T, SS, LS, K, B>
where
    A: Axis<Coord = A>,
    T: Content,
    LS: ConstructibleLeafStrategy<A, T, SS, K, B>,
    SS: StemStrategy,
{
    fn default() -> Self {
        // For mutable trees, initialize with sentinel stem at root
        let (stems, max_stem_level, stem_leaf_resolution) = if LS::Mutability::is_mutable() {
            // Get the root index for this stem strategy
            let root_idx = SS::new_no_ptr().stem_idx();

            // Create stems array with sentinel value at root
            let mut stems = AVec::new(CACHELINE_ALIGN);
            stems.resize(root_idx + 1, A::max_value());

            // Start in Mapped state - map root directly to the single initial leaf
            let mut leaf_idx_map = vec![None; root_idx + 1];
            leaf_idx_map[root_idx] = NonMaxUsize::new(0);

            let stem_leaf_resolution = crate::kd_tree::OwnedStemLeafResolution::Mapped {
                min_stem_leaf_idx: 0,
                leaf_idx_map,
            };

            (stems, 0, stem_leaf_resolution)
        } else {
            // Immutable trees start empty
            let stems = AVec::new(CACHELINE_ALIGN);
            let stem_leaf_resolution = OwnedStemLeafResolution::Arithmetic {
                stems_depth: 0,
                leaf_count: 0,
            };

            (stems, -1, stem_leaf_resolution)
        };

        let tree = Self {
            stems,
            leaves: LS::new_with_empty_leaf(),
            stem_leaf_resolution,
            size: 0,
            max_stem_level,
            max_leaf_len: Self::initial_max_leaf_len(),
            _phantom: std::marker::PhantomData,
        };
        tree.maybe_enable_huge_pages();
        tree
    }
}

impl<A, T, SS, LS, const K: usize, const B: usize> KdTree<A, T, SS, LS, K, B>
where
    A: Axis<Coord = A>,
    T: Content,
    LS: LeafStrategy<A, T, SS, K, B>,
    SS: StemStrategy,
{
    #[inline(always)]
    pub(crate) fn initial_max_leaf_len() -> usize {
        match LS::BUCKET_LIMIT_TYPE {
            // TODO: replace this heuristic with the actual observed maximum leaf size during
            // construction / deserialization if we keep this field.
            BucketLimitType::Hard => B,
            BucketLimitType::Soft => B * 2,
        }
    }

    #[inline]
    pub(crate) fn maybe_enable_huge_pages(&self) {
        crate::huge_pages::maybe_collapse_slice_huge_pages(self.stems.as_ptr(), self.stems.len());
        self.leaves.maybe_enable_huge_pages();
    }

    /// Returns `true` if the tree contains no points.
    #[inline]
    pub fn is_empty(&self) -> bool {
        self.size == 0
    }

    /// Returns the number of points in the tree.
    #[inline]
    pub fn size(&self) -> usize {
        self.size
    }

    /// Returns the maximum stem level in the tree.
    #[inline]
    pub fn max_stem_level(&self) -> i32 {
        self.max_stem_level
    }

    /// Returns the number of leaf nodes in the tree.
    #[inline]
    pub fn leaf_count(&self) -> usize {
        self.leaves.leaf_count()
    }

    #[inline]
    /// Returns the configured maximum leaf size heuristic used to size hot-path scratch buffers.
    pub fn max_leaf_len(&self) -> usize {
        self.max_leaf_len
    }

    /// Returns an iterator over all item/point pairs in the tree.
    #[inline]
    pub fn iter(&self) -> KdTreeIter<'_, Self, A, T, SS, LS, K, B> {
        KdTreeIter::new(self)
    }

    /// Converts this tree into another `KdTree` variant by rebuilding from its
    /// logical entries.
    #[inline]
    pub fn try_convert<A2, T2, SS2, LS2, const B2: usize>(
        self,
    ) -> Result<KdTree<A2, T2, SS2, LS2, K, B2>, KdTreeConversionError>
    where
        A2: Axis<Coord = A2> + TryFrom<A>,
        <A2 as TryFrom<A>>::Error: std::fmt::Debug,
        T2: Content + TryFrom<T>,
        <T2 as TryFrom<T>>::Error: std::fmt::Debug,
        SS2: StemStrategy,
        LS2: ConstructibleLeafStrategy<A2, T2, SS2, K, B2>,
    {
        KdTree::<A2, T2, SS2, LS2, K, B2>::try_from(&self)
    }

    /// Find which leaf contains a specific item.
    /// Returns `Some((leaf_idx, position_in_leaf))` if found, `None` if not found.
    pub fn find_leaf_for_item(&self, target_item: T) -> Option<(usize, usize)>
    where
        T: PartialEq,
    {
        for leaf_idx in 0..self.leaves.leaf_count() {
            let leaf_view = self.leaves.leaf_view(leaf_idx);
            let (_points, items) = leaf_view.into_parts();

            for (pos_in_leaf, item) in items.iter().enumerate() {
                if *item == target_item {
                    return Some((leaf_idx, pos_in_leaf));
                }
            }
        }
        None
    }
}

impl<A, T, SS, LS, const K: usize, const B: usize> FromIterator<(usize, [A; K])>
    for KdTree<A, T, SS, LS, K, B>
where
    A: Axis<Coord = A>,
    T: Content,
    LS: ConstructibleLeafStrategy<A, T, SS, K, B> + Default,
    SS: StemStrategy,
{
    fn from_iter<I: IntoIterator<Item = (usize, [A; K])>>(_iter: I) -> Self {
        // TODO: Proper impl
        Self::default()
    }
}

impl<'a, A1, T1, SS1, LS1, A2, T2, SS2, LS2, const K: usize, const B1: usize, const B2: usize>
    TryFrom<&'a KdTree<A1, T1, SS1, LS1, K, B1>> for KdTree<A2, T2, SS2, LS2, K, B2>
where
    A1: Axis<Coord = A1>,
    T1: Content,
    SS1: StemStrategy,
    LS1: LeafStrategy<A1, T1, SS1, K, B1>,
    A2: Axis<Coord = A2> + TryFrom<A1>,
    <A2 as TryFrom<A1>>::Error: std::fmt::Debug,
    T2: Content + TryFrom<T1>,
    <T2 as TryFrom<T1>>::Error: std::fmt::Debug,
    SS2: StemStrategy,
    LS2: ConstructibleLeafStrategy<A2, T2, SS2, K, B2>,
{
    type Error = KdTreeConversionError;

    fn try_from(source: &'a KdTree<A1, T1, SS1, LS1, K, B1>) -> Result<Self, Self::Error> {
        let mut entries = Vec::with_capacity(source.size());

        for (point_index, (item, point)) in source.iter().enumerate() {
            let converted_item =
                T2::try_from(item).map_err(|err| KdTreeConversionError::ItemConversion {
                    point_index,
                    source: format!("{err:?}"),
                })?;

            let mut converted_point = [A2::zero(); K];
            for dim in 0..K {
                converted_point[dim] = A2::try_from(point[dim]).map_err(|err| {
                    KdTreeConversionError::AxisConversion {
                        point_index,
                        dim,
                        source: format!("{err:?}"),
                    }
                })?;
            }

            entries.push((converted_item, converted_point));
        }

        Self::new_from_entries(&entries).map_err(Into::into)
    }
}

// Display implementation for debugging
impl<A, T, SS, LS, const K: usize, const B: usize> std::fmt::Display for KdTree<A, T, SS, LS, K, B>
where
    A: Axis<Coord = A> + std::fmt::Display,
    T: Content + std::fmt::Display,
    LS: LeafStrategy<A, T, SS, K, B>,
    SS: StemStrategy,
{
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        writeln!(f, "KdTree {{")?;
        writeln!(f, "  Summary:")?;
        writeln!(f, "    size: {}", self.size)?;
        writeln!(f, "    max_stem_level: {}", self.max_stem_level)?;
        writeln!(f, "    stem len: {}", self.stems.len())?;
        writeln!(f, "    leaf count: {}", self.leaves.leaf_count())?;
        writeln!(f)?;

        // Display stems array
        writeln!(f, "  Stems (len={}):", self.stems.len())?;
        writeln!(f, "    [")?;
        for (i, stem) in self.stems.iter().enumerate() {
            if i % 8 == 0 {
                write!(f, "     ")?;
            }
            write!(f, "{:8.3}", stem)?;
            if i < self.stems.len() - 1 {
                write!(f, ",")?;
            }
            if (i + 1) % 8 == 0 || i == self.stems.len() - 1 {
                writeln!(f)?;
            } else {
                write!(f, "\t")?;
            }
        }
        writeln!(f, "    ]")?;
        writeln!(f)?;

        // Display stem_leaf_resolution
        writeln!(f, "  OwnedStemLeafResolution:")?;
        match &self.stem_leaf_resolution {
            OwnedStemLeafResolution::Arithmetic {
                stems_depth,
                leaf_count,
            } => {
                writeln!(f, "    Arithmetic {{")?;
                writeln!(f, "      stems_depth: {}", stems_depth)?;
                writeln!(f, "      leaf_count: {}", leaf_count)?;
                writeln!(f, "    }}")?;
            }
            OwnedStemLeafResolution::Pristine {
                stems_depth,
                leaf_count,
            } => {
                writeln!(f, "    Pristine {{")?;
                writeln!(f, "      stems_depth: {}", stems_depth)?;
                writeln!(f, "      leaf_count: {}", leaf_count)?;
                writeln!(f, "    }}")?;
            }
            OwnedStemLeafResolution::Mapped {
                min_stem_leaf_idx,
                leaf_idx_map,
            } => {
                writeln!(f, "    Mapped {{")?;
                writeln!(f, "      min_stem_leaf_idx: {}", min_stem_leaf_idx)?;
                writeln!(f, "      leaf_idx_map (len={}): [", leaf_idx_map.len())?;
                for (i, entry) in leaf_idx_map.iter().enumerate() {
                    match entry {
                        Some(idx) => writeln!(f, "        {}: Some({})", i, idx)?,
                        None => writeln!(f, "        {}: None", i)?,
                    }
                }
                writeln!(f, "      ]")?;
                writeln!(f, "    }}")?;
            }
        }
        writeln!(f)?;

        // Display leaves
        writeln!(f, "  Leaves (count={}):", self.leaves.leaf_count())?;
        for leaf_idx in 0..self.leaves.leaf_count() {
            let leaf_view = self.leaves.leaf_view(leaf_idx);
            let (points, items) = leaf_view.into_parts();

            write!(f, "    Leaf {} (count={}): [", leaf_idx, items.len())?;
            for i in 0..items.len() {
                if i > 0 {
                    write!(f, ", ")?;
                }
                write!(f, "(")?;
                for dim in 0..K {
                    if dim > 0 {
                        write!(f, ", ")?;
                    }
                    write!(f, "{:.3}", points[dim][i])?;
                }
                write!(f, "): {}", items[i])?;
            }
            writeln!(f, "]")?;
        }

        writeln!(f, "}}")?;
        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::leaf_strategy::dummy::DummyLeafStrategy;
    #[cfg(feature = "rkyv_08")]
    use crate::leaf_strategy::VecOfArenas;
    use crate::leaf_strategy::{FlatVec, VecOfArrays};
    use crate::stem_strategy::Donnelly;
    #[cfg(all(feature = "rkyv_08", feature = "simd", target_arch = "x86_64"))]
    use crate::stem_strategy::DonnellySimdFull;
    use crate::Eytzinger;
    use crate::SquaredEuclidean;
    #[cfg(feature = "rkyv_08")]
    use std::num::NonZeroUsize;

    fn sort_entries_u32<A: Copy, const K: usize>(
        mut entries: Vec<(u32, [A; K])>,
    ) -> Vec<(u32, [A; K])> {
        entries.sort_by_key(|(item, _)| *item);
        entries
    }

    fn sort_entries_u16<A: Copy, const K: usize>(
        mut entries: Vec<(u16, [A; K])>,
    ) -> Vec<(u16, [A; K])> {
        entries.sort_by_key(|(item, _)| *item);
        entries
    }

    #[test]
    fn test_default() {
        let kd_tree: KdTree<f32, u32, Eytzinger, DummyLeafStrategy, 3, 16> = Default::default();

        assert_eq!(kd_tree.size, 0);
        assert!(kd_tree.is_empty());
    }

    #[test]
    fn test_from_iterator_empty() {
        let points = vec![[0.0f64; 3]];

        let kd_tree: KdTree<f64, u32, Eytzinger, DummyLeafStrategy, 3, 16> =
            points.into_iter().enumerate().collect();

        assert_eq!(kd_tree.size, 0);
    }

    #[test]
    fn test_stem_height_padding_donnelly_l4() {
        // Create a tree with a height that needs padding to block boundary
        // With 100 items and bucket size 32, we get 4 leaves
        // 4 leaves -> depth = log2(4) = 2 levels (levels 0, 1)
        // max_stem_level = 1 (0-indexed)
        // stems_depth = max_stem_level + 1 = 2
        // For Donnelly<4>, block_size = 4
        // 2 % 4 = 2, so we need padding of 4 - 2 = 2 levels
        // Final depth should be 4, max_stem_level should be 3

        const TREE_SIZE: usize = 100;
        let content_to_add: Vec<[f32; 4]> = (0..TREE_SIZE)
            .map(|i| {
                let x = (i as f32) / (TREE_SIZE as f32);
                [x, x * 2.0, x * 3.0, x * 4.0]
            })
            .collect();

        let tree: KdTree<f32, u32, Donnelly<4>, FlatVec<f32, u32, 4, 32>, 4, 32> =
            KdTree::new_from_slice(&content_to_add).unwrap();

        assert_eq!(tree.size(), TREE_SIZE);

        // Verify padding was applied
        let stems_depth = tree.max_stem_level() + 1;
        let block_size = 4;
        assert_eq!(
            stems_depth % block_size,
            0,
            "Stem tree depth should be a multiple of block size. depth={}, block_size={}",
            stems_depth,
            block_size
        );

        // With 100 items and bucket size 32, we have 4 leaves
        // Natural depth would be 2 (log2(4) = 2)
        // Padded to block size 4, should be 4
        assert_eq!(
            stems_depth, 4,
            "Expected padded depth of 4 for tree with 4 leaves and block size 4"
        );
        assert_eq!(
            tree.max_stem_level(),
            3,
            "Expected max_stem_level of 3 (depth 4 - 1)"
        );

        // Verify tree still works correctly with padding
        let query_point = [0.5f32, 1.0f32, 1.5f32, 2.0f32];
        let leaf_idx = tree.get_leaf_idx(&query_point);
        assert!(
            leaf_idx < tree.leaf_count(),
            "Leaf index should be valid. leaf_idx={}, leaf_count={}",
            leaf_idx,
            tree.leaf_count()
        );
    }

    #[cfg(feature = "rkyv_08")]
    #[test]
    fn rkyv_archived_donnelly_stems_stay_cacheline_aligned() {
        type Tree = KdTree<f64, u32, Donnelly<3>, VecOfArenas<f64, u32, 3, 32>, 3, 32>;

        let points: Vec<[f64; 3]> = (0..4096)
            .map(|i| {
                let x = i as f64 / 4096.0;
                [x, x * 2.0, x * 3.0]
            })
            .collect();

        let tree = Tree::new_from_slice(&points).unwrap();

        let bytes = rkyv_08::api::high::to_bytes_in::<_, rkyv_08::rancor::Error>(
            &tree,
            rkyv_08::util::AlignedVec::<128>::new(),
        )
        .unwrap();

        let archived = rkyv_08::access::<
            ArchivedKdTree<f64, u32, Donnelly<3>, VecOfArenas<f64, u32, 3, 32>, 3, 32>,
            rkyv_08::rancor::Error,
        >(bytes.as_slice())
        .unwrap();

        assert_eq!(bytes.as_ptr() as usize % 128, 0);
        assert_eq!(archived.archived_stems().as_ptr() as usize % 128, 0);
        assert_eq!(archived.size(), tree.size());
        assert_eq!(archived.leaf_count(), tree.leaf_count());
        assert_eq!(archived.max_stem_level(), tree.max_stem_level());
    }

    #[cfg(feature = "rkyv_08")]
    #[test]
    fn rkyv_roundtrip_preserves_alignment_and_query_results() {
        type Tree = KdTree<f64, u32, Donnelly<3>, VecOfArenas<f64, u32, 3, 32>, 3, 32>;
        type ArchivedTree =
            ArchivedKdTree<f64, u32, Donnelly<3>, VecOfArenas<f64, u32, 3, 32>, 3, 32>;

        let points: Vec<[f64; 3]> = (0..2048)
            .map(|i| {
                let x = i as f64 / 2048.0;
                [x, (i % 127) as f64 / 127.0, (i % 63) as f64 / 63.0]
            })
            .collect();

        let tree = Tree::new_from_slice(&points).unwrap();
        let query = [0.123, 0.456, 0.789];
        let expected = tree
            .query(&query)
            .nearest_one::<SquaredEuclidean<f64>>()
            .execute();

        let bytes = rkyv_08::api::high::to_bytes_in::<_, rkyv_08::rancor::Error>(
            &tree,
            rkyv_08::util::AlignedVec::<128>::new(),
        )
        .unwrap();

        let archived =
            rkyv_08::access::<ArchivedTree, rkyv_08::rancor::Error>(bytes.as_slice()).unwrap();
        let roundtrip =
            rkyv_08::api::high::from_bytes::<Tree, rkyv_08::rancor::Error>(bytes.as_slice())
                .unwrap();

        assert_eq!(archived.size(), tree.size());
        assert_eq!(
            roundtrip.stems.as_ptr() as usize % aligned_vec::CACHELINE_ALIGN,
            0
        );
        assert_eq!(
            roundtrip.leaves.leaf_bytes_ptr() as usize % aligned_vec::CACHELINE_ALIGN,
            0
        );
        assert_eq!(
            roundtrip
                .query(&query)
                .nearest_one::<SquaredEuclidean<f64>>()
                .execute(),
            expected
        );
    }

    #[cfg(all(feature = "rkyv_08", feature = "simd", target_arch = "x86_64"))]
    #[test]
    fn rkyv_archived_donnelly_block4_vec_of_arenas_within_matches_owned() {
        type Tree = KdTree<f32, u32, DonnellySimdFull<4>, VecOfArenas<f32, u32, 4, 32>, 4, 32>;
        type ArchivedTree =
            ArchivedKdTree<f32, u32, DonnellySimdFull<4>, VecOfArenas<f32, u32, 4, 32>, 4, 32>;

        let points: Vec<[f32; 4]> = (0..4096)
            .map(|i| {
                let x = i as f32 / 4096.0;
                [
                    x,
                    ((i * 3) % 257) as f32 / 257.0,
                    ((i * 5) % 263) as f32 / 263.0,
                    ((i * 7) % 269) as f32 / 269.0,
                ]
            })
            .collect();

        let tree = Tree::new_from_slice(&points).unwrap();
        let query = [0.33, 0.27, 0.41, 0.59];
        let max_dist = 0.55f32;
        let expected = tree
            .query(&query)
            .within::<crate::Manhattan<f32>>(max_dist)
            .execute();

        let bytes = rkyv_08::api::high::to_bytes_in::<_, rkyv_08::rancor::Error>(
            &tree,
            rkyv_08::util::AlignedVec::<128>::new(),
        )
        .unwrap();

        let archived =
            rkyv_08::access::<ArchivedTree, rkyv_08::rancor::Error>(bytes.as_slice()).unwrap();
        let actual = archived
            .query(&query)
            .within::<crate::Manhattan<f32>>(max_dist)
            .execute();

        assert_eq!(actual, expected);
    }

    #[cfg(feature = "rkyv_08")]
    #[test]
    fn rkyv_archived_vec_of_arenas_supports_queries() {
        type Tree = KdTree<f64, u32, Eytzinger, VecOfArenas<f64, u32, 3, 32>, 3, 32>;
        type ArchivedTree =
            ArchivedKdTree<f64, u32, Eytzinger, VecOfArenas<f64, u32, 3, 32>, 3, 32>;

        let points: Vec<[f64; 3]> = (0..4096)
            .map(|i| {
                [
                    (i % 257) as f64 / 257.0,
                    (i % 131) as f64 / 131.0,
                    (i % 67) as f64 / 67.0,
                ]
            })
            .collect();

        let tree = Tree::new_from_slice(&points).unwrap();
        let query = [0.321, 0.456, 0.789];
        let max_qty = NonZeroUsize::new(8).unwrap();
        let max_dist = 0.025;

        let bytes = rkyv_08::api::high::to_bytes_in::<_, rkyv_08::rancor::Error>(
            &tree,
            rkyv_08::util::AlignedVec::<128>::new(),
        )
        .unwrap();
        let archived =
            rkyv_08::access::<ArchivedTree, rkyv_08::rancor::Error>(bytes.as_slice()).unwrap();

        assert_eq!(
            archived
                .query(&query)
                .nearest_one::<SquaredEuclidean<f64>>()
                .approx()
                .execute(),
            tree.query(&query)
                .nearest_one::<SquaredEuclidean<f64>>()
                .approx()
                .execute()
        );
        assert_eq!(
            archived
                .query(&query)
                .nearest_one::<SquaredEuclidean<f64>>()
                .execute(),
            tree.query(&query)
                .nearest_one::<SquaredEuclidean<f64>>()
                .execute()
        );
        assert_eq!(
            archived
                .query(&query)
                .nearest_n::<SquaredEuclidean<f64>>(max_qty)
                .execute(),
            tree.query(&query)
                .nearest_n::<SquaredEuclidean<f64>>(max_qty)
                .execute()
        );
        assert_eq!(
            archived
                .query(&query)
                .nearest_n::<SquaredEuclidean<f64>>(max_qty)
                .within(max_dist)
                .exclusive_boundaries()
                .execute(),
            tree.query(&query)
                .nearest_n::<SquaredEuclidean<f64>>(max_qty)
                .within(max_dist)
                .exclusive_boundaries()
                .execute()
        );
        assert_eq!(
            archived
                .query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .exclusive_boundaries()
                .execute(),
            tree.query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .exclusive_boundaries()
                .execute()
        );
        assert_eq!(
            archived
                .query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .execute(),
            tree.query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .execute()
        );
        assert_eq!(
            archived
                .query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .unsorted()
                .execute()
                .len(),
            tree.query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .unsorted()
                .execute()
                .len()
        );
        assert_eq!(
            archived
                .query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .exclusive_boundaries()
                .unsorted()
                .execute()
                .len(),
            tree.query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .exclusive_boundaries()
                .unsorted()
                .execute()
                .len()
        );
        assert_eq!(
            archived
                .query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .unsorted()
                .iter()
                .count(),
            tree.query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .unsorted()
                .iter()
                .count()
        );
        assert_eq!(
            archived
                .query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .exclusive_boundaries()
                .unsorted()
                .iter()
                .count(),
            tree.query(&query)
                .within::<SquaredEuclidean<f64>>(max_dist)
                .exclusive_boundaries()
                .unsorted()
                .iter()
                .count()
        );
        let archived_iter: Vec<_> = archived.iter().collect();
        let tree_iter: Vec<_> = tree.iter().collect();
        assert_eq!(archived_iter, tree_iter);
        assert_eq!(
            archived
                .query(&query)
                .best_n_within::<SquaredEuclidean<f64>>(max_dist, max_qty)
                .exclusive_boundaries()
                .execute()
                .into_sorted_vec(),
            tree.query(&query)
                .best_n_within::<SquaredEuclidean<f64>>(max_dist, max_qty)
                .exclusive_boundaries()
                .execute()
                .into_sorted_vec()
        );
        assert_eq!(
            archived
                .query(&query)
                .best_n_within::<SquaredEuclidean<f64>>(max_dist, max_qty)
                .execute()
                .into_sorted_vec(),
            tree.query(&query)
                .best_n_within::<SquaredEuclidean<f64>>(max_dist, max_qty)
                .execute()
                .into_sorted_vec()
        );
    }

    #[test]
    fn can_create_points_only_tree() {
        // points-only tree can be created by specifying T / Item parameter as ()
        type Tree = KdTree<f64, (), Eytzinger, VecOfArrays<f64, (), 3, 256>, 3, 256>;

        let points = vec![[0.0f64; 3]];

        let kd_tree = Tree::new_from_slice_no_items(&points).unwrap();

        assert_eq!(kd_tree.size, 1);
    }

    #[test]
    fn can_add_to_and_remove_from_points_only_tree() {
        // points-only tree can be created by specifying T / Item parameter as ()
        type Tree = KdTree<f64, (), Eytzinger, VecOfArrays<f64, (), 3, 256>, 3, 256>;

        let points = vec![[0.0f64; 3]];

        let mut kd_tree = Tree::new_from_slice_no_items(&points).unwrap();

        assert_eq!(kd_tree.size, 1);

        kd_tree.add(&[1.0f64; 3], ()).unwrap();
        assert_eq!(kd_tree.size, 2);

        kd_tree.remove(&[1.0f64; 3], ());
        assert_eq!(kd_tree.size, 1);

        kd_tree.remove(&[0.0f64; 3], ());
        assert_eq!(kd_tree.size, 0);
    }

    #[test]
    fn new_from_entries_preserves_explicit_items() {
        type Tree = KdTree<f32, u32, Eytzinger, FlatVec<f32, u32, 2, 4>, 2, 4>;

        let entries = vec![
            (42u32, [0.0f32, 0.0f32]),
            (7u32, [5.0f32, 5.0f32]),
            (99u32, [10.0f32, 10.0f32]),
        ];

        let tree = Tree::new_from_entries(&entries).unwrap();

        assert_eq!(tree.size(), entries.len());
        assert_eq!(
            sort_entries_u32(tree.iter().collect()),
            sort_entries_u32(entries)
        );

        let nearest = tree
            .query(&[5.1f32, 4.9f32])
            .nearest_one::<SquaredEuclidean<f32>>()
            .execute();
        assert_eq!(nearest.item, 7);
    }

    #[test]
    fn new_from_source_accepts_custom_source_structs() {
        type Tree = KdTree<f64, u32, Eytzinger, FlatVec<f64, u32, 2, 4>, 2, 4>;

        #[derive(Clone, Copy)]
        struct SourcePoint {
            id: u32,
            x: f64,
            y: f64,
        }

        let source = [
            SourcePoint {
                id: 11u32,
                x: 0.0f64,
                y: 0.0f64,
            },
            SourcePoint {
                id: 22u32,
                x: 3.0f64,
                y: 3.0f64,
            },
            SourcePoint {
                id: 33u32,
                x: 9.0f64,
                y: 1.0f64,
            },
        ];

        let tree = Tree::new_from_source(
            &source,
            |point, dim| match dim {
                0 => point.x,
                1 => point.y,
                _ => unreachable!(),
            },
            |_src_idx, point| point.id,
        )
        .unwrap();

        assert_eq!(tree.size(), source.len());
        assert_eq!(
            sort_entries_u32(tree.iter().collect()),
            sort_entries_u32(vec![
                (11u32, [0.0f64, 0.0f64]),
                (22u32, [3.0f64, 3.0f64]),
                (33u32, [9.0f64, 1.0f64]),
            ])
        );
    }

    #[test]
    fn new_from_source_can_use_indices_for_items() {
        type Tree = KdTree<f64, u32, Eytzinger, FlatVec<f64, u32, 2, 4>, 2, 4>;

        let source = [[0.0f64, 0.0f64], [3.0f64, 3.0f64], [9.0f64, 1.0f64]];

        let tree = Tree::new_from_source(
            &source,
            |point, dim| point[dim],
            |src_idx, _| src_idx as u32 + 100,
        )
        .unwrap();

        assert_eq!(
            sort_entries_u32(tree.iter().collect()),
            sort_entries_u32(vec![
                (100u32, [0.0f64, 0.0f64]),
                (101u32, [3.0f64, 3.0f64]),
                (102u32, [9.0f64, 1.0f64]),
            ])
        );
    }

    #[test]
    fn try_from_kdtree_converts_across_variants() {
        type SourceTree = KdTree<f32, u16, Eytzinger, VecOfArrays<f32, u16, 2, 4>, 2, 4>;
        type DestTree = KdTree<f64, u32, Donnelly<2>, FlatVec<f64, u32, 2, 8>, 2, 8>;

        let entries = vec![
            (10u16, [1.0f32, 2.0f32]),
            (20u16, [8.0f32, 3.0f32]),
            (30u16, [2.0f32, 9.0f32]),
            (40u16, [6.0f32, 7.0f32]),
            (50u16, [4.0f32, 4.0f32]),
        ];

        let source = SourceTree::new_from_entries(&entries).unwrap();
        let nearest_source = source
            .query(&[4.0f32, 4.0f32])
            .nearest_one::<SquaredEuclidean<f32>>()
            .execute();

        let converted: DestTree = source.try_convert().unwrap();

        assert_eq!(converted.size(), entries.len());
        assert_eq!(
            sort_entries_u32(converted.iter().collect()),
            sort_entries_u32(vec![
                (10u32, [1.0f64, 2.0f64]),
                (20u32, [8.0f64, 3.0f64]),
                (30u32, [2.0f64, 9.0f64]),
                (40u32, [6.0f64, 7.0f64]),
                (50u32, [4.0f64, 4.0f64]),
            ])
        );

        let nearest_converted = converted
            .query(&[4.0f64, 4.0f64])
            .nearest_one::<SquaredEuclidean<f64>>()
            .execute();
        assert_eq!(nearest_converted.item, nearest_source.item as u32);
    }

    #[test]
    fn try_from_kdtree_reports_item_conversion_failure() {
        type SourceTree = KdTree<u16, u16, Eytzinger, FlatVec<u16, u16, 2, 4>, 2, 4>;
        type DestTree = KdTree<u16, u8, Eytzinger, FlatVec<u16, u8, 2, 4>, 2, 4>;

        let source = SourceTree::new_from_entries(&[(300u16, [1u16, 2u16])]).unwrap();
        let err = match DestTree::try_from(&source) {
            Ok(_) => panic!("expected item conversion to fail"),
            Err(err) => err,
        };

        assert!(matches!(
            err,
            KdTreeConversionError::ItemConversion { point_index: 0, .. }
        ));
    }

    #[test]
    fn try_from_kdtree_reports_axis_conversion_failure() {
        type SourceTree = KdTree<u16, u16, Eytzinger, FlatVec<u16, u16, 2, 4>, 2, 4>;
        type DestTree = KdTree<u8, u16, Eytzinger, FlatVec<u8, u16, 2, 4>, 2, 4>;

        let source = SourceTree::new_from_entries(&[(7u16, [300u16, 2u16])]).unwrap();
        let err = match DestTree::try_from(&source) {
            Ok(_) => panic!("expected axis conversion to fail"),
            Err(err) => err,
        };

        assert!(matches!(
            err,
            KdTreeConversionError::AxisConversion {
                point_index: 0,
                dim: 0,
                ..
            }
        ));
    }

    #[test]
    fn try_from_kdtree_converts_mutable_to_immutable() {
        type SourceTree = KdTree<u16, u16, Eytzinger, VecOfArrays<u16, u16, 2, 4>, 2, 4>;
        type DestTree = KdTree<u16, u16, Eytzinger, FlatVec<u16, u16, 2, 4>, 2, 4>;

        let entries = vec![
            (1u16, [1u16, 1u16]),
            (2u16, [9u16, 9u16]),
            (3u16, [4u16, 5u16]),
        ];
        let source = SourceTree::new_from_entries(&entries).unwrap();
        let converted: DestTree = source.try_convert().unwrap();

        assert_eq!(
            sort_entries_u16(converted.iter().collect()),
            sort_entries_u16(entries)
        );
    }
}