vicinity 0.11.1

Approximate nearest-neighbor search
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
//! DiskANN graph structure and Vamana construction.

use std::collections::HashSet;
use std::path::Path;
use std::sync::Arc;

use rand::seq::SliceRandom;
use rand::Rng;
use smallvec::SmallVec;

use crate::RetrieveError;
use durability::mmap::{AccessPattern, MappedFile};
use std::io::{BufWriter, Write};

/// DiskANN index for disk-based approximate nearest neighbor search.
///
/// Implements the Vamana graph construction algorithm:
/// 1. Random graph initialization
/// 2. Two-pass construction (alpha=1.0, then alpha>1.0)
/// 3. Robust pruning (alpha-pruning) to maintain long-range edges
pub struct DiskANNIndex {
    dimension: usize,
    params: DiskANNParams,
    built: bool,

    // Vectors stored in memory for build (would be on disk in prod)
    vectors: Vec<f32>,
    num_vectors: usize,

    /// External doc_ids aligned with internal indices
    doc_ids: Vec<u32>,

    // Graph structure (adjacency list)
    // Using SmallVec to optimize for typical degree M=16-32
    // Stored in memory for construction, serialized to disk later
    adj: Vec<SmallVec<[u32; 32]>>,

    // Entry point for search (medoid)
    start_node: u32,
}

impl DiskANNIndex {
    /// Vector dimensionality.
    #[inline]
    pub fn dimension(&self) -> usize {
        self.dimension
    }

    /// Number of vectors currently stored in the index.
    #[inline]
    pub fn num_vectors(&self) -> usize {
        self.num_vectors
    }

    /// Default search width (`ef_search`) configured for this index.
    #[inline]
    pub fn ef_search(&self) -> usize {
        self.params.ef_search
    }

    /// Approximate memory usage in bytes (vectors + adjacency lists).
    #[inline]
    pub fn size_bytes(&self) -> usize {
        self.vectors.len() * std::mem::size_of::<f32>()
            + crate::memory::smallvec_u32_bytes(&self.adj)
            + self.doc_ids.len() * std::mem::size_of::<u32>()
    }

    /// Save the built index to disk.
    ///
    /// Saves:
    /// - Graph structure (adjacency list) using DiskGraphWriter
    /// - Vectors (flat binary format)
    /// - Metadata (JSON)
    pub fn save(&self, output_dir: &Path) -> Result<(), RetrieveError> {
        if !self.built {
            return Err(RetrieveError::InvalidParameter(
                "cannot save unbuilt index".into(),
            ));
        }

        if !output_dir.exists() {
            std::fs::create_dir_all(output_dir)?;
        }

        // 1. Save Vectors (vectors.bin)
        let vectors_path = output_dir.join("vectors.bin");
        let mut vectors_file = BufWriter::new(std::fs::File::create(&vectors_path)?);
        for value in &self.vectors {
            vectors_file.write_all(&value.to_le_bytes())?;
        }
        vectors_file.flush()?;

        // 2. Save Graph (graph.index)
        let graph_path = output_dir.join("graph.index");
        // Convert persistence error to RetrieveError if needed, or handle unwraps
        // We'll define a simple wrapper
        let mut graph_writer = super::disk_io::DiskGraphWriter::new(
            &graph_path,
            self.num_vectors,
            self.params.m,
            self.start_node,
        )
        .map_err(|e| {
            RetrieveError::Io(Arc::new(std::io::Error::other(format!(
                "failed to create graph writer: {}",
                e
            ))))
        })?;

        for neighbors in &self.adj {
            graph_writer.write_adjacency(neighbors).map_err(|e| {
                RetrieveError::Io(Arc::new(std::io::Error::other(format!(
                    "failed to write adjacency: {}",
                    e
                ))))
            })?;
        }
        graph_writer.flush().map_err(|e| {
            RetrieveError::Io(Arc::new(std::io::Error::other(format!(
                "failed to flush graph: {}",
                e
            ))))
        })?;

        // 3. Save doc_ids (doc_ids.bin)
        let doc_ids_path = output_dir.join("doc_ids.bin");
        let mut doc_ids_file = BufWriter::new(std::fs::File::create(&doc_ids_path)?);
        for doc_id in &self.doc_ids {
            doc_ids_file.write_all(&doc_id.to_le_bytes())?;
        }
        doc_ids_file.flush()?;

        // 4. Save Metadata (metadata.json)
        let metadata_path = output_dir.join("metadata.json");
        let metadata = serde_json::json!({
            "dimension": self.dimension,
            "num_vectors": self.num_vectors,
            "start_node": self.start_node,
            "params": {
                "m": self.params.m,
                "ef_construction": self.params.ef_construction,
                "alpha": self.params.alpha,
                "ef_search": self.params.ef_search
            }
        });
        let metadata_file = std::fs::File::create(&metadata_path)?;
        serde_json::to_writer_pretty(metadata_file, &metadata)
            .map_err(|e| RetrieveError::Serialization(e.to_string()))?; // Need to add Serialization error to RetrieveError

        Ok(())
    }

    /// Save an experimental page-co-located node layout to `nodes.page`.
    ///
    /// The normal [`Self::save`] format stays unchanged. This sidecar stores
    /// each node's external id, full vector, and padded neighbor list in one
    /// page-aligned record so file-backed search can evaluate graph/vector
    /// co-location independently of the legacy `graph.index` plus `vectors.bin`
    /// layout.
    #[cfg(any(test, feature = "benchmark"))]
    #[doc(hidden)]
    pub fn save_page_layout(&self, output_dir: &Path) -> Result<(), RetrieveError> {
        if !self.built {
            return Err(RetrieveError::InvalidParameter(
                "cannot save unbuilt index".into(),
            ));
        }
        if !output_dir.exists() {
            std::fs::create_dir_all(output_dir)?;
        }

        let page_path = output_dir.join("nodes.page");
        let mut writer = super::page_io::DiskPageWriter::create(
            &page_path,
            self.num_vectors,
            self.dimension,
            self.params.m,
            self.start_node,
        )?;
        for (idx, neighbors) in self.adj.iter().enumerate() {
            let start = idx * self.dimension;
            let end = start + self.dimension;
            writer.write_node(self.doc_ids[idx], &self.vectors[start..end], neighbors)?;
        }
        writer.flush()?;
        Ok(())
    }
}

