tacet-core 0.4.2

Core statistical analysis for timing side-channel detection (no_std)
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
//! Covariance matrix estimation via bootstrap.
//!
//! This module estimates the covariance matrix of quantile vectors
//! using block bootstrap resampling. The covariance matrix is essential
//! for the multivariate hypothesis testing in the timing oracle.

extern crate alloc;

use alloc::vec;
use alloc::vec::Vec;

use rand::Rng;
use rand::SeedableRng;
use rand_xoshiro::Xoshiro256PlusPlus;

use crate::math;
use crate::types::{Class, Matrix9, TimingSample, Vector9};

use super::block_length::{optimal_block_length, paired_optimal_block_length};
use super::bootstrap::{
    block_bootstrap_resample_into, block_bootstrap_resample_joint_into, counter_rng_seed,
};
use super::quantile::{compute_deciles_inplace, compute_midquantile_deciles};

#[cfg(feature = "parallel")]
use rayon::prelude::*;

/// Configure rayon's global thread pool with a larger stack size (8 MB).
///
/// This is necessary because the statistical analysis (Gibbs sampling, bootstrap)
/// creates multiple 9x9 matrices (648 bytes each) on the stack in deeply nested
/// function calls. The default 2 MB rayon thread stack can overflow when running
/// multiple tests in parallel.
///
/// This function is idempotent and will only configure the pool once.
#[cfg(feature = "parallel")]
fn ensure_rayon_configured() {
    use std::sync::Once;
    static INIT: Once = Once::new();

    INIT.call_once(|| {
        // Configure rayon's global thread pool with 8 MB stack per thread.
        // If this fails (e.g., user already configured the pool), that's fine -
        // they presumably configured it with appropriate settings.
        let _ = rayon::ThreadPoolBuilder::new()
            .stack_size(8 * 1024 * 1024)
            .build_global();
    });
}

/// Result of covariance estimation including the matrix and diagnostics.
#[derive(Debug, Clone)]
pub struct CovarianceEstimate {
    /// The estimated 9x9 covariance matrix.
    pub matrix: Matrix9,

    /// Number of bootstrap replicates used.
    pub n_bootstrap: usize,

    /// Block size used for bootstrap.
    pub block_size: usize,

    /// Minimum eigenvalue (for numerical stability check).
    pub min_eigenvalue: f64,

    /// Amount of jitter added for numerical stability.
    pub jitter_added: f64,

    /// Model mismatch threshold: 99th percentile of bootstrap Q* distribution.
    ///
    /// Q* = r^T Σ^{-1} r where r = Δ* - X β* is the residual from GLS fit.
    /// When the observed Q exceeds this threshold, the 2D (shift + tail) model
    /// doesn't adequately explain the quantile pattern.
    ///
    /// See spec Section 2.3.3 (Model Mismatch Threshold Calibration).
    pub q_thresh: f64,
}

impl CovarianceEstimate {
    /// Check if the covariance matrix is numerically stable.
    ///
    /// A matrix is stable if Cholesky decomposition succeeds, which
    /// is both necessary and sufficient for positive definiteness.
    /// The Gershgorin bound is only a lower bound on eigenvalues and
    /// can be negative even for positive definite matrices.
    pub fn is_stable(&self) -> bool {
        nalgebra::Cholesky::new(self.matrix).is_some()
    }
}

/// Online covariance accumulator using Welford's algorithm.
///
/// This accumulates covariance in a single pass without storing all vectors,
/// saving memory (728 bytes vs 72 KB for 1000 iterations) and improving
/// cache locality.
///
/// Uses Welford's numerically stable online algorithm for mean and M2 (sum of
/// outer products), which can be converted to covariance via M2/(n-1).
#[derive(Debug, Clone)]
pub struct WelfordCovariance9 {
    /// Count of vectors accumulated so far.
    n: usize,
    /// Running mean of vectors.
    mean: Vector9,
    /// Sum of outer products: Σ(x - μ)(x - μ)^T
    m2: Matrix9,
}

impl WelfordCovariance9 {
    /// Create a new accumulator initialized to zeros.
    pub fn new() -> Self {
        Self {
            n: 0,
            mean: Vector9::zeros(),
            m2: Matrix9::zeros(),
        }
    }

    /// Update the accumulator with a new vector using Welford's algorithm.
    ///
    /// Algorithm:
    /// ```text
    /// δ = x - μₙ₋₁
    /// μₙ = μₙ₋₁ + δ/n
    /// δ' = x - μₙ
    /// M2ₙ = M2ₙ₋₁ + δ·δ'^T
    /// ```
    ///
    /// This is numerically stable and produces a symmetric M2 matrix.
    pub fn update(&mut self, x: &Vector9) {
        self.n += 1;
        let n = self.n as f64;

        // δ = x - μₙ₋₁
        let delta = x - self.mean;

        // μₙ = μₙ₋₁ + δ/n
        self.mean += delta / n;

        // δ' = x - μₙ
        let delta2 = x - self.mean;

        // M2ₙ = M2ₙ₋₁ + δ·δ'^T
        // The outer product δ·δ'^T is symmetric
        self.m2 += delta * delta2.transpose();
    }

    /// Finalize the accumulator and return the covariance matrix.
    ///
    /// Returns M2/(n-1) for the unbiased sample covariance estimator.
    /// For n < 2, returns a conservative large-variance diagonal matrix
    /// (1e6 on diagonal) rather than identity, since "1 ns² variance"
    /// would be arbitrarily small.
    pub fn finalize(&self) -> Matrix9 {
        if self.n < 2 {
            // Return conservative high-variance diagonal (not identity)
            // This ensures MDE will be huge → priors dominated by min_effect_of_concern
            return Matrix9::from_diagonal(&Vector9::repeat(1e6));
        }

        self.m2 / (self.n - 1) as f64
    }

