ann-search-rs 0.2.12

Various vector search algorithms in Rust. Designed specifically for single cell & computational biology applications.
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
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
//! HNSW implementation in ann-search-rs. Uses parallel updates during
//! construction of the index which comes at the cost of determinism.

use faer::{MatRef, RowRef};
use num_traits::{Float, FromPrimitive};
use rand::{rngs::SmallRng, Rng, SeedableRng};
use rayon::prelude::*;
use std::cell::RefCell;
use std::{cell::UnsafeCell, cmp::Reverse, iter::Sum, marker::PhantomData, time::Instant};
use thousands::*;

use crate::prelude::*;
use crate::utils::graph_utils::*;
use crate::utils::*;

/////////////
// Helpers //
/////////////

/// Type alias for the Neighbour updates
pub type NeighbourUpdates<T> = Vec<(usize, Vec<(OrderedFloat<T>, usize)>)>;

impl<T: Ord> Default for SortedBuffer<T> {
    fn default() -> Self {
        Self::new()
    }
}

/// Construction-time neighbour storage
struct ConstructionGraph<T> {
    /// Flat storage: each layer is a fixed-size block padded with u32::MAX.
    /// Layout per node: [layer0 (M*2 slots), layer1 (M slots), ...].
    /// Sentinels (u32::MAX) mark unused slots; valid IDs are packed at the
    /// front of each layer block.
    nodes: Vec<UnsafeCell<Vec<u32>>>,
    /// Lock bitset for thread-safe writes
    locks: AtomicNodeLocks,
    /// Maximum layer each node appears in
    node_levels: Vec<u8>,
    /// Base connectivity parameter
    m: usize,
    /// Phantom data for type parameter
    _phantom: PhantomData<T>,
}

unsafe impl<T> Sync for ConstructionGraph<T> {}