/// Disk-based searcher for DiskANN.
///
/// Operates on persisted index without loading the full graph into RAM.
pub struct DiskANNSearcher {
    dimension: usize,
    start_node: u32,

    // Components
    graph_reader: super::disk_io::DiskGraphReader,
    vectors: VectorStorage,
    /// External doc_ids aligned with internal indices (loaded from doc_ids.bin).
    doc_ids: Vec<u32>,
    /// Reusable byte buffer for vector reads (avoids per-read allocation).
    read_buf: Vec<u8>,
    /// Reusable f32 buffer for parsed vectors.
    vec_buf: Vec<f32>,
    /// Dense generation-counter visited set for search.
    visited_marks: Vec<u8>,
    visited_generation: u8,
}

enum VectorStorage {
    File(std::fs::File),
    Mmap(Box<MappedFile>),
}

/// Per-query I/O diagnostics from [`DiskANNSearcher`].
///
/// These are logical bytes requested by the current file-backed implementation,
/// not operating-system page-cache misses. They are intended for comparing
/// graph layout, vector layout, and cache changes under the same workload.
#[non_exhaustive]
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub struct DiskANNSearchDiagnostics {
    /// Search width used after applying the query `k` and index default.
    pub ef_search: usize,
    /// Unique internal nodes whose vector distance was evaluated.
    pub visited_nodes: usize,
    /// Number of graph adjacency records read from `graph.index`.
    pub graph_reads: usize,
    /// Number of vector records read from `vectors.bin`.
    pub vector_reads: usize,
    /// Logical bytes read from graph adjacency records.
    pub graph_bytes: usize,
    /// Logical bytes read from vector records.
    pub vector_bytes: usize,
    /// Number of candidates retained before truncating to `k`.
    pub retained_candidates: usize,
    /// Number of page-co-located node records read from `nodes.page`.
    pub page_reads: usize,
    /// Logical bytes read from page-co-located node records.
    pub page_bytes: usize,
}

impl DiskANNSearcher {
    /// Load searcher from index directory.
    pub fn load(index_dir: &Path) -> Result<Self, RetrieveError> {
        Self::load_with_storage(index_dir, false)
    }

    /// Load searcher from index directory using read-only memory maps for graph
    /// and vector data.
    pub fn load_mmap(index_dir: &Path) -> Result<Self, RetrieveError> {
        Self::load_with_storage(index_dir, true)
    }

    fn load_with_storage(index_dir: &Path, mmap: bool) -> Result<Self, RetrieveError> {
        // 1. Load Metadata
        let metadata_path = index_dir.join("metadata.json");
        let metadata_file = std::fs::File::open(&metadata_path)?;
        let metadata: serde_json::Value = serde_json::from_reader(metadata_file)
            .map_err(|e| RetrieveError::Serialization(e.to_string()))?;

        let dimension = metadata["dimension"]
            .as_u64()
            .ok_or(RetrieveError::FormatError("Missing dimension".to_string()))?
            as usize;
        let num_vectors = metadata["num_vectors"]
            .as_u64()
            .ok_or(RetrieveError::FormatError(
                "Missing num_vectors".to_string(),
            ))? as usize;
        let start_node = metadata["start_node"]
            .as_u64()
            .ok_or(RetrieveError::FormatError("Missing start_node".to_string()))?
            as u32;

        // 2. Open Graph
        let graph_path = index_dir.join("graph.index");
        let graph_reader_result = if mmap {
            super::disk_io::DiskGraphReader::open_mmap(&graph_path)
        } else {
            super::disk_io::DiskGraphReader::open(&graph_path)
        };
        let graph_reader = graph_reader_result.map_err(|e| {
            RetrieveError::Io(Arc::new(std::io::Error::other(format!(
                "failed to open graph: {}",
                e
            ))))
        })?;

        // 3. Open Vectors
        let vectors_path = index_dir.join("vectors.bin");
        let vectors = if mmap {
            VectorStorage::Mmap(Box::new(
                MappedFile::open(&vectors_path, AccessPattern::Random).map_err(|e| {
                    RetrieveError::Io(Arc::new(std::io::Error::other(format!(
                        "failed to mmap vectors: {e}"
                    ))))
                })?,
            ))
        } else {
            VectorStorage::File(std::fs::File::open(&vectors_path)?)
        };

        // 4. Load doc_ids
        let doc_ids_path = index_dir.join("doc_ids.bin");
        let doc_ids = if doc_ids_path.exists() {
            let bytes = std::fs::read(&doc_ids_path)?;
            if bytes.len() != num_vectors * 4 {
                return Err(RetrieveError::FormatError(format!(
                    "doc_ids.bin size mismatch: expected {} bytes, got {}",
                    num_vectors * 4,
                    bytes.len()
                )));
            }
            bytes
                .chunks_exact(4)
                .map(|c| u32::from_le_bytes([c[0], c[1], c[2], c[3]]))
                .collect()
        } else {
            // Backwards compat: if no doc_ids file, assume identity mapping
            (0..num_vectors as u32).collect()
        };

        let graph_nodes = graph_reader.num_nodes;

        Ok(Self {
            read_buf: vec![0u8; dimension * 4],
            vec_buf: vec![0.0f32; dimension],
            visited_marks: vec![0; graph_nodes],
            visited_generation: 1,
            dimension,
            start_node,
            graph_reader,
            doc_ids,
            vectors,
        })
    }