    /// Merge another accumulator into this one using Chan's parallel algorithm.
    ///
    /// Algorithm:
    /// ```text
    /// n_AB = n_A + n_B
    /// δ = μ_B - μ_A
    /// μ_AB = (n_A·μ_A + n_B·μ_B) / n_AB
    /// M2_AB = M2_A + M2_B + (n_A·n_B/n_AB)·δ·δ^T
    /// ```
    ///
    /// This preserves numerical stability and symmetry.
    #[allow(dead_code)]
    pub fn merge(&mut self, other: &Self) {
        if other.n == 0 {
            return;
        }
        if self.n == 0 {
            *self = other.clone();
            return;
        }

        let n_a = self.n as f64;
        let n_b = other.n as f64;
        let n_ab = n_a + n_b;

        // δ = μ_B - μ_A
        let delta = other.mean - self.mean;

        // μ_AB = (n_A·μ_A + n_B·μ_B) / n_AB
        self.mean = (self.mean * n_a + other.mean * n_b) / n_ab;

        // M2_AB = M2_A + M2_B + (n_A·n_B/n_AB)·δ·δ^T
        let correction = delta * delta.transpose() * (n_a * n_b / n_ab);
        self.m2 = self.m2 + other.m2 + correction;

        self.n += other.n;
    }

    /// Get the current count of vectors.
    #[allow(dead_code)]
    pub fn count(&self) -> usize {
        self.n
    }
}

impl Default for WelfordCovariance9 {
    fn default() -> Self {
        Self::new()
    }
}

/// Estimate covariance matrix of single-class quantile vectors via block bootstrap.
///
/// This function bootstraps quantile vectors for one class (not differences)
/// and computes their sample covariance. Jitter is added to the diagonal
/// for numerical stability.
///
/// See spec section 2.6 (Covariance Estimation):
/// - Uses block bootstrap to preserve autocorrelation structure
/// - Block length from Politis-White algorithm
///
/// # Arguments
///
/// * `data` - Timing measurements for a single input class
/// * `n_bootstrap` - Number of bootstrap replicates (typically 1000-5000)
/// * `seed` - Random seed for reproducibility
///
/// # Returns
///
/// A `CovarianceEstimate` containing the covariance matrix and diagnostics.
///
/// # Algorithm
///
/// 1. Compute block size using Politis-White algorithm
/// 2. For each bootstrap replicate:
///    a. Resample measurements with block bootstrap
///    b. Compute deciles for the resampled data
/// 3. Compute sample covariance of quantile vectors using Welford's online algorithm
/// 4. Add jitter to diagonal for numerical stability
pub fn bootstrap_covariance_matrix(
    data: &[f64],
    n_bootstrap: usize,
    seed: u64,
) -> CovarianceEstimate {
    let n = data.len();
    // Use Politis-White algorithm for optimal block length selection (spec §3.3.2)
    let block_size = if n >= 10 {
        math::ceil(optimal_block_length(data).circular) as usize
    } else {
        // Fall back to simple formula for very small samples
        math::ceil(1.3 * math::cbrt(n as f64)) as usize
    }
    .max(1);

    // Generate bootstrap replicates using online Welford covariance accumulation
    // This avoids allocating Vec<Vector9> (saves 72 KB for 1000 iterations)
    #[cfg(feature = "parallel")]
    let cov_accumulator: WelfordCovariance9 = {
        ensure_rayon_configured();
        (0..n_bootstrap)
            .into_par_iter()
            .fold_with(
                // Per-thread state: RNG, scratch buffer, and Welford accumulator
                (
                    Xoshiro256PlusPlus::seed_from_u64(seed),
                    vec![0.0; n],
                    WelfordCovariance9::new(),
                ),
                |(_, mut buffer, mut acc), i| {
                    // Counter-based RNG for deterministic, well-distributed seeding
                    let mut rng =
                        Xoshiro256PlusPlus::seed_from_u64(counter_rng_seed(seed, i as u64));

                    // Resample, compute deciles, and update accumulator
                    block_bootstrap_resample_into(data, block_size, &mut rng, &mut buffer);
                    let quantiles = compute_deciles_inplace(&mut buffer);
                    acc.update(&quantiles);

                    (rng, buffer, acc)
                },
            )
            .map(|(_, _, acc)| acc)
            .reduce(WelfordCovariance9::new, |mut a, b| {
                a.merge(&b);
                a
            })
    };

    #[cfg(not(feature = "parallel"))]
    let cov_accumulator: WelfordCovariance9 = {
        let mut accumulator = WelfordCovariance9::new();
        let mut buffer = vec![0.0; n];

        for i in 0..n_bootstrap {
            // Counter-based RNG for deterministic, well-distributed seeding
            let mut rng = Xoshiro256PlusPlus::seed_from_u64(counter_rng_seed(seed, i as u64));

            // Resample, compute deciles, and update accumulator
            block_bootstrap_resample_into(data, block_size, &mut rng, &mut buffer);
            let quantiles = compute_deciles_inplace(&mut buffer);
            accumulator.update(&quantiles);
        }
        accumulator
    };

    // Finalize the Welford accumulator to get the covariance matrix
    let cov_matrix = cov_accumulator.finalize();

    // Add jitter for numerical stability
    let (stabilized_matrix, jitter) = add_diagonal_jitter(cov_matrix);

    // Compute minimum eigenvalue for stability check
    let min_eigenvalue = estimate_min_eigenvalue(&stabilized_matrix);

    CovarianceEstimate {
        matrix: stabilized_matrix,
        n_bootstrap,
        block_size,
        min_eigenvalue,
        jitter_added: jitter,
        // Single-class covariance doesn't compute Q* - use fallback
        q_thresh: 18.48,
    }
}

fn resample_with_indices(data: &[f64], indices: &[usize], block_size: usize, buffer: &mut [f64]) {
    let n = buffer.len();
    let mut pos = 0;

    for &start in indices {
        for offset in 0..block_size {
            if pos >= n {
                break;
            }
            let idx = (start + offset) % data.len();
            buffer[pos] = data[idx];
            pos += 1;
        }
    }
}