impl<T> ConstructionGraph<T>
where
    T: Float + FromPrimitive + Send + Sync + Sum,
{
    /// Create a new construction graph with fixed-size sentinel-padded storage
    ///
    /// Pre-allocates a contiguous slot array for each node, with layer 0
    /// having 2*M slots and upper layers having M slots each. All slots are
    /// initialised to `u32::MAX` (sentinel). This fixed layout ensures that
    /// concurrent lock-free readers never observe an empty or half-allocated
    /// neighbour list.
    ///
    /// ### Params
    ///
    /// * `n` - Number of nodes
    /// * `layer_assignments` - Maximum layer for each node
    /// * `m` - Base connectivity parameter
    ///
    /// ### Returns
    ///
    /// Initialised construction graph with sentinel-filled neighbour slots
    fn new(n: usize, layer_assignments: &[u8], m: usize) -> Self {
        let nodes = (0..n)
            .map(|i| {
                let level = layer_assignments[i] as usize;
                let total_slots = m * 2 + level * m;
                UnsafeCell::new(vec![u32::MAX; total_slots])
            })
            .collect();

        Self {
            nodes,
            locks: AtomicNodeLocks::new(n),
            node_levels: layer_assignments.to_vec(),
            m,
            _phantom: PhantomData,
        }
    }

    /// Compute the offset within a node's flat slot array for a given layer
    ///
    /// Layer 0 starts at offset 0 and occupies 2*M slots. Each subsequent
    /// layer occupies M slots.
    ///
    /// ### Params
    ///
    /// * `layer` - Layer number
    ///
    /// ### Returns
    ///
    /// Starting index within the node's flat slot array
    #[inline]
    fn layer_offset(&self, layer: u8) -> usize {
        if layer == 0 {
            0
        } else {
            self.m * 2 + (layer as usize - 1) * self.m
        }
    }

    /// Get the maximum number of neighbours for a layer
    ///
    /// ### Params
    ///
    /// * `layer` - Layer number
    ///
    /// ### Returns
    ///
    /// 2*M for layer 0, M for upper layers
    #[inline]
    fn max_neighbours(&self, layer: u8) -> usize {
        if layer == 0 {
            self.m * 2
        } else {
            self.m
        }
    }

    /// Get the maximum layer a node appears in
    ///
    /// ### Params
    ///
    /// * `node_id` - Node index
    ///
    /// ### Returns
    ///
    /// Highest layer this node exists in (0 = base layer only)
    #[inline]
    fn node_level(&self, node_id: usize) -> u8 {
        self.node_levels[node_id]
    }

    /// Get a read-only slice of neighbours for a node at a specific layer
    ///
    /// Returns the fixed-size slot range for the requested layer. The slice
    /// may contain `u32::MAX` sentinels marking unused positions, packed at
    /// the end. No lock is acquired; benign torn reads are accepted during
    /// construction search because individual `u32` writes are atomic on all
    /// relevant architectures, so each slot is always either a valid node ID
    /// or a sentinel.
    ///
    /// Returns empty slice if the node does not exist at the requested layer.
    ///
    /// ### Params
    ///
    /// * `node_id` - Node index
    /// * `layer` - Layer to query
    ///
    /// ### Returns
    ///
    /// Slice of neighbour slots (may contain `u32::MAX` padding)
    ///
    /// ### Safety
    ///
    /// Caller must ensure no concurrent reallocation of this node's backing
    /// storage. Safe with fixed-size sentinel-padded layout since writes are
    /// always in-place overwrites.
    #[inline]
    pub unsafe fn get_neighbours_slice(&self, node_id: usize, layer: u8) -> &[u32] {
        let node_level = self.node_levels[node_id];
        if layer > node_level {
            return &[];
        }
        let flat = &*self.nodes[node_id].get();
        let offset = self.layer_offset(layer);
        let count = self.max_neighbours(layer);
        &flat[offset..offset + count]
    }

    /// Set neighbours for a node at a specific layer
    ///
    /// Acquires the node lock, then overwrites the layer's slot range
    /// in-place. Valid IDs are written first, followed by sentinel padding.
    /// Self-loops are filtered out. At no point does the slot range appear
    /// empty to concurrent readers.
    ///
    /// No-op if the node does not exist at the requested layer.
    ///
    /// ### Params
    ///
    /// * `node_id` - Node to update
    /// * `layer` - Layer to update
    /// * `neighbours` - New neighbour list as (distance, id) pairs
    fn set_neighbours(&self, node_id: usize, layer: u8, neighbours: &[(OrderedFloat<T>, usize)]) {
        let node_level = self.node_levels[node_id];
        if layer > node_level {
            return;
        }

        let _guard = self.locks.lock_guard(node_id);
        let max_n = self.max_neighbours(layer);
        let flat = unsafe { &mut *self.nodes[node_id].get() };
        let offset = self.layer_offset(layer);
        let slot = &mut flat[offset..offset + max_n];

        let mut i = 0;
        for &(_, neighbour_id) in neighbours.iter().take(max_n) {
            if neighbour_id != node_id {
                slot[i] = neighbour_id as u32;
                i += 1;
            }
        }
        for j in i..max_n {
            slot[j] = u32::MAX;
        }
    }

    /// Add a single neighbour with pruning if the layer is full
    ///
    /// Acquires the node lock, then either appends to the first sentinel
    /// slot (if space remains) or applies the heuristic pruning strategy to
    /// select the best `max_neighbours` from the existing set plus the new
    /// candidate. Writes are always in-place overwrites, ensuring concurrent
    /// readers never see an empty list.
    ///
    /// No-op if the node does not exist at the requested layer, or if the
    /// neighbour is already present.
    ///
    /// ### Params
    ///
    /// * `node_id` - Node to update
    /// * `layer` - Layer to update
    /// * `new_neighbour` - Neighbour to add
    /// * `distance_fn` - Function to compute distances between nodes
    fn add_neighbour_with_pruning<F>(
        &self,
        node_id: usize,
        layer: u8,
        new_neighbour: usize,
        distance_fn: F,
    ) where
        F: Fn(usize, usize) -> T,
    {
        let node_level = self.node_levels[node_id];
        if layer > node_level {
            return;
        }

        let _guard = self.locks.lock_guard(node_id);
        let max_n = self.max_neighbours(layer);
        let flat = unsafe { &mut *self.nodes[node_id].get() };
        let offset = self.layer_offset(layer);
        let slot = &mut flat[offset..offset + max_n];

        // Degree is the index of the first sentinel
        let degree = slot.iter().position(|&e| e == u32::MAX).unwrap_or(max_n);

        if slot[..degree].iter().any(|&n| n as usize == new_neighbour) {
            return;
        }

        if degree < max_n {
            slot[degree] = new_neighbour as u32;
            return;
        }

        // Full: collect all candidates with distances, then prune
        let mut candidates: Vec<(OrderedFloat<T>, usize)> = slot[..degree]
            .iter()
            .map(|&n| {
                let n = n as usize;
                (OrderedFloat(distance_fn(node_id, n)), n)
            })
            .collect();

        candidates.push((
            OrderedFloat(distance_fn(node_id, new_neighbour)),
            new_neighbour,
        ));
        candidates.sort_unstable_by(|a, b| a.0.cmp(&b.0));

        let mut selected = Vec::with_capacity(max_n);
        for &(dist, cand_id) in &candidates {
            if selected.len() >= max_n {
                break;
            }
            let dominated = selected.iter().any(|&sel_id| {
                let dist_to_selected = OrderedFloat(distance_fn(cand_id, sel_id));
                dist_to_selected < dist
            });
            if !dominated {
                selected.push(cand_id);
            }
        }

        // In-place overwrite with sentinel padding
        for i in 0..max_n {
            slot[i] = if i < selected.len() {
                selected[i] as u32
            } else {
                u32::MAX
            };
        }
    }

    /// Convert to flat layout for queries
    ///
    /// Consumes the construction graph and produces a flattened neighbour
    /// array suitable for cache-friendly query traversal. Each node's layers
    /// are stored contiguously, preserving the fixed-size sentinel-padded
    /// layout. The offset array records where each node's data begins.
    ///
    /// ### Returns
    ///
    /// Tuple of (flat neighbours, per-node offsets, level assignments)
    fn into_flat(self) -> (Vec<u32>, Vec<usize>, Vec<u8>) {
        let n = self.nodes.len();
        let mut neighbours_flat = Vec::new();
        let mut neighbour_offsets = Vec::with_capacity(n);
        let node_levels = self.node_levels.clone();

        for node_cell in self.nodes {
            neighbour_offsets.push(neighbours_flat.len());
            neighbours_flat.extend(node_cell.into_inner());
        }

        (neighbours_flat, neighbour_offsets, node_levels)
    }
}

//////////////////////////
// Thread-local buffers //
//////////////////////////

thread_local! {
    static SEARCH_STATE_F32: RefCell<SearchState<f32>> = RefCell::new(SearchState::new(1000));
    static BUILD_STATE_F32: RefCell<SearchState<f32>> = RefCell::new(SearchState::new(1000));
    static SEARCH_STATE_F64: RefCell<SearchState<f64>> = RefCell::new(SearchState::new(1000));
    static BUILD_STATE_F64: RefCell<SearchState<f64>> = RefCell::new(SearchState::new(1000));
}

/// Provides access to thread-local [`SearchState`] buffers for a given float type.
///
/// Separates query and construction state to allow both to run concurrently on
/// the same thread without clobbering each other's traversal bookkeeping.
pub trait HnswState<T> {
    /// Access the thread-local search state for query traversal.
    ///
    /// Calls `f` with a reference to the [`RefCell`]-wrapped state and returns
    /// its result. The borrow must not outlive the closure.
    fn with_search_state<F, R>(f: F) -> R
    where
        F: FnOnce(&std::cell::RefCell<SearchState<T>>) -> R;

    /// Access the thread-local search state for index construction.
    ///
    /// Calls `f` with a reference to the [`RefCell`]-wrapped state and returns
    /// its result. The borrow must not outlive the closure.
    fn with_build_state<F, R>(f: F) -> R
    where
        F: FnOnce(&std::cell::RefCell<SearchState<T>>) -> R;
}