    /// Search for k nearest neighbors using disk-based graph.
    pub fn search(
        &mut self,
        query: &[f32],
        k: usize,
        ef_search: usize,
    ) -> Result<Vec<(u32, f32)>, RetrieveError> {
        self.search_with_diagnostics(query, k, ef_search)
            .map(|(results, _)| results)
    }

    /// Search and return logical disk-read diagnostics for the query.
    pub fn search_with_diagnostics(
        &mut self,
        query: &[f32],
        k: usize,
        ef_search: usize,
    ) -> Result<(Vec<(u32, f32)>, DiskANNSearchDiagnostics), RetrieveError> {
        if query.len() != self.dimension {
            return Err(RetrieveError::DimensionMismatch {
                query_dim: query.len(),
                doc_dim: self.dimension,
            });
        }

        let ef = ef_search.max(k);
        let mut diagnostics = DiskANNSearchDiagnostics {
            ef_search: ef,
            ..DiskANNSearchDiagnostics::default()
        };

        use std::cmp::Reverse;
        use std::collections::BinaryHeap;
        self.reset_visited();
        let mut visited_count = 0usize;
        let mut frontier: BinaryHeap<Reverse<Candidate>> = BinaryHeap::with_capacity(ef * 2);
        let mut results: BinaryHeap<Candidate> = BinaryHeap::with_capacity(ef + 1);

        // Fetch start node vector
        let start_dist = {
            let v = self.read_vector(self.start_node)?;
            diagnostics.vector_reads += 1;
            crate::simd::l2_distance_squared(query, v)
        };

        frontier.push(Reverse(Candidate {
            id: self.start_node,
            dist: start_dist,
        }));
        results.push(Candidate {
            id: self.start_node,
            dist: start_dist,
        });
        self.insert_visited(self.start_node)?;
        visited_count += 1;

        while let Some(Reverse(current)) = frontier.pop() {
            if results.len() >= ef {
                if let Some(worst) = results.peek() {
                    if current.dist >= worst.dist {
                        break;
                    }
                }
            }

            // Fetch neighbors from disk
            // TODO: Cache hot nodes (top levels of Vamana) in RAM
            let neighbors = self.graph_reader.get_neighbors(current.id)?;
            diagnostics.graph_reads += 1;
            diagnostics.graph_bytes += 4 + neighbors.len() * std::mem::size_of::<u32>();

            for neighbor in neighbors {
                if !self.insert_visited(neighbor)? {
                    continue;
                }
                visited_count += 1;

                // Fetch neighbor vector from disk (zero-alloc via reusable buffer)
                let dist = {
                    let v = self.read_vector(neighbor)?;
                    diagnostics.vector_reads += 1;
                    crate::simd::l2_distance_squared(query, v)
                };

                frontier.push(Reverse(Candidate { id: neighbor, dist }));
                results.push(Candidate { id: neighbor, dist });
                if results.len() > ef {
                    results.pop();
                }
            }
        }

        diagnostics.visited_nodes = visited_count;
        diagnostics.retained_candidates = results.len();
        diagnostics.vector_bytes =
            diagnostics.vector_reads * self.dimension * std::mem::size_of::<f32>();

        let mut result_vec = results.into_vec();
        result_vec.sort_unstable_by(|a, b| a.dist.total_cmp(&b.dist));
        let results = result_vec
            .into_iter()
            .filter_map(|c| {
                let doc_id = self.doc_ids.get(c.id as usize).copied()?;
                Some((doc_id, c.dist))
            })
            .take(k)
            .collect();

        Ok((results, diagnostics))
    }

    fn reset_visited(&mut self) {
        if let Some(next) = self.visited_generation.checked_add(1) {
            self.visited_generation = next;
        } else {
            self.visited_marks.fill(0);
            self.visited_generation = 1;
        }
    }

    fn insert_visited(&mut self, node_id: u32) -> Result<bool, RetrieveError> {
        let idx = node_id as usize;
        let mark = self
            .visited_marks
            .get_mut(idx)
            .ok_or(RetrieveError::OutOfBounds(idx))?;
        if *mark == self.visited_generation {
            Ok(false)
        } else {
            *mark = self.visited_generation;
            Ok(true)
        }
    }

    /// Read a vector from disk into the reusable buffer, returning a slice.
    fn read_vector(&mut self, idx: u32) -> Result<&[f32], RetrieveError> {
        let offset = idx as usize * self.dimension * 4;
        match &mut self.vectors {
            VectorStorage::File(file) => {
                crate::file_io::read_exact_at(file, offset as u64, &mut self.read_buf)?;
                Self::decode_vector_bytes(&self.read_buf, &mut self.vec_buf);
            }
            VectorStorage::Mmap(mapped) => {
                let end = offset
                    .checked_add(self.dimension * 4)
                    .ok_or_else(|| RetrieveError::FormatError("vector offset overflow".into()))?;
                let bytes = mapped.as_slice();
                if end > bytes.len() {
                    return Err(RetrieveError::OutOfBounds(idx as usize));
                }
                Self::decode_vector_bytes(&bytes[offset..end], &mut self.vec_buf);
            }
        }

        Ok(&self.vec_buf)
    }

    fn decode_vector_bytes(bytes: &[u8], out: &mut [f32]) {
        for (value, chunk) in out.iter_mut().zip(bytes.chunks_exact(4)) {
            *value = f32::from_le_bytes([chunk[0], chunk[1], chunk[2], chunk[3]]);
        }
    }
}

/// DiskANN parameters.
#[derive(Clone, Debug)]
pub struct DiskANNParams {
    /// Maximum connections per node (R in paper)
    pub m: usize,

    /// Beam width for construction search (L in paper)
    pub ef_construction: usize,