/// Estimate covariance matrix of quantile differences Δ* = q_F* - q_R* via joint block bootstrap.
///
/// Uses joint resampling to preserve temporal pairing between fixed and random samples.
/// This captures cross-covariance Cov(q_F, q_R) > 0 from common-mode noise, giving the
/// correct (smaller) Var(Δ) and improving statistical power.
///
/// See spec section 2.6 (Covariance Estimation):
/// - Uses paired block bootstrap: same indices for both classes
/// - Block length from Politis-White algorithm
/// - Σ_rate = Σ_cal × n_cal (covariance scales as 1/n)
///
/// This function is designed to work with calibration sample counts (default 5000)
/// and supports the adaptive architecture by providing covariance estimates that
/// can be scaled via `compute_covariance_rate` and `scale_covariance_rate`.
///
/// # Arguments
///
/// * `interleaved` - Timing samples in measurement order, each tagged with class
/// * `n_bootstrap` - Number of bootstrap replicates (typically 50-100 for adaptive, 2000 for thorough)
/// * `seed` - Random seed for reproducibility
///
/// # Returns
///
/// A `CovarianceEstimate` containing the covariance matrix of Δ* and diagnostics.
///
/// # Algorithm
///
/// 1. Compute block size using Politis-White algorithm (per-class, take max)
/// 2. For each bootstrap replicate:
///    a. Block-resample the JOINT interleaved sequence (preserving temporal pairing)
///    b. Split by class AFTER resampling
///    c. Compute q_F* and q_R* from the split data
///    d. Compute Δ* = q_F* - q_R*
/// 3. Compute sample covariance of Δ* vectors using Welford's online algorithm
/// 4. Add jitter to diagonal for numerical stability
///
/// # Arguments
///
/// * `interleaved` - Acquisition stream with class labels
/// * `n_bootstrap` - Number of bootstrap iterations
/// * `seed` - RNG seed for reproducibility
/// * `is_fragile` - If true, apply inflation factor for fragile regimes
///   (uniqueness ratio < 10%, high autocorrelation detected)
pub fn bootstrap_difference_covariance(
    interleaved: &[TimingSample],
    n_bootstrap: usize,
    seed: u64,
    is_fragile: bool,
) -> CovarianceEstimate {
    let n = interleaved.len();

    // Use class-conditional acquisition-lag ACF for block length selection (spec §3.3.2).
    // This avoids the anti-conservative bias from computing ACF on the pooled stream,
    // where class alternation masks within-class autocorrelation.
    let block_size =
        super::block_length::class_conditional_optimal_block_length(interleaved, is_fragile);

    // Generate bootstrap replicates of Δ* = q_F* - q_R* using joint resampling
    #[cfg(feature = "parallel")]
    let cov_accumulator: WelfordCovariance9 = {
        ensure_rayon_configured();
        // Pre-compute estimated class sizes (roughly n/2 each)
        let estimated_class_size = (n / 2) + 1;
        (0..n_bootstrap)
            .into_par_iter()
            .fold_with(
                // Per-thread state: RNG, scratch buffers, and Welford accumulator
                (
                    Xoshiro256PlusPlus::seed_from_u64(seed),
                    vec![
                        TimingSample {
                            time_ns: 0.0,
                            class: Class::Baseline
                        };
                        n
                    ],
                    Vec::with_capacity(estimated_class_size), // baseline_samples buffer
                    Vec::with_capacity(estimated_class_size), // sample_samples buffer
                    WelfordCovariance9::new(),
                ),
                |(_, mut buffer, mut baseline_samples, mut sample_samples, mut acc), i| {
                    // Counter-based RNG for deterministic, well-distributed seeding
                    let mut rng =
                        Xoshiro256PlusPlus::seed_from_u64(counter_rng_seed(seed, i as u64));

                    // Joint resample the interleaved sequence (preserves temporal pairing)
                    block_bootstrap_resample_joint_into(
                        interleaved,
                        block_size,
                        &mut rng,
                        &mut buffer,
                    );

                    // Split by class AFTER resampling (reuse pre-allocated buffers)
                    baseline_samples.clear();
                    sample_samples.clear();
                    for sample in &buffer {
                        match sample.class {
                            Class::Baseline => baseline_samples.push(sample.time_ns),
                            Class::Sample => sample_samples.push(sample.time_ns),
                        }
                    }

                    // Compute quantiles for each class
                    let q_baseline = compute_deciles_inplace(&mut baseline_samples);
                    let q_sample = compute_deciles_inplace(&mut sample_samples);

                    // Compute difference and update accumulator
                    let delta = q_baseline - q_sample;
                    acc.update(&delta);

                    (rng, buffer, baseline_samples, sample_samples, acc)
                },
            )
            .map(|(_, _, _, _, acc)| acc)
            .reduce(WelfordCovariance9::new, |mut a, b| {
                a.merge(&b);
                a
            })
    };

    #[cfg(not(feature = "parallel"))]
    let cov_accumulator: WelfordCovariance9 = {
        let mut accumulator = WelfordCovariance9::new();
        let mut buffer = vec![
            TimingSample {
                time_ns: 0.0,
                class: Class::Baseline
            };
            n
        ];
        // Pre-allocate class buffers (roughly n/2 each)
        let estimated_class_size = (n / 2) + 1;
        let mut baseline_samples: Vec<f64> = Vec::with_capacity(estimated_class_size);
        let mut sample_samples: Vec<f64> = Vec::with_capacity(estimated_class_size);

        for i in 0..n_bootstrap {
            // Counter-based RNG for deterministic, well-distributed seeding
            let mut rng = Xoshiro256PlusPlus::seed_from_u64(counter_rng_seed(seed, i as u64));

            // Joint resample the interleaved sequence (preserves temporal pairing)
            block_bootstrap_resample_joint_into(interleaved, block_size, &mut rng, &mut buffer);

            // Split by class AFTER resampling (reuse pre-allocated buffers)
            baseline_samples.clear();
            sample_samples.clear();
            for sample in &buffer {
                match sample.class {
                    Class::Baseline => baseline_samples.push(sample.time_ns),
                    Class::Sample => sample_samples.push(sample.time_ns),
                }
            }

            // Compute quantiles for each class
            let q_baseline = compute_deciles_inplace(&mut baseline_samples);
            let q_sample = compute_deciles_inplace(&mut sample_samples);

            // Compute difference and update accumulator
            let delta = q_baseline - q_sample;
            accumulator.update(&delta);
        }
        accumulator
    };

    // Finalize the Welford accumulator to get the covariance matrix
    let cov_matrix = cov_accumulator.finalize();

    // Add jitter for numerical stability
    let (stabilized_matrix, jitter) = add_diagonal_jitter(cov_matrix);

    // Compute minimum eigenvalue for stability check
    let min_eigenvalue = estimate_min_eigenvalue(&stabilized_matrix);

    // Compute bootstrap-calibrated q_thresh (second pass)
    // Invert the covariance matrix for Q* computation
    let q_thresh = match stabilized_matrix.try_inverse() {
        Some(sigma_inv) => {
            compute_bootstrap_q_thresh(interleaved, n_bootstrap, block_size, &sigma_inv, seed)
        }
        None => 18.48, // Fallback if inversion fails
    };

    CovarianceEstimate {
        matrix: stabilized_matrix,
        n_bootstrap,
        block_size,
        min_eigenvalue,
        jitter_added: jitter,
        q_thresh,
    }
}