impl HnswState<f32> for HnswIndex<f32> {
    fn with_search_state<F, R>(f: F) -> R
    where
        F: FnOnce(&std::cell::RefCell<SearchState<f32>>) -> R,
    {
        SEARCH_STATE_F32.with(f)
    }

    fn with_build_state<F, R>(f: F) -> R
    where
        F: FnOnce(&std::cell::RefCell<SearchState<f32>>) -> R,
    {
        BUILD_STATE_F32.with(f)
    }
}

impl HnswState<f64> for HnswIndex<f64> {
    fn with_search_state<F, R>(f: F) -> R
    where
        F: FnOnce(&std::cell::RefCell<SearchState<f64>>) -> R,
    {
        SEARCH_STATE_F64.with(f)
    }

    fn with_build_state<F, R>(f: F) -> R
    where
        F: FnOnce(&std::cell::RefCell<SearchState<f64>>) -> R,
    {
        BUILD_STATE_F64.with(f)
    }
}

////////////////////
// Main structure //
////////////////////

/// HNSW (Hierarchical Navigable Small World) graph index
///
/// Implements the HNSW algorithm with multi-layer neighbour storage. Each node
/// maintains separate neighbour lists for each layer it appears in, enabling
/// efficient hierarchical search.
pub struct HnswIndex<T>
where
    T: AnnSearchFloat,
{
    /// Flattened vector data for cache locality
    pub vectors_flat: Vec<T>,
    /// Dimensionality of vectors
    pub dim: usize,
    /// Number of vectors
    pub n: usize,
    /// Pre-computed norms for Cosine distance (empty for Euclidean)
    pub norms: Vec<T>,
    /// Distance metric (Euclidean or Cosine)
    metric: Dist,
    /// Maximum layer each node appears in
    layer_assignments: Vec<u8>,
    /// Flattened neighbour storage across all layers
    neighbours_flat: Vec<u32>,
    /// Starting offset for each node's neighbours
    neighbour_offsets: Vec<usize>,
    /// Starting node for queries (highest-layer node)
    entry_point: u32,
    /// Highest layer in the graph
    max_layer: u8,
    /// Base connectivity parameter
    m: usize,
    /// Size of dynamic candidate list during construction
    ef_construction: usize,
    ///  Whether to extend candidate pool (unused)
    extend_candidates: bool,
    /// Original indices - for trait purposes
    original_ids: Vec<usize>,
}

impl<T> VectorDistance<T> for HnswIndex<T>
where
    T: AnnSearchFloat,
{
    fn vectors_flat(&self) -> &[T] {
        &self.vectors_flat
    }

    fn dim(&self) -> usize {
        self.dim
    }

    fn norms(&self) -> &[T] {
        &self.norms
    }
}