    /// Alpha parameter for pruning (typically 1.2 - 1.4)
    pub alpha: f32,

    /// Search width
    pub ef_search: usize,

    /// Optional RNG seed for reproducible construction.
    /// When `None` (default), uses thread-local RNG.
    pub seed: Option<u64>,
}

impl Default for DiskANNParams {
    fn default() -> Self {
        Self {
            m: 32,
            ef_construction: 100,
            alpha: 1.2,
            ef_search: 100,
            seed: None,
        }
    }
}

/// Candidate for priority queues
#[derive(Clone, Copy, PartialEq)]
struct Candidate {
    id: u32,
    dist: f32,
}

impl Eq for Candidate {}

impl Ord for Candidate {
    fn cmp(&self, other: &Self) -> std::cmp::Ordering {
        // Max-heap: larger distance = higher priority (for results pruning)
        // Use total_cmp for IEEE 754 total ordering (NaN-safe, NaN > all)
        self.dist.total_cmp(&other.dist)
    }
}

impl PartialOrd for Candidate {
    fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
        Some(self.cmp(other))
    }
}

impl DiskANNIndex {
    /// Create a new DiskANN index.
    pub fn new(dimension: usize, params: DiskANNParams) -> Result<Self, RetrieveError> {
        if dimension == 0 {
            return Err(RetrieveError::InvalidParameter(
                "dimension must be greater than 0".to_string(),
            ));
        }

        Ok(Self {
            dimension,
            params,
            built: false,
            vectors: Vec::new(),
            num_vectors: 0,
            doc_ids: Vec::new(),
            adj: Vec::new(),
            start_node: 0,
        })
    }

    /// Add a vector to the index.
    pub fn add(&mut self, doc_id: u32, vector: Vec<f32>) -> Result<(), RetrieveError> {
        self.add_slice(doc_id, &vector)
    }

    /// Add a vector to the index from a borrowed slice.
    ///
    /// Notes:
    /// - The index stores vectors internally, so it must copy the slice into its own storage.
    /// - `doc_id` is stored and mapped back in search results.
    pub fn add_slice(&mut self, doc_id: u32, vector: &[f32]) -> Result<(), RetrieveError> {
        if self.built {
            return Err(RetrieveError::InvalidParameter(
                "cannot add vectors after index is built".into(),
            ));
        }

        if vector.len() != self.dimension {
            return Err(RetrieveError::DimensionMismatch {
                query_dim: vector.len(),
                doc_dim: self.dimension,
            });
        }

        self.vectors.extend_from_slice(vector);
        self.doc_ids.push(doc_id);
        self.num_vectors += 1;
        self.adj.push(SmallVec::new());
        Ok(())
    }

    /// Build the index using Vamana construction.
    pub fn build(&mut self) -> Result<(), RetrieveError> {
        if self.built {
            return Ok(());
        }

        if self.num_vectors == 0 {
            return Err(RetrieveError::EmptyIndex);
        }

        // 1. Initialize random graph (R-regular)
        self.initialize_random_graph();

        // 2. Compute medoid as start node
        self.start_node = self.compute_medoid();

        // 3. First pass: alpha = 1.0 (approximates RNG)
        // Helps build initial connectivity
        self.vamana_pass(1.0)?;

        // 4. Second pass: alpha = params.alpha (e.g. 1.2)
        // Adds long-range edges for small-world navigation
        self.vamana_pass(self.params.alpha)?;

        self.built = true;
        self.reorder_for_locality();
        Ok(())
    }

    /// Build using parallel batched construction (requires `parallel` feature).
    ///
    /// Same two-pass Vamana construction but parallelizes the search phase
    /// within each pass using rayon. Recommended `batch_size`: 4096.
    #[cfg(feature = "parallel")]
    pub fn build_parallel(&mut self, batch_size: usize) -> Result<(), RetrieveError> {
        if self.built {
            return Ok(());
        }
        if self.num_vectors == 0 {
            return Err(RetrieveError::EmptyIndex);
        }

        self.initialize_random_graph();
        self.start_node = self.compute_medoid();
        self.vamana_pass_parallel(1.0, batch_size)?;
        self.vamana_pass_parallel(self.params.alpha, batch_size)?;
        self.built = true;
        self.reorder_for_locality();
        Ok(())
    }

    /// Parallel Vamana pass: batch search + sequential commit + parallel prune.
    #[cfg(feature = "parallel")]
    fn vamana_pass_parallel(&mut self, alpha: f32, batch_size: usize) -> Result<(), RetrieveError> {
        use rayon::prelude::*;

        let mut nodes: Vec<u32> = (0..self.num_vectors as u32).collect();
        {
            use rand::SeedableRng;
            let mut rng: Box<dyn rand::RngCore> = match self.params.seed {
                Some(s) => Box::new(rand::rngs::StdRng::seed_from_u64(s.wrapping_add(1))),
                None => Box::new(rand::rng()),
            };
            nodes.shuffle(&mut *rng);
        }

        let m = self.params.m;
        let ef_c = self.params.ef_construction;
        let start_node = self.start_node;
        let batch_sz = batch_size.max(1);

        for batch_start in (0..nodes.len()).step_by(batch_sz) {
            let batch_end = (batch_start + batch_sz).min(nodes.len());
            let batch = &nodes[batch_start..batch_end];

            // Phase 1: parallel search + prune (read-only on graph).
            let results: Vec<(u32, Vec<u32>)> = batch
                .par_iter()
                .map(|&i| {
                    let query_vec = self.get_vector(i);
                    let (visited, _) = self.greedy_search(query_vec, ef_c, start_node);
                    let new_neighbors = self.robust_prune(i, &visited, alpha, m);
                    (i, new_neighbors)
                })
                .collect();

            // Phase 2: sequential edge commit (forward + reverse, no reverse prune).
            for (i, new_neighbors) in &results {
                let i = *i;
                self.adj[i as usize] = new_neighbors.iter().copied().collect();
                for &j in new_neighbors {
                    if !self.adj[j as usize].contains(&i) {
                        self.adj[j as usize].push(i);
                    }
                }
            }

            // Phase 3: parallel prune of overweight nodes.
            let overweight: Vec<u32> = (0..self.num_vectors as u32)
                .filter(|&id| self.adj[id as usize].len() > m)
                .collect();

            if !overweight.is_empty() {
                let pruned: Vec<(u32, Vec<u32>)> = overweight
                    .par_iter()
                    .map(|&id| {
                        let candidates: Vec<u32> = self.adj[id as usize].to_vec();
                        let pruned = self.robust_prune(id, &candidates, alpha, m);
                        (id, pruned)
                    })
                    .collect();
                for (id, new_adj) in pruned {
                    self.adj[id as usize] = new_adj.into_iter().collect();
                }
            }
        }

        Ok(())
    }