/// Estimate covariance matrix of quantile differences Δ* = q_F* - q_R* in discrete mode.
///
/// Uses m-out-of-n paired block bootstrap on per-class sequences with mid-distribution
/// quantiles, then rescales by m/n (spec §3.6).
pub fn bootstrap_difference_covariance_discrete(
    baseline: &[f64],
    sample: &[f64],
    n_bootstrap: usize,
    seed: u64,
) -> CovarianceEstimate {
    let n = baseline.len().min(sample.len());
    let baseline = &baseline[..n];
    let sample = &sample[..n];

    let m = if n < 2000 {
        let half = math::floor(0.5 * n as f64) as usize;
        half.max(200).min(n)
    } else {
        let m = math::floor(math::pow(n as f64, 2.0 / 3.0)) as usize;
        m.max(400).min(n)
    };
    // Discrete mode is inherently a "fragile regime" (spec §3.3.2 Step 4).
    // Apply 1.5x inflation factor and safety floor of 10.
    let base_block = if n >= 10 {
        paired_optimal_block_length(baseline, sample)
    } else {
        math::ceil(1.3 * math::cbrt(n as f64)).max(1.0) as usize
    };
    let inflated_block = math::ceil((base_block as f64) * 1.5) as usize;
    let mut block_size = inflated_block.max(10); // Safety floor
    let max_block = (m / 5).max(1);
    block_size = block_size.min(max_block).max(1);

    #[cfg(feature = "parallel")]
    let cov_accumulator: WelfordCovariance9 = {
        ensure_rayon_configured();
        (0..n_bootstrap)
            .into_par_iter()
            .fold_with(
                (
                    Xoshiro256PlusPlus::seed_from_u64(seed),
                    vec![0.0; m],
                    vec![0.0; m],
                    Vec::<usize>::with_capacity(m.div_ceil(block_size)),
                    WelfordCovariance9::new(),
                ),
                |(_, mut baseline_buf, mut sample_buf, mut indices, mut acc), i| {
                    let mut rng =
                        Xoshiro256PlusPlus::seed_from_u64(counter_rng_seed(seed, i as u64));

                    indices.clear();
                    let n_blocks = m.div_ceil(block_size);
                    let max_start = n.saturating_sub(block_size);
                    for _ in 0..n_blocks {
                        indices.push(rng.random_range(0..=max_start));
                    }

                    resample_with_indices(baseline, &indices, block_size, &mut baseline_buf);
                    resample_with_indices(sample, &indices, block_size, &mut sample_buf);

                    let q_baseline = compute_midquantile_deciles(&baseline_buf);
                    let q_sample = compute_midquantile_deciles(&sample_buf);
                    let delta = q_baseline - q_sample;
                    acc.update(&delta);

                    (rng, baseline_buf, sample_buf, indices, acc)
                },
            )
            .map(|(_, _, _, _, acc)| acc)
            .reduce(WelfordCovariance9::new, |mut a, b| {
                a.merge(&b);
                a
            })
    };

    #[cfg(not(feature = "parallel"))]
    let cov_accumulator: WelfordCovariance9 = {
        let mut accumulator = WelfordCovariance9::new();
        let mut baseline_buf = vec![0.0; m];
        let mut sample_buf = vec![0.0; m];
        let mut indices = Vec::with_capacity(m.div_ceil(block_size));

        for i in 0..n_bootstrap {
            let mut rng = Xoshiro256PlusPlus::seed_from_u64(counter_rng_seed(seed, i as u64));

            indices.clear();
            let n_blocks = m.div_ceil(block_size);
            let max_start = n.saturating_sub(block_size);
            for _ in 0..n_blocks {
                indices.push(rng.random_range(0..=max_start));
            }

            resample_with_indices(baseline, &indices, block_size, &mut baseline_buf);
            resample_with_indices(sample, &indices, block_size, &mut sample_buf);

            let q_baseline = compute_midquantile_deciles(&baseline_buf);
            let q_sample = compute_midquantile_deciles(&sample_buf);
            let delta = q_baseline - q_sample;
            accumulator.update(&delta);
        }
        accumulator
    };

    // Finalize the Welford accumulator and rescale from m to n.
    let mut cov_matrix = cov_accumulator.finalize();
    if n > 0 {
        cov_matrix *= (m as f64) / (n as f64);
    }

    let (stabilized_matrix, jitter) = add_diagonal_jitter(cov_matrix);
    let min_eigenvalue = estimate_min_eigenvalue(&stabilized_matrix);

    // For discrete mode, use the chi-squared fallback for Q*.
    // The m-out-of-n bootstrap Q* distribution has different properties that
    // require further research to calibrate properly. Using chi-squared(7, 0.99)
    // is conservative and gives acceptable FPR in practice.
    let q_thresh = 18.48; // chi-squared(7, 0.99)

    CovarianceEstimate {
        matrix: stabilized_matrix,
        n_bootstrap,
        block_size,
        min_eigenvalue,
        jitter_added: jitter,
        q_thresh,
    }
}

/// Compute sample covariance matrix from a collection of vectors.
///
/// Uses the unbiased estimator with n-1 denominator.
/// For n < 2, returns conservative large-variance diagonal.
#[cfg(test)]
fn compute_sample_covariance(vectors: &[Vector9]) -> Matrix9 {
    let n = vectors.len();
    if n < 2 {
        return Matrix9::from_diagonal(&Vector9::repeat(1e6));
    }

    // Compute mean vector
    let mut mean = Vector9::zeros();
    for v in vectors {
        mean += v;
    }
    mean /= n as f64;

    // Compute covariance matrix
    let mut cov = Matrix9::zeros();
    for v in vectors {
        let centered = v - mean;
        cov += centered * centered.transpose();
    }
    cov /= (n - 1) as f64;

    cov
}