impl<T> HnswIndex<T>
where
    T: AnnSearchFloat,
    Self: HnswState<T>,
{
    //////////////////////
    // Index generation //
    //////////////////////

    /// Construct a new HNSW index
    ///
    /// Builds the hierarchical graph structure layer by layer from top to
    /// bottom. Assigns layers using exponential distribution, then constructs
    /// connections using greedy search and heuristic pruning.
    ///
    /// ### Params
    ///
    /// * `data` - Data matrix (rows = samples, columns = dimensions)
    /// * `m` - Base connectivity parameter (neighbours per layer)
    /// * `ef_construction` - Size of dynamic candidate list during construction
    /// * `dist_metric` - Distance metric ("euclidean" or "cosine")
    /// * `seed` - Random seed for layer assignment
    /// * `verbose` - Whether to print progress information
    ///
    /// ### Returns
    ///
    /// Constructed index ready for querying
    pub fn build(
        data: MatRef<T>,
        m: usize,
        ef_construction: usize,
        dist_metric: &str,
        seed: usize,
        verbose: bool,
    ) -> Self {
        let metric = parse_ann_dist(dist_metric).unwrap_or(Dist::Cosine);
        let (vectors_flat, n, dim) = matrix_to_flat(data);

        if verbose {
            println!(
                "Building HNSW index with {} nodes, M = {}",
                n.separate_with_underscores(),
                m
            );
        }

        let start_total = Instant::now();

        // Compute norms for cosine distance
        let norms = if metric == Dist::Cosine {
            (0..n)
                .map(|i| {
                    let start = i * dim;
                    let end = start + dim;
                    T::calculate_l2_norm(&vectors_flat[start..end])
                })
                .collect()
        } else {
            Vec::new()
        };

        // Assign layers using exponential distribution
        let ml = T::one() / T::from_usize(m).unwrap().ln();
        let mut rng = SmallRng::seed_from_u64(seed as u64);

        let layer_assignments: Vec<u8> = (0..n)
            .map(|_| {
                let uniform: f64 = rng.random();
                let uniform_t = T::from_f64(uniform).unwrap();
                ((-uniform_t.ln() * ml).floor().to_u8().unwrap()).min(15)
            })
            .collect();

        let max_layer = layer_assignments.iter().copied().fold(0u8, u8::max);
        let entry_point = layer_assignments
            .iter()
            .position(|&l| l == max_layer)
            .unwrap_or(0) as u32;

        if verbose {
            println!("Max layer: {}, Entry point: {}", max_layer, entry_point);
            for l in 0..=max_layer {
                let count = layer_assignments.iter().filter(|&&x| x >= l).count();
                println!("  Layer {}: {} nodes", l, count.separate_with_underscores());
            }
        }

        // Create construction graph with proper per-layer storage
        let construction_graph = ConstructionGraph::new(n, &layer_assignments, m);

        let mut index = HnswIndex {
            vectors_flat,
            dim,
            n,
            metric,
            norms,
            layer_assignments: layer_assignments.clone(),
            neighbours_flat: Vec::new(),
            neighbour_offsets: Vec::new(),
            entry_point,
            max_layer,
            m,
            ef_construction,
            extend_candidates: false,
            original_ids: (0..n).collect(),
        };

        // Build the graph layer by layer, from TOP to BOTTOM
        index.build_graph(&construction_graph, verbose);

        // Convert construction graph to flat layout
        let (neighbours_flat, neighbour_offsets, _) = construction_graph.into_flat();
        index.neighbours_flat = neighbours_flat;
        index.neighbour_offsets = neighbour_offsets;

        if verbose {
            println!("Total HNSW build time: {:.2?}", start_total.elapsed());
        }

        index
    }

    /// Build the graph structure layer by layer (top to bottom)
    ///
    /// Constructs upper layers first to create "highways" that lower layers
    /// can use during their construction, improving connectivity.
    ///
    /// ### Params
    ///
    /// * `graph` - Construction graph to populate
    /// * `verbose` - Whether to print progress
    fn build_graph(&self, graph: &ConstructionGraph<T>, verbose: bool) {
        // Sort nodes: highest layer first, then by node id for determinism
        // within a layer.
        let mut insertion_order: Vec<usize> = (0..self.n).collect();
        insertion_order.sort_unstable_by(|&a, &b| {
            self.layer_assignments[b]
                .cmp(&self.layer_assignments[a])
                .then(a.cmp(&b))
        });

        if verbose {
            println!(
                "Inserting {} nodes incrementally",
                self.n.separate_with_underscores()
            );
        }

        let start = Instant::now();

        // Insert the entry point first (it's the highest-layer node, so it
        // should be first in our sorted order, but let's be explicit)
        let ep = self.entry_point as usize;

        // First phase: Insert upper-layer nodes sequentially
        // These are few in number and form the critical highway structure.
        // Sequential insertion ensures they see each other's connections.
        let (upper_nodes, base_only_nodes): (Vec<usize>, Vec<usize>) = insertion_order
            .into_iter()
            .filter(|&id| id != ep)
            .partition(|&id| self.layer_assignments[id] > 0);

        if verbose {
            println!(
                "  Phase 1: {} upper-layer nodes (sequential)",
                upper_nodes.len().separate_with_underscores()
            );
        }

        for &node in &upper_nodes {
            Self::with_build_state(|state_cell| {
                let mut state = state_cell.borrow_mut();
                self.insert_node(node, graph, &mut state);
            });
        }

        if verbose {
            println!("  Phase 1 done in {:.2?}", start.elapsed());
            println!(
                "  Phase 2: {} base-layer nodes (parallel)",
                base_only_nodes.len().separate_with_underscores()
            );
        }

        let phase2_start = Instant::now();

        // Phase 2: Insert base-only nodes in parallel
        // The upper layers are now fully built, so these nodes can find good
        // entry points via greedy descent. Concurrent insertions at layer 0
        // are protected by per-node locks.
        base_only_nodes.par_iter().for_each(|&node| {
            Self::with_build_state(|state_cell| {
                let mut state = state_cell.borrow_mut();
                self.insert_node(node, graph, &mut state);
            });
        });

        if verbose {
            println!("  Phase 2 done in {:.2?}", phase2_start.elapsed());
            println!("  Total build in {:.2?}", start.elapsed());
        }
    }

    /// Insert a single node into the construction graph across all its layers
    ///
    /// Performs greedy descent from the entry point through upper layers,
    /// then does ef_construction search and connects the node at each
    /// layer it belongs to, from its highest layer down to layer 0.
    fn insert_node(&self, node: usize, graph: &ConstructionGraph<T>, state: &mut SearchState<T>) {
        let node_level = self.layer_assignments[node];
        let mut current_node = self.entry_point as usize;

        // greedy descent through layers above this node's highest layer
        let mut current_dist = OrderedFloat(match self.metric {
            Dist::Euclidean => self.euclidean_distance(node, current_node),
            Dist::Cosine => self.cosine_distance(node, current_node),
        });

        for layer in (node_level + 1..=self.max_layer).rev() {
            let mut changed = true;
            while changed {
                changed = false;

                // SAFETY: lock-free read of fixed-size sentinel-padded slots.
                // Benign torn reads are acceptable during greedy descent; a
                // stale or partial neighbour list may slow convergence but
                // cannot produce incorrect final results.
                let neighbours = unsafe { graph.get_neighbours_slice(current_node, layer) };

                for &neighbour in neighbours {
                    if neighbour == u32::MAX {
                        break;
                    }
                    let neighbour = neighbour as usize;

                    let dist = OrderedFloat(match self.metric {
                        Dist::Euclidean => self.euclidean_distance(node, neighbour),
                        Dist::Cosine => self.cosine_distance(node, neighbour),
                    });

                    if dist < current_dist {
                        current_node = neighbour;
                        current_dist = dist;
                        changed = true;
                    }
                }
            }
        }

        // for each layer this node belongs to (top-down), search and connect
        let distance_fn = |a: usize, b: usize| -> T {
            match self.metric {
                Dist::Euclidean => self.euclidean_distance(a, b),
                Dist::Cosine => self.cosine_distance(a, b),
            }
        };

        for layer in (0..=node_level).rev() {
            state.reset(self.n);

            self.search_layer_construction(
                node,
                layer,
                current_node,
                self.ef_construction,
                graph,
                state,
            );

            let candidates: Vec<(OrderedFloat<T>, usize)> = state.working_sorted.data().to_vec();
            let selected = self.select_neighbours_heuristic(node, &candidates, layer, state);

            // set this node's outgoing neighbours
            graph.set_neighbours(node, layer, &selected);

            // update reverse links: add this node to each neighbour's list
            for &(_, neighbour_id) in &selected {
                if neighbour_id != node && graph.node_level(neighbour_id) >= layer {
                    graph.add_neighbour_with_pruning(neighbour_id, layer, node, &distance_fn);
                }
            }

            // use the closest result as entry point for the next layer down
            if let Some(&(_, closest)) = selected.first() {
                current_node = closest;
            }
        }
    }

    /// Compute the offset in neighbours_flat for a specific node and layer
    ///
    /// Calculates where in the flat array this node's layer begins, accounting
    /// for layer 0 having 2*M slots and upper layers having M slots each.
    ///
    /// ### Params
    ///
    /// * `node_id` - Node index
    /// * `layer` - Layer number
    ///
    /// ### Returns
    ///
    /// Offset into neighbours_flat
    #[inline]
    fn neighbours_offset(&self, node_id: usize, layer: u8) -> usize {
        let base = self.neighbour_offsets[node_id];
        if layer == 0 {
            base
        } else {
            // Skip layer 0 (M*2) plus previous upper layers (M each)
            base + self.m * 2 + self.m * (layer as usize - 1)
        }
    }

    /// Get the maximum number of neighbours for a layer
    ///
    /// ### Params
    ///
    /// * `layer` - Layer number
    ///
    /// ### Returns
    ///
    /// 2*M for layer 0, M for upper layers
    #[inline]
    fn max_neighbours_for_layer(&self, layer: u8) -> usize {
        if layer == 0 {
            self.m * 2
        } else {
            self.m
        }
    }

    /// Get neighbours for a node at a specific layer (for queries)
    ///
    /// Returns empty slice if the node doesn't exist at this layer.
    ///
    /// ### Params
    ///
    /// * `node_id` - Node index
    /// * `layer` - Layer to query
    ///
    /// ### Returns
    ///
    /// Slice of neighbour indices (may contain u32::MAX padding)
    #[inline]
    fn get_neighbours_at_layer(&self, node_id: usize, layer: u8) -> &[u32] {
        let node_level = self.layer_assignments[node_id];
        if layer > node_level {
            return &[];
        }

        let offset = self.neighbours_offset(node_id, layer);
        let count = self.max_neighbours_for_layer(layer);

        // safety: bounds are guaranteed by construction
        &self.neighbours_flat[offset..offset + count]
    }

    /// Search layer during construction
    ///
    /// Returns ef closest nodes at the target layer. During construction,
    /// traverses all available connections but only considers nodes that
    /// exist at the target layer or higher.
    ///
    /// ### Params
    ///
    /// * `query_node` - Node to find neighbours for
    /// * `target_layer` - Layer to search
    /// * `entry_node` - Starting point for search
    /// * `ef` - Size of candidate list
    /// * `graph` - Construction graph
    /// * `state` - Mutable reference to search state
    ///
    /// ### Returns
    ///
    /// Vector of (distance, id) pairs for closest candidates
    fn search_layer_construction(
        &self,
        query_node: usize,
        target_layer: u8,
        entry_node: usize,
        ef: usize,
        graph: &ConstructionGraph<T>,
        state: &mut SearchState<T>,
    ) {
        state.working_sorted.clear();
        state.candidates.clear();

        let entry_dist = OrderedFloat(match self.metric {
            Dist::Euclidean => self.euclidean_distance(query_node, entry_node),
            Dist::Cosine => self.cosine_distance(query_node, entry_node),
        });

        state.mark_visited(entry_node);
        state.candidates.push(Reverse((entry_dist, entry_node)));
        state.working_sorted.insert((entry_dist, entry_node), ef);

        let mut furthest_dist = entry_dist;

        while let Some(Reverse((current_dist, current_id))) = state.candidates.pop() {
            if current_dist > furthest_dist && state.working_sorted.len() >= ef {
                break;
            }

            // SAFETY: benign race — stale/torn reads are acceptable during
            // construction search, same rationale as Vamana.
            let neighbours = unsafe { graph.get_neighbours_slice(current_id, target_layer) };

            for &neighbour in neighbours {
                if neighbour == u32::MAX {
                    continue;
                }
                let neighbour_id = neighbour as usize;

                if state.is_visited(neighbour_id) {
                    continue;
                }
                state.mark_visited(neighbour_id);

                let dist = OrderedFloat(match self.metric {
                    Dist::Euclidean => self.euclidean_distance(query_node, neighbour_id),
                    Dist::Cosine => self.cosine_distance(query_node, neighbour_id),
                });

                if dist < furthest_dist || state.working_sorted.len() < ef {
                    state.candidates.push(Reverse((dist, neighbour_id)));

                    if state.working_sorted.insert((dist, neighbour_id), ef)
                        && state.working_sorted.len() >= ef
                    {
                        furthest_dist = state
                            .working_sorted
                            .top()
                            .map(|(d, _)| *d)
                            .unwrap_or(OrderedFloat(T::infinity()));
                    }
                }
            }
        }
    }

    /// Select neighbours using the heuristic from the HNSW paper (Algorithm 4)
    ///
    /// Applies the "keep closest and diverse" strategy: iteratively adds
    /// candidates that are closer to the query than to already-selected
    /// neighbours, promoting diversity whilst maintaining proximity.
    ///
    /// ### Params
    ///
    /// * `node` - Query node
    /// * `candidates` - Candidate neighbours with distances
    /// * `layer` - Layer being constructed
    /// * `state` - Search state with scratch buffers
    ///
    /// ### Returns
    ///
    /// Pruned neighbour list respecting max_neighbours constraint
    fn select_neighbours_heuristic(
        &self,
        node: usize,
        candidates: &[(OrderedFloat<T>, usize)],
        layer: u8,
        state: &mut SearchState<T>,
    ) -> Vec<(OrderedFloat<T>, usize)> {
        let max_neighbours = if layer == 0 { self.m * 2 } else { self.m };

        state.scratch_working.clear();

        for &(dist, id) in candidates {
            if id != node {
                state.scratch_working.push((dist, id));
            }
        }

        state.scratch_working.sort_unstable_by(|a, b| a.0.cmp(&b.0));

        let mut result = Vec::with_capacity(max_neighbours);

        for &(cand_dist, cand_id) in &state.scratch_working {
            if result.len() >= max_neighbours {
                break;
            }

            let is_good = !result.iter().any(|&(_, selected_id)| {
                let dist_to_selected = OrderedFloat(match self.metric {
                    Dist::Euclidean => self.euclidean_distance(cand_id, selected_id),
                    Dist::Cosine => self.cosine_distance(cand_id, selected_id),
                });
                dist_to_selected < cand_dist
            });

            if is_good {
                result.push((cand_dist, cand_id));
            }
        }

        result
    }

    ///////////
    // Query //
    ///////////

    /// Query the index for k nearest neighbours
    ///
    /// Performs hierarchical search starting from the entry point, greedily
    /// descending through upper layers, then conducting full search at base
    /// layer.
    ///
    /// ### Params
    ///
    /// * `query` - Query vector (must match index dimensionality)
    /// * `k` - Number of neighbours to return
    /// * `ef_search` - Size of candidate list (higher = better recall, slower)
    ///
    /// ### Returns
    ///
    /// Tuple of `(indices, distances)` sorted by distance (nearest first)
    #[inline]
    pub fn query(&self, query: &[T], k: usize, ef_search: usize) -> (Vec<usize>, Vec<T>) {
        assert_eq!(query.len(), self.dim);

        Self::with_search_state(|state_cell| {
            let mut state = state_cell.borrow_mut();
            state.reset(self.n);

            let query_norm = if self.metric == Dist::Cosine {
                query
                    .iter()
                    .map(|x| *x * *x)
                    .fold(T::zero(), |a, b| a + b)
                    .sqrt()
            } else {
                T::one()
            };

            // start from entry point, descend through upper layers
            let mut current_node = self.entry_point as usize;

            // greedy search through upper layers (max_layer down to 1)
            for layer in (1..=self.max_layer).rev() {
                current_node =
                    self.greedy_search_layer_query(query, query_norm, current_node, layer);
            }

            // full search at base layer
            state.reset(self.n);
            let mut candidates = self.search_layer_query(
                query,
                query_norm,
                0,
                current_node,
                ef_search.max(k),
                &mut state,
            );

            candidates.truncate(k);

            let (indices, distances): (Vec<usize>, Vec<T>) = candidates
                .into_iter()
                .map(|(OrderedFloat(d), id)| (id, d))
                .unzip();

            (indices, distances)
        })
    }

    /// Greedy search for query vector at a specific layer
    ///
    /// Performs hill-climbing to find the local minimum (closest node) at a
    /// given layer, used for descending through upper layers.
    ///
    /// ### Params
    ///
    /// * `query` - Query vector
    /// * `query_norm` - Pre-computed query norm (for Cosine)
    /// * `start_node` - Starting point
    /// * `layer` - Layer to search
    ///
    /// ### Returns
    ///
    /// Index of closest node found at this layer
    fn greedy_search_layer_query(
        &self,
        query: &[T],
        query_norm: T,
        start_node: usize,
        layer: u8,
    ) -> usize {
        let mut current = start_node;
        let mut current_dist = self.compute_query_distance(query, current, query_norm);

        loop {
            let mut changed = false;

            let neighbours = self.get_neighbours_at_layer(current, layer);

            for &neighbour in neighbours {
                if neighbour == u32::MAX {
                    break;
                }
                let neighbour = neighbour as usize;

                // Check if this neighbour exists at this layer
                if self.layer_assignments[neighbour] < layer {
                    continue;
                }

                let dist = self.compute_query_distance(query, neighbour, query_norm);

                if dist < current_dist {
                    current = neighbour;
                    current_dist = dist;
                    changed = true;
                }
            }

            if !changed {
                break;
            }
        }

        current
    }

    /// Full search at a layer for query
    ///
    /// Performs best-first search maintaining ef candidates, used for the
    /// final search at layer 0.
    ///
    /// ### Params
    ///
    /// * `query` - Query vector
    /// * `query_norm` - Pre-computed query norm (for Cosine)
    /// * `layer` - Layer to search
    /// * `entry_node` - Starting point
    /// * `ef` - Size of candidate list
    /// * `state` - Search state
    ///
    /// ### Returns
    ///
    /// Vector of (distance, id) pairs for closest candidates
    fn search_layer_query(
        &self,
        query: &[T],
        query_norm: T,
        layer: u8,
        entry_node: usize,
        ef: usize,
        state: &mut SearchState<T>,
    ) -> Vec<(OrderedFloat<T>, usize)> {
        state.working_sorted.clear();
        state.candidates.clear();

        let entry_dist = OrderedFloat(self.compute_query_distance(query, entry_node, query_norm));

        state.mark_visited(entry_node);
        state.candidates.push(Reverse((entry_dist, entry_node)));
        state.working_sorted.insert((entry_dist, entry_node), ef);

        let mut furthest_dist = entry_dist;

        while let Some(Reverse((current_dist, current_id))) = state.candidates.pop() {
            if current_dist > furthest_dist && state.working_sorted.len() >= ef {
                break;
            }

            let neighbours = self.get_neighbours_at_layer(current_id, layer);

            for &neighbour in neighbours {
                if neighbour == u32::MAX {
                    break;
                }
                let neighbour_id = neighbour as usize;

                if layer > 0 && self.layer_assignments[neighbour_id] < layer {
                    continue;
                }

                if state.is_visited(neighbour_id) {
                    continue;
                }
                state.mark_visited(neighbour_id);

                let dist =
                    OrderedFloat(self.compute_query_distance(query, neighbour_id, query_norm));

                if dist < furthest_dist || state.working_sorted.len() < ef {
                    state.candidates.push(Reverse((dist, neighbour_id)));

                    if state.working_sorted.insert((dist, neighbour_id), ef)
                        && state.working_sorted.len() >= ef
                    {
                        furthest_dist = state
                            .working_sorted
                            .top()
                            .map(|(d, _)| *d)
                            .unwrap_or(OrderedFloat(T::infinity()));
                    }
                }
            }
        }

        state.working_sorted.data().to_vec()
    }

    /// Query using a matrix row reference
    ///
    /// Optimised path for contiguous memory (stride == 1), otherwise copies
    /// to a temporary vector.
    ///
    /// ### Params
    ///
    /// * `query_row` - Row reference from a matrix
    /// * `k` - Number of neighbours to return
    /// * `ef_search` - Size of candidate list
    ///
    /// ### Returns
    ///
    /// Tuple of `(indices, distances)` sorted by distance (nearest first)
    #[inline]
    pub fn query_row(
        &self,
        query_row: RowRef<T>,
        k: usize,
        ef_search: usize,
    ) -> (Vec<usize>, Vec<T>) {
        if query_row.col_stride() == 1 {
            let slice =
                unsafe { std::slice::from_raw_parts(query_row.as_ptr(), query_row.ncols()) };
            return self.query(slice, k, ef_search);
        }

        let query_vec: Vec<T> = query_row.iter().cloned().collect();
        self.query(&query_vec, k, ef_search)
    }

    /// Generate kNN graph from vectors stored in the index
    ///
    /// Queries each vector in the index against itself to build a complete
    /// kNN graph in parallel.
    ///
    /// ### Params
    ///
    /// * `k` - Number of neighbours per vector
    /// * `ef_search` - Search budget
    /// * `return_dist` - Whether to return distances
    /// * `verbose` - Whether to print progress
    ///
    /// ### Returns
    ///
    /// Tuple of `(knn_indices, optional distances)` where each row corresponds
    /// to a vector in the index
    pub fn generate_knn(
        &self,
        k: usize,
        ef_search: usize,
        return_dist: bool,
        verbose: bool,
    ) -> (Vec<Vec<usize>>, Option<Vec<Vec<T>>>) {
        use std::sync::{
            atomic::{AtomicUsize, Ordering},
            Arc,
        };

        let counter = Arc::new(AtomicUsize::new(0));

        let results: Vec<(Vec<usize>, Vec<T>)> = (0..self.n)
            .into_par_iter()
            .map(|i| {
                let start = i * self.dim;
                let end = start + self.dim;
                let vec = &self.vectors_flat[start..end];

                if verbose {
                    let count = counter.fetch_add(1, Ordering::Relaxed) + 1;
                    if count.is_multiple_of(100_000) {
                        println!(
                            "  Processed {} / {} samples.",
                            count.separate_with_underscores(),
                            self.n.separate_with_underscores()
                        );
                    }
                }

                self.query(vec, k, ef_search)
            })
            .collect();

        if return_dist {
            let (indices, distances) = results.into_iter().unzip();
            (indices, Some(distances))
        } else {
            let indices: Vec<Vec<usize>> = results.into_iter().map(|(idx, _)| idx).collect();
            (indices, None)
        }
    }

    /// Compute distance between query and database vector
    ///
    /// ### Params
    ///
    /// * `query` - Query vector
    /// * `idx` - Database vector index
    /// * `query_norm` - Pre-computed query norm (for Cosine)
    ///
    /// ### Returns
    ///
    /// Distance according to the index's metric
    #[inline(always)]
    fn compute_query_distance(&self, query: &[T], idx: usize, query_norm: T) -> T {
        match self.metric {
            Dist::Euclidean => self.euclidean_distance_to_query(idx, query),
            Dist::Cosine => self.cosine_distance_to_query(idx, query, query_norm),
        }
    }

    /// Was extend candidates set to `true`
    ///
    /// ### Returns
    ///
    /// Boolean
    pub fn extend_candidates(&self) -> bool {
        self.extend_candidates
    }

    /// Returns the size of the index in bytes
    ///
    /// Accounts for all heap-allocated data structures.
    ///
    /// ### Returns
    ///
    /// Total memory usage in bytes
    pub fn memory_usage_bytes(&self) -> usize {
        std::mem::size_of_val(self)
            + self.vectors_flat.capacity() * std::mem::size_of::<T>()
            + self.norms.capacity() * std::mem::size_of::<T>()
            + self.layer_assignments.capacity() * std::mem::size_of::<u8>()
            + self.neighbours_flat.capacity() * std::mem::size_of::<u32>()
            + self.neighbour_offsets.capacity() * std::mem::size_of::<usize>()
    }
}