    /// BFS-order graph reordering for cache-friendly traversal.
    fn reorder_for_locality(&mut self) {
        if self.num_vectors <= 1 {
            return;
        }
        let n = self.num_vectors;
        let dim = self.dimension;
        let ep = self.start_node as usize;

        let mut new_order: Vec<u32> = Vec::with_capacity(n);
        let mut visited = vec![false; n];
        let mut queue = std::collections::VecDeque::with_capacity(n);
        queue.push_back(ep);
        visited[ep] = true;

        while let Some(node) = queue.pop_front() {
            new_order.push(node as u32);
            for &nb in &self.adj[node] {
                let nb = nb as usize;
                if nb < n && !visited[nb] {
                    visited[nb] = true;
                    queue.push_back(nb);
                }
            }
        }
        for (i, &v) in visited.iter().enumerate() {
            if !v {
                new_order.push(i as u32);
            }
        }

        let mut old_to_new = vec![0u32; n];
        for (new_idx, &old_idx) in new_order.iter().enumerate() {
            old_to_new[old_idx as usize] = new_idx as u32;
        }

        // Permute vectors
        let mut new_vectors = vec![0.0f32; self.vectors.len()];
        for (new_idx, &old_idx) in new_order.iter().enumerate() {
            let src = old_idx as usize * dim;
            let dst = new_idx * dim;
            new_vectors[dst..dst + dim].copy_from_slice(&self.vectors[src..src + dim]);
        }
        self.vectors = new_vectors;

        // Permute doc_ids
        let new_doc_ids: Vec<u32> = new_order
            .iter()
            .map(|&old| self.doc_ids[old as usize])
            .collect();
        self.doc_ids = new_doc_ids;

        // Permute and remap adjacency lists
        let mut new_adj: Vec<SmallVec<[u32; 32]>> = vec![SmallVec::new(); n];
        for (old_idx, nbs) in self.adj.iter().enumerate() {
            if old_idx < n {
                let new_idx = old_to_new[old_idx] as usize;
                new_adj[new_idx] = nbs.iter().map(|&nb| old_to_new[nb as usize]).collect();
            }
        }
        self.adj = new_adj;

        // Update start node
        self.start_node = old_to_new[ep];
    }

    /// Initialize random R-regular graph.
    fn initialize_random_graph(&mut self) {
        use rand::SeedableRng;
        let mut rng: Box<dyn rand::RngCore> = match self.params.seed {
            Some(s) => Box::new(rand::rngs::StdRng::seed_from_u64(s)),
            None => Box::new(rand::rng()),
        };
        let r = self.params.m;

        for i in 0..self.num_vectors {
            // Pick R random neighbors
            let mut neighbors: HashSet<u32> = HashSet::with_capacity(r);
            while neighbors.len() < r && neighbors.len() < self.num_vectors - 1 {
                let n = rng.random_range(0..self.num_vectors) as u32;
                if n != i as u32 {
                    neighbors.insert(n);
                }
            }
            self.adj[i] = neighbors.into_iter().collect();
        }
    }

    /// Compute geometric medoid of the dataset.
    fn compute_medoid(&self) -> u32 {
        let n = self.num_vectors;
        let dim = self.dimension;

        // Compute centroid of all vectors.
        let mut centroid = vec![0.0f32; dim];
        for i in 0..n {
            let v = self.get_vector(i as u32);
            for (c, &x) in centroid.iter_mut().zip(v.iter()) {
                *c += x;
            }
        }
        let inv_n = 1.0 / n as f32;
        for c in centroid.iter_mut() {
            *c *= inv_n;
        }

        // Find the vector closest to the centroid.
        let mut best_id = 0u32;
        let mut best_dist = f32::INFINITY;
        for i in 0..n {
            let d = self.dist(&centroid, self.get_vector(i as u32));
            if d < best_dist {
                best_dist = d;
                best_id = i as u32;
            }
        }
        best_id
    }