/// Apply diagonal floor and jitter for numerical stability (spec §3.3.2).
///
/// Implements the spec requirement:
/// σ²_i ← max(σ²_i, 0.01·σ̄²) + ε
/// where σ̄² = tr(Σ)/9 and ε = 10⁻¹⁰ + σ̄²·10⁻⁸
///
/// This ensures:
/// 1. Diagonal elements have a minimum floor (1% of average variance)
/// 2. Small jitter is added for positive definiteness
fn add_diagonal_jitter(mut matrix: Matrix9) -> (Matrix9, f64) {
    // Compute average variance: σ̄² = tr(Σ)/9
    let trace = matrix.trace();
    let sigma_bar_sq = trace / 9.0;

    // Diagonal floor: 1% of average variance (spec §3.3.2)
    let floor = 0.01 * sigma_bar_sq;

    // Jitter: ε = 10⁻¹⁰ + σ̄²·10⁻⁸ (spec §3.3.2)
    let epsilon = 1e-10 + sigma_bar_sq * 1e-8;

    // Apply floor and jitter to diagonal: σ²_i ← max(σ²_i, floor) + ε
    for i in 0..9 {
        matrix[(i, i)] = matrix[(i, i)].max(floor) + epsilon;
    }

    (matrix, epsilon)
}

/// Compute goodness-of-fit statistic for the 9D model.
///
/// With the removal of 2D projection, we no longer compute model mismatch Q*.
/// This function returns a simple Mahalanobis distance which can be used
/// for detecting extreme bootstrap samples.
///
/// # Arguments
///
/// * `delta` - The 9-vector of quantile differences Δ = q_F - q_R
/// * `sigma_inv` - The inverse covariance matrix Σ^{-1}
///
/// # Returns
///
/// The Mahalanobis distance δ' Σ^{-1} δ (non-negative scalar).
fn compute_q_statistic(delta: &Vector9, sigma_inv: &Matrix9) -> f64 {
    // Compute Mahalanobis distance: δ' Σ^{-1} δ
    let q = delta.transpose() * sigma_inv * delta;
    q[(0, 0)].max(0.0)
}

/// Compute bootstrap Q* distribution and return 99th percentile.
///
/// This runs a second pass through the bootstrap to compute Q* for each replicate,
/// using the estimated covariance matrix from the first pass.
///
/// # Arguments
///
/// * `interleaved` - Timing samples in measurement order
/// * `n_bootstrap` - Number of bootstrap replicates
/// * `block_size` - Block size for bootstrap
/// * `sigma_inv` - Inverse of the estimated covariance matrix
/// * `seed` - Random seed (should differ from first pass)
///
/// # Returns
///
/// The 99th percentile of the Q* distribution, or 18.48 (chi-squared fallback) if computation fails.
fn compute_bootstrap_q_thresh(
    interleaved: &[TimingSample],
    n_bootstrap: usize,
    block_size: usize,
    sigma_inv: &Matrix9,
    seed: u64,
) -> f64 {
    const FALLBACK_Q_THRESH: f64 = 18.48; // chi-squared(7, 0.99)

    if interleaved.is_empty() || n_bootstrap == 0 {
        return FALLBACK_Q_THRESH;
    }

    let n = interleaved.len();

    // Collect Q* values from bootstrap replicates
    #[cfg(feature = "parallel")]
    let q_values: Vec<f64> = {
        ensure_rayon_configured();
        let estimated_class_size = (n / 2) + 1;
        (0..n_bootstrap)
            .into_par_iter()
            .fold_with(
                // Per-thread state: scratch buffers
                (
                    vec![
                        TimingSample {
                            time_ns: 0.0,
                            class: Class::Baseline,
                        };
                        n
                    ],
                    Vec::with_capacity(estimated_class_size),
                    Vec::with_capacity(estimated_class_size),
                    Vec::with_capacity(n_bootstrap / rayon::current_num_threads().max(1) + 1),
                ),
                |(mut buffer, mut baseline_samples, mut sample_samples, mut results), i| {
                    // Use different seed offset than first pass to get independent samples
                    let mut rng = Xoshiro256PlusPlus::seed_from_u64(counter_rng_seed(
                        seed.wrapping_add(1),
                        i as u64,
                    ));

                    // Joint resample the interleaved sequence
                    block_bootstrap_resample_joint_into(
                        interleaved,
                        block_size,
                        &mut rng,
                        &mut buffer,
                    );

                    // Split by class (reuse buffers)
                    baseline_samples.clear();
                    sample_samples.clear();
                    for sample in &buffer {
                        match sample.class {
                            Class::Baseline => baseline_samples.push(sample.time_ns),
                            Class::Sample => sample_samples.push(sample.time_ns),
                        }
                    }

                    // Compute quantiles
                    let q_baseline = compute_deciles_inplace(&mut baseline_samples);
                    let q_sample = compute_deciles_inplace(&mut sample_samples);

                    // Compute delta* and Q*
                    let delta_star = q_baseline - q_sample;
                    results.push(compute_q_statistic(&delta_star, sigma_inv));

                    (buffer, baseline_samples, sample_samples, results)
                },
            )
            .flat_map(|(_, _, _, results)| results)
            .collect()
    };

    #[cfg(not(feature = "parallel"))]
    let q_values: Vec<f64> = {
        let mut values = Vec::with_capacity(n_bootstrap);
        let mut buffer = vec![
            TimingSample {
                time_ns: 0.0,
                class: Class::Baseline,
            };
            n
        ];
        // Pre-allocate class buffers
        let estimated_class_size = (n / 2) + 1;
        let mut baseline_samples: Vec<f64> = Vec::with_capacity(estimated_class_size);
        let mut sample_samples: Vec<f64> = Vec::with_capacity(estimated_class_size);

        for i in 0..n_bootstrap {
            let mut rng =
                Xoshiro256PlusPlus::seed_from_u64(counter_rng_seed(seed.wrapping_add(1), i as u64));

            block_bootstrap_resample_joint_into(interleaved, block_size, &mut rng, &mut buffer);

            // Reuse pre-allocated buffers
            baseline_samples.clear();
            sample_samples.clear();
            for sample in &buffer {
                match sample.class {
                    Class::Baseline => baseline_samples.push(sample.time_ns),
                    Class::Sample => sample_samples.push(sample.time_ns),
                }
            }

            let q_baseline = compute_deciles_inplace(&mut baseline_samples);
            let q_sample = compute_deciles_inplace(&mut sample_samples);
            let delta_star = q_baseline - q_sample;
            values.push(compute_q_statistic(&delta_star, sigma_inv));
        }
        values
    };

    // Filter out infinities and sort
    let mut finite_q: Vec<f64> = q_values.into_iter().filter(|q| q.is_finite()).collect();

    if finite_q.is_empty() {
        return FALLBACK_Q_THRESH;
    }

    finite_q.sort_by(|a, b| a.partial_cmp(b).unwrap_or(core::cmp::Ordering::Equal));

    // Compute 99th percentile
    let p99_idx = ((finite_q.len() as f64) * 0.99) as usize;
    finite_q
        .get(p99_idx.min(finite_q.len().saturating_sub(1)))
        .copied()
        .unwrap_or(FALLBACK_Q_THRESH)
}