//////////////////////
// Validation trait //
//////////////////////

impl<T> KnnValidation<T> for HnswIndex<T>
where
    T: AnnSearchFloat,
    Self: HnswState<T>,
{
    fn query_for_validation(&self, query_vec: &[T], k: usize) -> (Vec<usize>, Vec<T>) {
        self.query(query_vec, k, 200)
    }

    fn n(&self) -> usize {
        self.n
    }

    fn metric(&self) -> Dist {
        self.metric
    }

    fn original_ids(&self) -> &[usize] {
        &self.original_ids
    }
}

///////////
// Tests //
///////////

#[cfg(test)]
mod tests {
    use super::*;
    use approx::assert_relative_eq;
    use faer::Mat;
    use std::sync::Arc;
    use std::thread;

    fn create_simple_matrix() -> Mat<f32> {
        let data = [
            1.0, 0.0, 0.0, // Point 0
            0.0, 1.0, 0.0, // Point 1
            0.0, 0.0, 1.0, // Point 2
            1.0, 1.0, 0.0, // Point 3
            1.0, 0.0, 1.0, // Point 4
        ];
        Mat::from_fn(5, 3, |i, j| data[i * 3 + j])
    }

    #[test]
    fn test_hnsw_build_euclidean() {
        let mat = create_simple_matrix();
        let _ = HnswIndex::<f32>::build(mat.as_ref(), 16, 100, "euclidean", 42, false);
    }