    /// Single pass of Vamana construction.
    fn vamana_pass(&mut self, alpha: f32) -> Result<(), RetrieveError> {
        // Random permutation of nodes
        let mut nodes: Vec<u32> = (0..self.num_vectors as u32).collect();
        {
            use rand::SeedableRng;
            let mut rng: Box<dyn rand::RngCore> = match self.params.seed {
                Some(s) => Box::new(rand::rngs::StdRng::seed_from_u64(s.wrapping_add(1))),
                None => Box::new(rand::rng()),
            };
            nodes.shuffle(&mut *rng);
        }

        for &i in &nodes {
            let query_vec = self.get_vector(i);

            // Greedy search to find candidates
            // We use the graph as it exists so far
            let (visited, _) =
                self.greedy_search(query_vec, self.params.ef_construction, self.start_node);

            // Candidate set V = visited nodes
            // Run RobustPrune on V to find new neighbors for i
            let new_neighbors = self.robust_prune(i, &visited, alpha, self.params.m);

            // Update graph: add directed edges from i to its new neighbors.
            let neighbors_for_i = new_neighbors.clone();
            self.adj[i as usize] = new_neighbors.into_iter().collect();

            // Add reverse edges: for each neighbor j of i, add i as a candidate
            // for j's neighbor list and re-prune j to maintain max degree.
            for j in neighbors_for_i {
                if !self.adj[j as usize].contains(&i) {
                    // Collect j's current neighbors plus i as candidates.
                    let mut rev_candidates: Vec<u32> = self.adj[j as usize].to_vec();
                    rev_candidates.push(i);
                    let pruned = self.robust_prune(j, &rev_candidates, alpha, self.params.m);
                    self.adj[j as usize] = pruned.into_iter().collect();
                }
            }
        }

        Ok(())
    }

    /// RobustPrune (Alpha-Pruning) algorithm.
    ///
    /// Selects neighbors that are close to `node`, but also "orthogonal" to each other
    /// to ensure good coverage of the space.
    fn robust_prune(
        &self,
        node: u32,
        candidates: &[u32],
        alpha: f32,
        max_degree: usize,
    ) -> Vec<u32> {
        let node_vec = self.get_vector(node);

        // 1. Calculate distances to all candidates
        let candidate_set: HashSet<u32> = candidates.iter().copied().collect();
        let mut candidates_with_dist: Vec<Candidate> = candidates
            .iter()
            .filter(|&&c| c != node)
            .map(|&c| Candidate {
                id: c,
                dist: self.dist(node_vec, self.get_vector(c)),
            })
            .collect();

        // Add current neighbors to candidate set (to refine them)
        for &neighbor in &self.adj[node as usize] {
            if !candidate_set.contains(&neighbor) {
                candidates_with_dist.push(Candidate {
                    id: neighbor,
                    dist: self.dist(node_vec, self.get_vector(neighbor)),
                });
            }
        }

        // 2. Sort by distance (ascending)
        candidates_with_dist.sort_unstable_by(|a, b| a.dist.total_cmp(&b.dist));

        // 3. Prune
        let mut new_neighbors: Vec<u32> = Vec::with_capacity(max_degree);

        // Remove duplicates if any
        candidates_with_dist.dedup_by(|a, b| a.id == b.id);

        for cand in candidates_with_dist {
            if new_neighbors.len() >= max_degree {
                break;
            }

            // Check if cand is reachable from any existing neighbor with shorter path
            // alpha parameter controls "shorter": distance(p*, p') <= alpha * distance(p, p')
            let mut prune = false;
            let cand_vec = self.get_vector(cand.id);

            for &existing_neighbor in &new_neighbors {
                let dist_existing_cand = self.dist(self.get_vector(existing_neighbor), cand_vec);

                // If existing neighbor is closer to candidate than node is (scaled by alpha),
                // then candidate is redundant (we can reach it via existing neighbor).
                if alpha * dist_existing_cand <= cand.dist {
                    prune = true;
                    break;
                }
            }

            if !prune {
                new_neighbors.push(cand.id);
            }
        }

        new_neighbors
    }

    /// Greedy search for construction and querying (DiskANN beam search).
    ///
    /// Maintains:
    /// - `candidates`: min-heap of unexplored nodes, ordered by distance to query
    /// - `results`: best `l_size` nodes found so far (max-heap so we can trim the worst)
    ///
    /// Returns (visited_nodes, nearest_candidates_sorted_asc).
    fn greedy_search(
        &self,
        query: &[f32],
        l_size: usize,
        start_node: u32,
    ) -> (Vec<u32>, Vec<Candidate>) {
        use std::cmp::Reverse;
        use std::collections::BinaryHeap;

        let dist_fn = self.dist_fn();
        let num_vectors = self.num_vectors;

        // Dense generation-counter visited set (thread-local, O(1) ops, O(1) clear).
        thread_local! {
            static VISITED: std::cell::RefCell<(Vec<u8>, u8)> =
                const { std::cell::RefCell::new((Vec::new(), 1)) };
        }

        VISITED.with(|cell| {
            let (marks, gen) = &mut *cell.borrow_mut();
            if marks.len() < num_vectors {
                marks.resize(num_vectors, 0);
            }
            if let Some(next) = gen.checked_add(1) {
                *gen = next;
            } else {
                marks.fill(0);
                *gen = 1;
            }
            let generation = *gen;

            let mut visited_insert = |id: u32| -> bool {
                let idx = id as usize;
                if idx < marks.len() && marks[idx] != generation {
                    marks[idx] = generation;
                    true
                } else {
                    idx >= marks.len()
                }
            };

            let mut frontier: BinaryHeap<Reverse<Candidate>> =
                BinaryHeap::with_capacity(l_size * 2);
            let mut results: BinaryHeap<Candidate> = BinaryHeap::with_capacity(l_size + 1);

            let start_dist = dist_fn(query, self.get_vector(start_node));
            visited_insert(start_node);
            frontier.push(Reverse(Candidate {
                id: start_node,
                dist: start_dist,
            }));
            results.push(Candidate {
                id: start_node,
                dist: start_dist,
            });

            while let Some(Reverse(current)) = frontier.pop() {
                if results.len() >= l_size {
                    if let Some(worst) = results.peek() {
                        if current.dist >= worst.dist {
                            break;
                        }
                    }
                }

                let neighbors = &self.adj[current.id as usize];
                for (i, &neighbor) in neighbors.iter().enumerate() {
                    // Prefetch next neighbor's vector
                    if i + 1 < neighbors.len() {
                        let next_id = neighbors[i + 1] as usize;
                        if next_id < num_vectors {
                            let ptr = self.vectors.as_ptr().wrapping_add(next_id * self.dimension);
                            crate::prefetch::prefetch_read_data(ptr);
                        }
                    }

                    if !visited_insert(neighbor) {
                        continue;
                    }

                    let dist = dist_fn(query, self.get_vector(neighbor));
                    frontier.push(Reverse(Candidate { id: neighbor, dist }));
                    results.push(Candidate { id: neighbor, dist });

                    if results.len() > l_size {
                        results.pop();
                    }
                }
            }

            let mut result_vec: Vec<Candidate> = results.into_vec();
            result_vec.sort_unstable_by(|a, b| a.dist.total_cmp(&b.dist));

            let ids: Vec<u32> = result_vec.iter().map(|c| c.id).collect();
            (ids, result_vec)
        })
    }