/// Apply variance floor based on timer resolution.
///
/// In idealized environments (simulators, deterministic operations), variance
/// can approach zero, causing numerical instability. The 1/12 factor is the
/// variance of a uniform distribution over one tick.
///
/// # Arguments
///
/// * `matrix` - Covariance matrix to apply floor to
/// * `timer_resolution_ns` - Timer resolution in nanoseconds
///
/// # Returns
///
/// The matrix with variance floor applied to diagonal elements.
pub fn apply_variance_floor(mut matrix: Matrix9, timer_resolution_ns: f64) -> Matrix9 {
    let floor = math::sq(timer_resolution_ns) / 12.0;
    for i in 0..9 {
        matrix[(i, i)] += floor;
    }
    matrix
}

/// Scale covariance matrix from calibration to inference sample sizes.
///
/// Σ₀ was estimated from calibration set (n_cal samples) but will be used
/// for inference set (n_inf samples). Quantile variance scales as 1/n,
/// so we must adjust.
///
/// See spec section 2.6 (Covariance Estimation): "Covariance scales as 1/n"
///
/// # Arguments
///
/// * `matrix` - Covariance matrix estimated from calibration set
/// * `n_calibration` - Number of samples in calibration set
/// * `n_inference` - Number of samples in inference set
///
/// # Returns
///
/// The scaled covariance matrix.
pub fn scale_covariance_for_inference(
    matrix: Matrix9,
    n_calibration: usize,
    n_inference: usize,
) -> Matrix9 {
    let scale = n_calibration as f64 / n_inference as f64;
    matrix * scale
}

/// Compute covariance rate from calibration covariance.
///
/// The covariance rate Σ_rate = Σ_cal × n_cal allows efficient
/// scaling during adaptive sampling: Σ_n = Σ_rate / n.
///
/// This is useful for adaptive sampling where the sample count
/// grows over multiple rounds. Rather than re-bootstrapping
/// covariance at each round, compute the rate once from
/// calibration data and scale as needed.
///
/// See spec section 2.6 (Covariance Estimation): "Covariance scales as 1/n"
///
/// # Arguments
///
/// * `covariance` - Covariance matrix estimated from calibration set
/// * `n_calibration` - Number of samples used for calibration
///
/// # Returns
///
/// The covariance rate matrix (Σ_rate = Σ_cal × n_cal).
pub fn compute_covariance_rate(covariance: &Matrix9, n_calibration: usize) -> Matrix9 {
    let scale = n_calibration as f64;
    covariance * scale
}

/// Scale covariance rate to get covariance for n samples.
///
/// Given a covariance rate Σ_rate (computed via `compute_covariance_rate`),
/// returns the covariance matrix for n samples: Σ_n = Σ_rate / n.
///
/// This enables efficient covariance estimation during adaptive sampling
/// without re-running the bootstrap at each sample count.
///
/// See spec section 2.6 (Covariance Estimation): "Covariance scales as 1/n"
///
/// # Arguments
///
/// * `rate` - Covariance rate matrix (Σ_rate = Σ_cal × n_cal)
/// * `n` - Number of samples for which to compute covariance
///
/// # Returns
///
/// The scaled covariance matrix Σ_n = Σ_rate / n.
///
/// # Panics
///
/// Panics if n is 0 (would cause division by zero).
pub fn scale_covariance_rate(rate: &Matrix9, n: usize) -> Matrix9 {
    assert!(n > 0, "Cannot scale covariance rate for 0 samples");
    let scale = 1.0 / (n as f64);
    rate * scale
}