    #[test]
    fn test_hnsw_build_cosine() {
        let mat = create_simple_matrix();
        let _ = HnswIndex::<f32>::build(mat.as_ref(), 16, 100, "cosine", 42, false);
    }

    #[test]
    fn test_hnsw_query_finds_self() {
        let mat = create_simple_matrix();
        let index = HnswIndex::<f32>::build(mat.as_ref(), 16, 100, "euclidean", 42, false);

        let query = vec![1.0, 0.0, 0.0];
        let (indices, distances) = index.query(&query, 1, 50);

        assert_eq!(indices.len(), 1);
        assert_eq!(indices[0], 0);
        assert_relative_eq!(distances[0], 0.0, epsilon = 1e-5);
    }

    #[test]
    fn test_hnsw_query_euclidean() {
        let mat = create_simple_matrix();
        let index = HnswIndex::<f32>::build(mat.as_ref(), 16, 100, "euclidean", 42, false);

        let query = vec![1.0, 0.0, 0.0];
        let (indices, distances) = index.query(&query, 3, 50);

        assert_eq!(indices[0], 0);
        assert_relative_eq!(distances[0], 0.0, epsilon = 1e-5);

        for i in 1..distances.len() {
            assert!(distances[i] >= distances[i - 1]);
        }
    }