    /// Search for k nearest neighbors.
    pub fn search(
        &self,
        query: &[f32],
        k: usize,
        ef_search: usize,
    ) -> Result<Vec<(u32, f32)>, RetrieveError> {
        if !self.built {
            return Err(RetrieveError::InvalidParameter(
                "index must be built before search".into(),
            ));
        }

        if query.len() != self.dimension {
            return Err(RetrieveError::DimensionMismatch {
                query_dim: query.len(),
                doc_dim: self.dimension,
            });
        }

        let ef = ef_search.max(k);
        let (_, candidates) = self.greedy_search(query, ef, self.start_node);

        // Return top k, mapping internal indices back to external doc_ids
        let result = candidates
            .into_iter()
            .take(k)
            .filter_map(|c| {
                let doc_id = self.doc_ids.get(c.id as usize).copied()?;
                Some((doc_id, c.dist))
            })
            .collect();

        Ok(result)
    }

    #[inline]
    fn get_vector(&self, idx: u32) -> &[f32] {
        let start = idx as usize * self.dimension;
        &self.vectors[start..start + self.dimension]
    }

    // Euclidean distance (squared), using SIMD when available.
    #[inline]
    fn dist(&self, a: &[f32], b: &[f32]) -> f32 {
        crate::simd::l2_distance_squared(a, b)
    }

    /// Return a plain function pointer for distance computation.
    #[inline(always)]
    fn dist_fn(&self) -> fn(&[f32], &[f32]) -> f32 {
        crate::simd::l2_distance_squared
    }
}

#[cfg(test)]
#[allow(clippy::unwrap_used, clippy::expect_used)]
mod tests {
    use super::*;
    use crate::error::RetrieveError;

    #[test]
    fn test_create_index() {
        let index = DiskANNIndex::new(4, DiskANNParams::default())
            .expect("DiskANNIndex::new must succeed for valid params");
        assert_eq!(index.dimension(), 4);
        assert_eq!(index.num_vectors(), 0);
    }

    #[test]
    fn size_bytes_counts_inline_adjacency_storage() {
        let mut index = DiskANNIndex::new(4, DiskANNParams::default()).unwrap();
        for i in 0..3u32 {
            index.add(i, vec![i as f32, 0.0, 1.0, 0.0]).unwrap();
        }

        let vectors_bytes = index.vectors.len() * std::mem::size_of::<f32>();
        let doc_ids_bytes = index.doc_ids.len() * std::mem::size_of::<u32>();
        let inline_adj_bytes = index.adj.len() * std::mem::size_of::<SmallVec<[u32; 32]>>();

        assert_eq!(
            index.size_bytes(),
            vectors_bytes + doc_ids_bytes + inline_adj_bytes
        );
    }

    #[test]
    fn test_add_and_search() {
        let params = DiskANNParams {
            m: 4,
            ef_construction: 20,
            alpha: 1.2,
            ef_search: 20,
            seed: None,
            ..DiskANNParams::default()
        };
        let mut index = DiskANNIndex::new(4, params).unwrap();

        // Add 10 vectors
        for i in 0..10u32 {
            let v = vec![i as f32, (i as f32) * 0.5, 1.0, 0.0];
            index.add(i, v).unwrap();
        }

        index.build().unwrap();

        let query = vec![0.0, 0.0, 1.0, 0.0];
        let results = index.search(&query, 3, 20).unwrap();

        assert!(!results.is_empty());
        assert!(results.len() <= 3);
        // The closest vector should be doc_id 0 (vector [0, 0, 1, 0])
        assert_eq!(results[0].0, 0);
    }

    #[test]
    fn test_zero_dimension_error() {
        let result = DiskANNIndex::new(0, DiskANNParams::default());
        match result {
            Err(RetrieveError::InvalidParameter(_)) => {}
            Err(other) => panic!("Expected InvalidParameter, got {:?}", other),
            Ok(_) => panic!("Expected error for dimension 0"),
        }
    }

    #[test]
    fn test_max_degree_enforced() {
        let m = 4;
        let params = DiskANNParams {
            m,
            ef_construction: 20,
            alpha: 1.2,
            ef_search: 20,
            seed: None,
            ..DiskANNParams::default()
        };
        let mut index = DiskANNIndex::new(4, params).unwrap();
        for i in 0..30u32 {
            let v = vec![i as f32, (i as f32) * 0.3, 1.0, (i as f32) * 0.1];
            index.add(i, v).unwrap();
        }
        index.build().unwrap();

        for (node, neighbors) in index.adj.iter().enumerate() {
            assert!(
                neighbors.len() <= m,
                "Node {} has {} neighbors, max is {}",
                node,
                neighbors.len(),
                m
            );
        }
    }