/// Estimate minimum eigenvalue of a matrix.
///
/// This is a placeholder that uses a simple heuristic.
fn estimate_min_eigenvalue(matrix: &Matrix9) -> f64 {
    // Simple heuristic: check if Cholesky decomposition succeeds
    // If it does, all eigenvalues are positive

    // For now, use a rough estimate based on the diagonal dominance
    // This is not accurate but provides a stability indicator

    let mut min_diag = f64::MAX;
    let mut max_off_diag_sum: f64 = 0.0;

    for i in 0..9 {
        min_diag = min_diag.min(matrix[(i, i)]);

        let mut row_sum = 0.0;
        for j in 0..9 {
            if i != j {
                row_sum += matrix[(i, j)].abs();
            }
        }
        max_off_diag_sum = max_off_diag_sum.max(row_sum);
    }

    // Gershgorin circle theorem lower bound
    min_diag - max_off_diag_sum
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_covariance_estimate_basic() {
        // Generate simple test data
        let data: Vec<f64> = (0..1000).map(|x| (x as f64) + 100.0).collect();

        let estimate = bootstrap_covariance_matrix(&data, 100, 42);

        assert_eq!(estimate.n_bootstrap, 100);
        assert!(estimate.block_size > 0);
        assert!(estimate.jitter_added > 0.0);
    }

    #[test]
    fn test_covariance_symmetry() {
        let data: Vec<f64> = (0..500).map(|x| (x as f64) * 0.1).collect();

        let estimate = bootstrap_covariance_matrix(&data, 50, 123);

        // Check symmetry
        for i in 0..9 {
            for j in 0..9 {
                let diff = (estimate.matrix[(i, j)] - estimate.matrix[(j, i)]).abs();
                assert!(diff < 1e-12, "Matrix not symmetric at ({}, {})", i, j);
            }
        }
    }

    #[test]
    fn test_sample_covariance_identity() {
        // With identical vectors, covariance should be zero (plus jitter)
        let vectors: Vec<Vector9> = (0..100).map(|_| Vector9::from_element(1.0)).collect();

        let cov = compute_sample_covariance(&vectors);

        // All elements should be essentially zero
        for i in 0..9 {
            for j in 0..9 {
                assert!(cov[(i, j)].abs() < 1e-12);
            }
        }
    }

    // ========== Welford Covariance Validation Tests ==========

    #[test]
    fn test_welford_numerical_equivalence() {
        // Test that Welford accumulator gives identical results to batch computation
        let vectors: Vec<Vector9> = (0..100)
            .map(|i| {
                Vector9::from_fn(|j, _| {
                    // Create diverse vectors with different patterns
                    (i * 7 + j * 13) as f64 % 17.0
                })
            })
            .collect();

        // Batch method
        let batch_cov = compute_sample_covariance(&vectors);

        // Welford method
        let mut welford = WelfordCovariance9::new();
        for v in &vectors {
            welford.update(v);
        }
        let welford_cov = welford.finalize();

        // Should be numerically identical (within floating point precision)
        for i in 0..9 {
            for j in 0..9 {
                let diff = (batch_cov[(i, j)] - welford_cov[(i, j)]).abs();
                assert!(
                    diff < 1e-9,
                    "Mismatch at ({}, {}): batch={}, welford={}, diff={}",
                    i,
                    j,
                    batch_cov[(i, j)],
                    welford_cov[(i, j)],
                    diff
                );
            }
        }
    }

    #[test]
    fn test_welford_edge_cases() {
        // n=0 should return conservative high-variance diagonal
        let empty = WelfordCovariance9::new();
        let cov0 = empty.finalize();
        let expected_conservative = Matrix9::from_diagonal(&Vector9::repeat(1e6));
        assert_eq!(
            cov0, expected_conservative,
            "n=0 should return conservative diagonal"
        );

        // n=1 should return conservative high-variance diagonal
        let mut one = WelfordCovariance9::new();
        one.update(&Vector9::from_element(42.0));
        let cov1 = one.finalize();
        assert_eq!(
            cov1, expected_conservative,
            "n=1 should return conservative diagonal"
        );

        // n=2 should compute valid covariance
        let mut two = WelfordCovariance9::new();
        two.update(&Vector9::from_element(1.0));
        two.update(&Vector9::from_element(2.0));
        let cov2 = two.finalize();

        // Should not be the conservative fallback (has actual variance)
        assert!(
            cov2 != expected_conservative,
            "n=2 should not return conservative fallback"
        );

        // Should be symmetric
        for i in 0..9 {
            for j in 0..9 {
                assert!(
                    (cov2[(i, j)] - cov2[(j, i)]).abs() < 1e-12,
                    "n=2 result not symmetric"
                );
            }
        }
    }

    #[test]
    fn test_welford_merge_correctness() {
        // Test that merge(A, B) == accumulate(A ∪ B)
        let vectors_a: Vec<Vector9> = (0..50).map(|i| Vector9::from_element(i as f64)).collect();
        let vectors_b: Vec<Vector9> = (50..100).map(|i| Vector9::from_element(i as f64)).collect();

        // Accumulate A separately
        let mut acc_a = WelfordCovariance9::new();
        for v in &vectors_a {
            acc_a.update(v);
        }

        // Accumulate B separately
        let mut acc_b = WelfordCovariance9::new();
        for v in &vectors_b {
            acc_b.update(v);
        }

        // Merge A and B
        let mut merged = acc_a.clone();
        merged.merge(&acc_b);
        let merged_cov = merged.finalize();

        // Accumulate all at once
        let mut combined = WelfordCovariance9::new();
        for v in vectors_a.iter().chain(vectors_b.iter()) {
            combined.update(v);
        }
        let combined_cov = combined.finalize();

        // Results should be identical
        for i in 0..9 {
            for j in 0..9 {
                let diff = (merged_cov[(i, j)] - combined_cov[(i, j)]).abs();
                assert!(
                    diff < 1e-9,
                    "Merge mismatch at ({}, {}): merged={}, combined={}, diff={}",
                    i,
                    j,
                    merged_cov[(i, j)],
                    combined_cov[(i, j)],
                    diff
                );
            }
        }
    }

    #[test]
    fn test_welford_symmetry() {
        // Welford algorithm should produce symmetric covariance matrix
        let mut welford = WelfordCovariance9::new();
        for i in 0..100 {
            welford.update(&Vector9::from_fn(|j, _| ((i * 7 + j * 11) % 23) as f64));
        }

        let cov = welford.finalize();

        for i in 0..9 {
            for j in 0..9 {
                let diff = (cov[(i, j)] - cov[(j, i)]).abs();
                assert!(
                    diff < 1e-12,
                    "Welford result not symmetric at ({}, {}): diff={}",
                    i,
                    j,
                    diff
                );
            }
        }
    }

    // ========== Covariance Rate Tests ==========

    #[test]
    fn test_covariance_rate_roundtrip() {
        // compute_covariance_rate followed by scale_covariance_rate should
        // return to the original covariance when using the same n
        let original = Matrix9::from_fn(|i, j| {
            if i == j {
                10.0 + i as f64
            } else {
                (i as f64 - j as f64).abs() * 0.5
            }
        });

        let n_cal = 5000;
        let rate = compute_covariance_rate(&original, n_cal);
        let recovered = scale_covariance_rate(&rate, n_cal);

        for i in 0..9 {
            for j in 0..9 {
                let diff = (original[(i, j)] - recovered[(i, j)]).abs();
                assert!(
                    diff < 1e-10,
                    "Roundtrip failed at ({}, {}): original={}, recovered={}, diff={}",
                    i,
                    j,
                    original[(i, j)],
                    recovered[(i, j)],
                    diff
                );
            }
        }
    }

    #[test]
    fn test_covariance_rate_scaling() {
        // Verify that Σ_n = Σ_rate / n produces correct scaling
        // If Σ_cal was estimated from n_cal samples, then:
        // - Σ_rate = Σ_cal * n_cal
        // - Σ_{2*n_cal} = Σ_rate / (2*n_cal) = Σ_cal / 2

        let sigma_cal = Matrix9::from_fn(|i, j| {
            if i == j {
                100.0 // Diagonal variance
            } else if (i as i32 - j as i32).abs() == 1 {
                50.0 // Adjacent covariance
            } else {
                10.0 // Other covariance
            }
        });

        let n_cal = 1000;
        let rate = compute_covariance_rate(&sigma_cal, n_cal);

        // Double the sample size should halve the covariance
        let sigma_2n = scale_covariance_rate(&rate, 2 * n_cal);
        for i in 0..9 {
            for j in 0..9 {
                let expected = sigma_cal[(i, j)] / 2.0;
                let actual = sigma_2n[(i, j)];
                let diff = (expected - actual).abs();
                assert!(
                    diff < 1e-10,
                    "2n scaling failed at ({}, {}): expected={}, actual={}",
                    i,
                    j,
                    expected,
                    actual
                );
            }
        }

        // 10x samples should reduce covariance by 10x
        let sigma_10n = scale_covariance_rate(&rate, 10 * n_cal);
        for i in 0..9 {
            for j in 0..9 {
                let expected = sigma_cal[(i, j)] / 10.0;
                let actual = sigma_10n[(i, j)];
                let diff = (expected - actual).abs();
                assert!(
                    diff < 1e-10,
                    "10n scaling failed at ({}, {}): expected={}, actual={}",
                    i,
                    j,
                    expected,
                    actual
                );
            }
        }
    }

    #[test]
    #[should_panic(expected = "Cannot scale covariance rate for 0 samples")]
    fn test_scale_covariance_rate_zero_panics() {
        let rate = Matrix9::identity();
        let _ = scale_covariance_rate(&rate, 0);
    }

    #[test]
    fn test_covariance_rate_preserves_symmetry() {
        // Symmetric covariance should remain symmetric after rate operations
        let symmetric = Matrix9::from_fn(|i, j| {
            if i == j {
                50.0
            } else {
                25.0 / (1.0 + (i as i32 - j as i32).abs() as f64)
            }
        });

        // Verify input is symmetric
        for i in 0..9 {
            for j in 0..9 {
                assert!(
                    (symmetric[(i, j)] - symmetric[(j, i)]).abs() < 1e-12,
                    "Input not symmetric"
                );
            }
        }

        let rate = compute_covariance_rate(&symmetric, 5000);
        let scaled = scale_covariance_rate(&rate, 10000);

        // Verify output is symmetric
        for i in 0..9 {
            for j in 0..9 {
                let diff = (scaled[(i, j)] - scaled[(j, i)]).abs();
                assert!(
                    diff < 1e-12,
                    "Rate operations broke symmetry at ({}, {}): diff={}",
                    i,
                    j,
                    diff
                );
            }
        }
    }

    // ========== Q* Statistic Tests ==========

    #[test]
    fn test_q_statistic_mahalanobis() {
        // Test Mahalanobis distance computation with identity covariance
        let delta = Vector9::from_fn(|i, _| (i as f64) * 2.0);
        let sigma_inv = Matrix9::identity();
        let q = compute_q_statistic(&delta, &sigma_inv);

        // With identity covariance, Q = δ'δ = sum of squares
        let expected: f64 = (0..9).map(|i| ((i as f64) * 2.0).powi(2)).sum();
        assert!(
            (q - expected).abs() < 1e-10,
            "Q should equal sum of squares with identity cov, got {} expected {}",
            q,
            expected
        );
    }

    #[test]
    fn test_q_statistic_zero_delta() {
        // Q should be 0 for zero delta
        let delta = Vector9::zeros();
        let sigma_inv = Matrix9::identity();
        let q = compute_q_statistic(&delta, &sigma_inv);

        assert!(q < 1e-10, "Q should be ~0 for zero delta, got {}", q);
    }

    #[test]
    fn test_q_statistic_is_non_negative() {
        // Q should always be non-negative (it's a quadratic form)
        for seed in 0..10u64 {
            let delta = Vector9::from_fn(|i, _| ((seed * 7 + i as u64 * 13) % 100) as f64 - 50.0);
            let sigma_inv = Matrix9::identity();
            let q = compute_q_statistic(&delta, &sigma_inv);
            assert!(q >= 0.0, "Q should be non-negative, got {}", q);
        }
    }

    #[test]
    fn test_bootstrap_q_thresh_computed() {
        // Generate synthetic timing data with known properties
        use crate::types::Class;

        let n = 1000;
        let mut samples = Vec::with_capacity(2 * n);

        // Create interleaved samples with small difference
        for i in 0..n {
            samples.push(TimingSample {
                time_ns: 100.0 + (i as f64) * 0.01,
                class: Class::Baseline,
            });
            samples.push(TimingSample {
                time_ns: 101.0 + (i as f64) * 0.01,
                class: Class::Sample,
            });
        }

        let estimate = bootstrap_difference_covariance(&samples, 100, 42, false);

        // q_thresh should be computed (positive and finite)
        assert!(
            estimate.q_thresh > 0.0 && estimate.q_thresh.is_finite(),
            "q_thresh should be positive and finite, got {}",
            estimate.q_thresh
        );

        // q_thresh should be different from the fallback in most cases
        // (though it could coincidentally equal 18.48, we expect it to differ)
        // This is a sanity check that the computation is actually running
        println!("Computed q_thresh: {}", estimate.q_thresh);
    }

    #[test]
    fn test_single_class_q_thresh_fallback() {
        // Single-class covariance should use the fallback q_thresh
        let data: Vec<f64> = (0..500).map(|x| (x as f64) * 0.1).collect();
        let estimate = bootstrap_covariance_matrix(&data, 50, 42);

        // Should use fallback value (chi-squared(7, 0.99) ≈ 18.48)
        assert!(
            (estimate.q_thresh - 18.48).abs() < 1e-6,
            "Single-class q_thresh should use fallback 18.48, got {}",
            estimate.q_thresh
        );
    }
}