    #[test]
    fn test_hnsw_query_cosine() {
        let mat = create_simple_matrix();
        let index = HnswIndex::<f32>::build(mat.as_ref(), 16, 100, "cosine", 42, false);

        let query = vec![1.0, 0.0, 0.0];
        let (indices, distances) = index.query(&query, 3, 50);

        assert_eq!(indices[0], 0);
        assert_relative_eq!(distances[0], 0.0, epsilon = 1e-5);
    }

    #[test]
    fn test_hnsw_parallel_build() {
        let n = 2000;
        let dim = 10;
        let data: Vec<f32> = (0..n * dim).map(|i| i as f32).collect();
        let mat = Mat::from_fn(n, dim, |i, j| data[i * dim + j]);

        let index = HnswIndex::<f32>::build(mat.as_ref(), 16, 200, "euclidean", 42, false);

        let query: Vec<f32> = (0..dim).map(|_| 0.0).collect();
        let (indices, _) = index.query(&query, 5, 50);

        assert_eq!(indices.len(), 5);
    }

    #[test]
    fn test_hnsw_thread_safety() {
        let mat = create_simple_matrix();
        let index = Arc::new(HnswIndex::<f32>::build(
            mat.as_ref(),
            16,
            100,
            "euclidean",
            42,
            false,
        ));

        let mut handles = vec![];
        for _ in 0..4 {
            let index_clone = Arc::clone(&index);
            let handle = thread::spawn(move || {
                let query = vec![0.5, 0.5, 0.0];
                let (indices, _) = index_clone.query(&query, 3, 50);
                assert_eq!(indices.len(), 3);
            });
            handles.push(handle);
        }

        for handle in handles {
            handle.join().unwrap();
        }
    }