    #[test]
    fn test_self_query_in_results() {
        // Use normalized vectors (same as cross-algorithm test) with high connectivity
        let params = DiskANNParams {
            m: 32,
            ef_construction: 100,
            alpha: 1.2,
            ef_search: 100,
            seed: None,
            ..DiskANNParams::default()
        };
        let dim = 16;
        let n = 100u32;
        let mut index = DiskANNIndex::new(dim, params).unwrap();

        use std::hash::{Hash, Hasher};
        for i in 0..n {
            let raw: Vec<f32> = (0..dim)
                .map(|j| {
                    let mut h = std::collections::hash_map::DefaultHasher::new();
                    (42u64, i, j).hash(&mut h);
                    (h.finish() as f64 / u64::MAX as f64 * 2.0 - 1.0) as f32
                })
                .collect();
            // Normalize for consistent L2 behavior
            let norm: f32 = raw.iter().map(|x| x * x).sum::<f32>().sqrt();
            let v: Vec<f32> = raw.iter().map(|x| x / norm).collect();
            index.add(i, v).unwrap();
        }
        index.build().unwrap();

        // Sample self-queries should return themselves in top-5
        for &i in &[0, 1, n / 2, n - 1] {
            let raw: Vec<f32> = (0..dim)
                .map(|j| {
                    let mut h = std::collections::hash_map::DefaultHasher::new();
                    (42u64, i, j).hash(&mut h);
                    (h.finish() as f64 / u64::MAX as f64 * 2.0 - 1.0) as f32
                })
                .collect();
            let norm: f32 = raw.iter().map(|x| x * x).sum::<f32>().sqrt();
            let v: Vec<f32> = raw.iter().map(|x| x / norm).collect();
            let results = index.search(&v, 5, 100).unwrap();
            let found = results.iter().any(|&(id, dist)| id == i && dist < 1e-4);
            assert!(
                found,
                "Self-query doc_id={} not found in top-5: {:?}",
                i, results
            );
        }
    }

    #[test]
    fn test_neighbor_ids_in_bounds() {
        let params = DiskANNParams {
            m: 8,
            ef_construction: 30,
            alpha: 1.2,
            ef_search: 30,
            seed: None,
            ..DiskANNParams::default()
        };
        let mut index = DiskANNIndex::new(4, params).unwrap();
        let n = 25u32;
        for i in 0..n {
            let v = vec![i as f32, (i as f32) * 0.4, 1.0, 0.0];
            index.add(i, v).unwrap();
        }
        index.build().unwrap();

        for (node, neighbors) in index.adj.iter().enumerate() {
            for &nbr in neighbors {
                assert!(nbr < n, "Node {} has out-of-bounds neighbor {}", node, nbr);
            }
        }
    }

    /// Regression: `compute_medoid` was previously hardcoded to return 0.
    ///
    /// The medoid should be the vector closest to the centroid, not always index 0.
    /// Verified by building an index where vector 0 is clearly NOT the centroid.
    #[test]
    fn test_medoid_is_not_always_zero() {
        let params = DiskANNParams {
            m: 4,
            ef_construction: 20,
            alpha: 1.2,
            ef_search: 20,
            seed: None,
            ..DiskANNParams::default()
        };
        // Place vector 0 far away; the cluster centroid is around index 3-4.
        // If medoid is real, start_node should not be 0.
        let mut index = DiskANNIndex::new(2, params).unwrap();
        index.add(0, vec![100.0, 100.0]).unwrap(); // outlier
        index.add(1, vec![1.0, 0.0]).unwrap();
        index.add(2, vec![1.1, 0.0]).unwrap();
        index.add(3, vec![0.9, 0.0]).unwrap();
        index.add(4, vec![1.0, 0.1]).unwrap();
        index.add(5, vec![1.0, -0.1]).unwrap();
        index.build().unwrap();

        // The centroid is near the [0.9-1.0] cluster, not the outlier at [100,100].
        // After graph reordering, internal IDs change, so check the medoid's
        // actual vector is not the outlier.
        let medoid_idx = index.start_node as usize;
        let medoid_vec = &index.vectors[medoid_idx * 2..(medoid_idx + 1) * 2];
        assert!(
            medoid_vec[0] < 50.0,
            "medoid should not be the outlier at [100,100]; got vec={:?}",
            medoid_vec
        );
    }

    /// Regression: `vamana_pass` previously omitted reverse edge updates.
    ///
    /// Without reverse edges, node j is added as a neighbor of i but i is never
    /// added as a candidate for j. This breaks bidirectional reachability.
    /// Verification: after build, for each edge i->j, j should also have a path
    /// back to i (directly or within 1 hop), ensuring graph connectivity.
    #[test]
    fn test_reverse_edges_improve_recall() {
        let params = DiskANNParams {
            m: 4,
            ef_construction: 20,
            alpha: 1.2,
            ef_search: 20,
            seed: None,
            ..DiskANNParams::default()
        };
        let n = 20u32;
        let mut index = DiskANNIndex::new(4, params).unwrap();
        for i in 0..n {
            let v = vec![i as f32 * 0.1, 0.0, 0.0, 0.0];
            index.add(i, v).unwrap();
        }
        index.build().unwrap();

        // Every node should have at least one neighbor (graph is connected enough to search)
        let isolated: Vec<_> = index
            .adj
            .iter()
            .enumerate()
            .filter(|(_, nbrs)| nbrs.is_empty())
            .map(|(i, _)| i)
            .collect();
        assert!(
            isolated.len() <= 1, // at most 1 isolated node (start_node special case)
            "too many isolated nodes ({}): reverse edges may be missing",
            isolated.len()
        );

        // Recall test: querying each vector should find it within top-3
        let mut self_hits = 0;
        for i in 0..n {
            let q = vec![i as f32 * 0.1, 0.0, 0.0, 0.0];
            let results = index.search(&q, 3, 20).unwrap();
            if results.iter().any(|(id, _)| *id == i) {
                self_hits += 1;
            }
        }
        assert!(
            self_hits >= (n * 8 / 10),
            "self-recall too low ({}/{}): reverse edges may be missing",
            self_hits,
            n
        );
    }
}