    #[test]
    fn test_hnsw_reproducibility() {
        let mat = create_simple_matrix();

        let index1 = HnswIndex::<f32>::build(mat.as_ref(), 16, 100, "euclidean", 42, false);
        let index2 = HnswIndex::<f32>::build(mat.as_ref(), 16, 100, "euclidean", 42, false);

        let query = vec![0.5, 0.5, 0.0];
        let (indices1, _) = index1.query(&query, 3, 50);
        let (indices2, _) = index2.query(&query, 3, 50);

        assert_eq!(indices1, indices2);
    }

    #[test]
    fn test_hnsw_recall() {
        let n = 20;
        let dim = 3;
        let mut data = Vec::with_capacity(n * dim);

        data.extend_from_slice(&[0.0, 0.0, 0.0]);

        for i in 1..n {
            let dist = i as f32 * 0.1;
            data.extend_from_slice(&[dist, 0.0, 0.0]);
        }

        let mat = Mat::from_fn(n, dim, |i, j| data[i * dim + j]);
        let index = HnswIndex::<f32>::build(mat.as_ref(), 16, 200, "euclidean", 42, false);

        let query = vec![0.0, 0.0, 0.0];
        let (indices, _) = index.query(&query, 5, 100);

        assert_eq!(indices[0], 0);

        let expected_neighbours: Vec<usize> = (0..5).collect();
        let found_correct = indices
            .iter()
            .filter(|&&idx| expected_neighbours.contains(&idx))
            .count();

        assert!(found_correct >= 4);
    }

    #[test]
    fn test_hnsw_multi_layer_storage() {
        // Verify that multi-layer storage is working correctly
        let n = 500;
        let dim = 10;

        let data: Vec<f32> = (0..n * dim).map(|i| (i as f32) * 0.01).collect();
        let mat = Mat::from_fn(n, dim, |i, j| data[i * dim + j]);

        let index = HnswIndex::<f32>::build(mat.as_ref(), 8, 100, "euclidean", 42, true);

        // Count nodes at each layer
        let mut layer_counts = vec![0usize; (index.max_layer + 1) as usize];
        for &level in &index.layer_assignments {
            for l in 0..=level {
                layer_counts[l as usize] += 1;
            }
        }

        // Layer 0 should have all nodes
        assert_eq!(layer_counts[0], n);

        // Higher layers should have fewer nodes (exponential decay)
        for l in 1..layer_counts.len() {
            assert!(
                layer_counts[l] < layer_counts[l - 1],
                "Layer {} should have fewer nodes than layer {}",
                l,
                l - 1
            );
        }

        // Verify queries work
        let query: Vec<f32> = (0..dim).map(|_| 0.5).collect();
        let (indices, _) = index.query(&query, 10, 50);
        assert_eq!(indices.len(), 10);
    }

    #[test]
    fn test_hnsw_varying_m_values() {
        let n = 500;
        let dim = 10;

        let data: Vec<f32> = (0..n * dim).map(|i| (i as f32) * 0.01).collect();
        let mat = Mat::from_fn(n, dim, |i, j| data[i * dim + j]);

        for m in [8, 12, 16, 20] {
            let index = HnswIndex::<f32>::build(mat.as_ref(), m, 200, "euclidean", 42, false);

            let query: Vec<f32> = (0..dim).map(|_| 0.5).collect();
            let (indices, _) = index.query(&query, 10, 50);

            assert_eq!(indices.len(), 10, "Failed with m = {}", m);
        }
    }
}