finquant 0.0.59

Experimental Rust Quant Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
//! Generalised Forward Market Model (FMM) — Lyashenko & Mercurio (2019a, 2020).
//!
//! Extends the classic Libor Market Model so each forward term rate `R_j(t)`
//! smoothly transitions, over its application period `[T_{j−1}, T_j]`, from a
//! forward-looking fixing (at `T_{j−1}`) into a backward-looking
//! setting-in-arrears fixing (at `T_j`). The transition is driven by a
//! deterministic decay function `γ_j(t)`:
//!
//! ```text
//!   γ_j(t) = 1                    for t ≤ T_{j−1}
//!   γ_j(t) ∈ [0, 1], monotone ↓   for T_{j−1} ≤ t ≤ T_j
//!   γ_j(t) = 0                    for t ≥ T_j
//! ```
//!
//! Risk-neutral (Q) dynamics, paper eq. (5):
//!
//! ```text
//!   dR_j(t) = σ_j γ_j(t) · Σ_{i=η(t)}^{j} [ρ_{i,j} τ_i σ_i γ_i(t) / (1 + τ_i R_i(t))] dt
//!             + σ_j γ_j(t) dW_j(t)
//! ```
//!
//! with `η(t) = min{j : T_j ≥ t}` (the currently-fixing rate index) and
//! `dW_i dW_j = ρ_{i,j} dt`.
//!
//! This module implements:
//!
//! * [`FmmTenor`] — the tenor grid and initial forward rates.
//! * [`LinearDecay`] — the canonical `γ_j(t) = (T_j − t)/τ_j` inside the
//!   application period (paper's choice for the mortgage numerical example).
//! * [`Fmm`] — parameters: per-rate vols, correlation matrix, decay.
//! * [`FmmSimulator`] — Euler–Maruyama path simulator under Q with
//!   Cholesky-correlated Brownian increments.
//! * Back-stub bond price `P(t, T_{k−1}, T)` for `T ∈ (T_{k−1}, T_k]`
//!   (paper eq. 30), reconstructed from simulated forward rates and the
//!   tracked diagonal variance `Y_{k,k}(t)`.
//! * Helpers for the derived volatility quantities the HJM bridge needs
//!   (`σ_R`, `Y_{k,k}` integrand — paper eqs. 8, 9, 31).
//!
//! # Papers
//!
//! * **Lyashenko, A., Mercurio, F. (2019a)** — *Libor Replacement: A Modeling
//!   Framework for In-Arrears Term Rates*, Risk July: 72–77. The original
//!   generalised FMM dynamics.
//! * **Lyashenko, A., Mercurio, F. (2020)** — *Libor Replacement II:
//!   Completing the Generalised Forward Market Model*, Risk August: 1–6.
//!   The FMM-fitted Markovian HJM construction and the back-stub /
//!   front-stub interpolations implemented here.

use crate::models::common::simulation::SimulationModel;
use rand::{Rng, SeedableRng};
use rand_chacha::ChaCha20Rng;
use rand_distr::StandardNormal;

/// Tenor grid `0 = T_0 < T_1 < … < T_M` together with the initial forward
/// term rates `R_j(0)`. Year-fractions are measured from the valuation date
/// in whatever day-count convention the caller prefers.
#[derive(Clone, Debug, PartialEq)]
pub struct FmmTenor {
    /// Tenor dates as year-fractions from valuation. Length `M + 1`, with
    /// `dates[0] = 0` for the standard convention.
    pub dates: Vec<f64>,
    /// Initial forward term rates `R_1(0), …, R_M(0)`. Length `M`.
    pub initial_rates: Vec<f64>,
}

impl FmmTenor {
    pub fn new(dates: Vec<f64>, initial_rates: Vec<f64>) -> Self {
        assert!(dates.len() >= 2, "need at least T_0 and T_1");
        assert_eq!(
            dates.len(),
            initial_rates.len() + 1,
            "dates has length M+1 when initial_rates has length M"
        );
        assert!(dates[0] >= 0.0, "T_0 must be non-negative");
        for i in 1..dates.len() {
            assert!(dates[i] > dates[i - 1], "tenor dates strictly increasing");
        }
        Self {
            dates,
            initial_rates,
        }
    }

    /// Number of forward rates `M`.
    pub fn m(&self) -> usize {
        self.initial_rates.len()
    }

    /// Accrual year-fraction `τ_j = T_j − T_{j−1}` for the j-th rate
    /// (1-based: `j ∈ 1..=M`).
    pub fn tau(&self, j: usize) -> f64 {
        assert!(j >= 1 && j <= self.m());
        self.dates[j] - self.dates[j - 1]
    }

    /// `η(t) = min{ j ∈ 1..=M : T_j ≥ t }` — the index of the
    /// currently-fixing (or next-to-fix) forward rate. Returns `M + 1`
    /// once `t > T_M` (no active rate).
    pub fn eta(&self, t: f64) -> usize {
        for j in 1..=self.m() {
            if self.dates[j] >= t {
                return j;
            }
        }
        self.m() + 1
    }
}

/// Linear decay `γ_j(t) = (T_j − t)/τ_j` inside `[T_{j−1}, T_j]`, clamped
/// to `1` before and `0` after. Matches the choice used in Lyashenko &
/// Mercurio (2020)'s mortgage example. The corresponding HJM-separable
/// shape function is `g_j(t) = −γ_j'(t) = 1/τ_j` on the interval.
#[derive(Copy, Clone, Debug, Default, PartialEq)]
pub struct LinearDecay;

impl LinearDecay {
    /// `γ_j(t)` for `j ∈ 1..=M`.
    pub fn gamma(&self, j: usize, t: f64, tenor: &FmmTenor) -> f64 {
        let lo = tenor.dates[j - 1];
        let hi = tenor.dates[j];
        if t <= lo {
            1.0
        } else if t >= hi {
            0.0
        } else {
            (hi - t) / (hi - lo)
        }
    }

    /// `G_j(s, T) = γ_j(s) − γ_j(T)`. Appears in the back-stub formula
    /// and (via `G_j(T_{j−1}, T_j) = 1`) pins the separable decomposition.
    pub fn big_g(&self, j: usize, s: f64, big_t: f64, tenor: &FmmTenor) -> f64 {
        self.gamma(j, s, tenor) - self.gamma(j, big_t, tenor)
    }
}

/// Time-dependence schedule for the FMM rate volatility. Overrides the
/// constant [`Fmm::sigmas`] when present. Two shapes are supported:
///
/// * [`VolSchedule::PiecewiseConstant`] — per-rate step-function vol,
///   useful for calibrated term-structure inputs (e.g. cap vol strips).
///   Knots are `(t_start, σ)` pairs; at a query time `t`, the σ from the
///   largest `t_start ≤ t` is used. The first knot's `t_start` should be
///   `≤ 0`.
/// * [`VolSchedule::HoLeeEquivalent`] — paper eq. (20): the time-varying
///   shape that makes the FMM equivalent, on the given tenor grid, to a
///   one-factor Hull–White / Ho–Lee model with volatility `vol` and
///   mean-reversion `a`. `σ_k(t) = vol · (e^{−a(T_{k−1}−t)} −
///   e^{−a(T_k−t)}) / a` for `t ∈ [0, T_k]` (zero outside). Passing
///   `mean_reversion = 0` gives the Ho–Lee limit `σ_k(t) = vol · τ_k`.
///
/// Both variants are deterministic — no stochastic-vol extensions yet.
#[derive(Clone, Debug, PartialEq)]
pub enum VolSchedule {
    PiecewiseConstant(Vec<Vec<(f64, f64)>>),
    HoLeeEquivalent { vol: f64, mean_reversion: f64 },
}

impl VolSchedule {
    fn sigma_at(&self, j: usize, t: f64, tenor: &FmmTenor) -> f64 {
        match self {
            VolSchedule::PiecewiseConstant(schedules) => {
                let per_rate = &schedules[j - 1];
                assert!(!per_rate.is_empty(), "empty per-rate schedule for j={j}");
                let mut last = per_rate[0].1;
                for &(t_start, sigma) in per_rate.iter() {
                    if t_start <= t {
                        last = sigma;
                    } else {
                        break;
                    }
                }
                last
            }
            VolSchedule::HoLeeEquivalent {
                vol,
                mean_reversion,
            } => {
                let a = *mean_reversion;
                let t_km1 = tenor.dates[j - 1];
                let t_k = tenor.dates[j];
                if t >= t_k {
                    return 0.0;
                }
                if a.abs() < 1e-12 {
                    // Ho–Lee limit: σ_k(t) = vol · τ_k for t ∈ [0, T_k].
                    return vol * (t_k - t_km1);
                }
                vol * ((-a * (t_km1 - t)).exp() - (-a * (t_k - t)).exp()) / a
            }
        }
    }
}

/// Fully specified FMM parameter set.
///
/// `sigmas[j − 1]` is the *default* volatility level `σ_j` entering the
/// rate diffusion `σ_j(t) γ_j(t) · f_j(R_j) dW_j`, where
/// `σ_j(t) = sigmas[j-1]` unless overridden by [`Fmm::vol_schedule`],
/// and `f_j(R_j) = R_j + 1/τ_j` by default unless [`Fmm::betas`] is
/// set to implement shifted-lognormal displacement (paper §FMM
/// notation; see [`Fmm::effective_level`]).
///
/// `correlation[i − 1][j − 1] = ρ_{i,j}` is symmetric with unit
/// diagonal and must be positive semi-definite.
#[derive(Clone, Debug, PartialEq)]
pub struct Fmm {
    pub tenor: FmmTenor,
    /// Per-rate default volatilities `σ_1, …, σ_M`. Used when
    /// `vol_schedule = None`.
    pub sigmas: Vec<f64>,
    /// `M × M` correlation matrix of the driving Brownians.
    pub correlation: Vec<Vec<f64>>,
    pub decay: LinearDecay,
    /// Optional per-rate displacement `β_j ∈ [0, 1]` for shifted-
    /// lognormal dynamics: the effective diffusion level becomes
    /// `β_j R_j(t) + (1 − β_j) R_j(0)` instead of the normal-FMM
    /// default `R_j + 1/τ_j`. `β = 0` reproduces a "scaled-by-R(0)"
    /// lognormal-like regime; `β = 1` gives full local-lognormal.
    /// `None` = pure normal FMM (identical to the original paper
    /// dynamics eq. 5).
    pub betas: Option<Vec<f64>>,
    /// Optional time-dependent / Ho–Lee-equivalent volatility. When
    /// `Some`, [`Fmm::sigma_at`] returns the schedule value; otherwise
    /// it returns the constant `sigmas[j−1]`.
    pub vol_schedule: Option<VolSchedule>,
}

impl Fmm {
    pub fn new(
        tenor: FmmTenor,
        sigmas: Vec<f64>,
        correlation: Vec<Vec<f64>>,
        decay: LinearDecay,
    ) -> Self {
        let m = tenor.m();
        assert_eq!(sigmas.len(), m, "sigmas length must match tenor M");
        assert_eq!(correlation.len(), m, "correlation must be M×M");
        for (i, row) in correlation.iter().enumerate() {
            assert_eq!(row.len(), m, "correlation row {i} length ≠ M");
            assert!(
                (row[i] - 1.0).abs() < 1e-12,
                "correlation diagonal [{i}] ≠ 1"
            );
            for (j, &c) in row.iter().enumerate() {
                assert!(
                    (c - correlation[j][i]).abs() < 1e-12,
                    "correlation not symmetric at ({i},{j})"
                );
                assert!(c.abs() <= 1.0 + 1e-12, "|ρ| > 1 at ({i},{j})");
            }
        }
        for &s in &sigmas {
            assert!(s.is_finite() && s >= 0.0, "σ_j must be non-negative");
        }
        Self {
            tenor,
            sigmas,
            correlation,
            decay,
            betas: None,
            vol_schedule: None,
        }
    }

    /// Enable shifted-lognormal displacement with per-rate `β_j ∈ [0, 1]`.
    /// Replaces the default normal-FMM diffusion level `R_j + 1/τ_j`
    /// with `β_j R_j + (1 − β_j) R_j(0)` inside [`FmmSimulator::step`]
    /// — see [`Fmm::effective_level`].
    pub fn with_betas(mut self, betas: Vec<f64>) -> Self {
        let m = self.tenor.m();
        assert_eq!(betas.len(), m, "betas length must match tenor M");
        for &b in &betas {
            assert!((0.0..=1.0).contains(&b), "β_j must be in [0, 1]");
        }
        self.betas = Some(betas);
        self
    }

    /// Enable a time-dependent volatility schedule. Overrides
    /// [`Fmm::sigmas`] for step-time vol lookups. Use
    /// [`VolSchedule::HoLeeEquivalent`] to reproduce paper eq. (20)'s
    /// Ho–Lee-equivalent FMM.
    pub fn with_vol_schedule(mut self, schedule: VolSchedule) -> Self {
        if let VolSchedule::PiecewiseConstant(sched) = &schedule {
            assert_eq!(
                sched.len(),
                self.tenor.m(),
                "piecewise-constant schedule length must match tenor M"
            );
            for (j, per_rate) in sched.iter().enumerate() {
                assert!(!per_rate.is_empty(), "schedule[{j}] must have ≥ 1 knot");
                for w in per_rate.windows(2) {
                    assert!(
                        w[1].0 > w[0].0,
                        "schedule knots must have strictly increasing t_start"
                    );
                }
            }
        }
        self.vol_schedule = Some(schedule);
        self
    }

    /// Effective `σ_j(t)` — dispatches to [`Fmm::vol_schedule`] if set,
    /// otherwise returns the constant `sigmas[j−1]`.
    pub fn sigma_at(&self, j: usize, t: f64) -> f64 {
        match &self.vol_schedule {
            Some(s) => s.sigma_at(j, t, &self.tenor),
            None => self.sigmas[j - 1],
        }
    }

    /// Displacement level `L_j(R_j)` for the rate diffusion:
    ///
    /// * No βs (default, pure normal FMM) → `1.0` (unit level; paper
    ///   eq. 5 diffusion is just `σ_j γ_j dW`).
    /// * With βs (shifted-lognormal FMM) → `β_j R_j + (1 − β_j) R_j(0)`.
    ///   `β_j = 0` gives "scaled-by-R(0)" near-normal dynamics,
    ///   `β_j = 1` gives local-lognormal, intermediate values mix.
    ///
    /// The effective SDE volatility becomes `σ_j(t) · γ_j(t) · L_j(R_j)`,
    /// used by both drift (paper eq. 5) and diffusion inside
    /// [`FmmSimulator::step`].
    pub fn displacement_level(&self, j: usize, r_j: f64) -> f64 {
        match &self.betas {
            None => 1.0,
            Some(betas) => {
                let b = betas[j - 1];
                let r_j0 = self.tenor.initial_rates[j - 1];
                b * r_j + (1.0 - b) * r_j0
            }
        }
    }

    /// Adapted FMM vol `σ_j(t) · L_j(R_j)` — the scalar quantity that
    /// multiplies `γ_j(t) dW_j` in the rate SDE and drives the drift
    /// sum in paper eq. (5). Reduces to `σ_j` for normal FMM.
    pub fn adapted_vol(&self, j: usize, t: f64, r_j: f64) -> f64 {
        self.sigma_at(j, t) * self.displacement_level(j, r_j)
    }
}

/// Per-path snapshot of the FMM state.
///
/// The state tracks what the back-stub (paper eq. 30) and front-stub
/// (paper eq. 36) formulas need to reconstruct an arbitrary bond price
/// `P(t, T)` and the bank account `B(t)` from simulated forward rates:
///
/// * `rates[j − 1]` — `R_j(t)`, evolved under Q by [`FmmSimulator`]. After
///   `t > T_j`, `R_j(t) = R_j(T_j)` (frozen in-arrears fixing).
/// * `y_diag[j − 1]` — `Y_{j,j}(t) = ∫_0^{min(t, T_j)} [σ_j(s)/(R_j(s) + 1/τ_j)]² ds`
///   (paper eq. 31, extended from `T_{j−1}` up to `T_j` so the front-stub
///   can read `y_k(t) = Y_{k,k}(t) − Y_{k,k}(T_{k−1})`).
/// * `rates_at_start[k − 1]` — snapshot of `R_k(T_{k−1})` captured when
///   `t` crosses `T_{k−1}` (i.e. when rate `k` enters its application
///   period). Needed by the front-stub formula.
/// * `y_at_start[k − 1]` — snapshot of `Y_{k,k}(T_{k−1})` captured at the
///   same crossing.
/// * `x_active` — `x_k(t)` for `k = η(t)` (paper eq. 33). Reset to `0` at
///   each period crossing; only meaningful while `t ∈ (T_{k−1}, T_k]`.
#[derive(Clone, Debug, PartialEq)]
pub struct FmmPath {
    pub rates: Vec<f64>,
    pub y_diag: Vec<f64>,
    pub rates_at_start: Vec<f64>,
    pub y_at_start: Vec<f64>,
    pub x_active: f64,
    pub t: f64,
}

/// Euler–Maruyama path simulator for the generalised FMM under the
/// risk-neutral measure Q. Correlated Brownian increments are produced
/// by applying a lower-triangular Cholesky factor of the correlation
/// matrix to independent standard-normal draws.
pub struct FmmSimulator {
    pub model: Fmm,
    /// Lower-triangular Cholesky factor `L` with `L Lᵀ = ρ`.
    chol: Vec<Vec<f64>>,
    rng: ChaCha20Rng,
}

impl FmmSimulator {
    pub fn new(model: Fmm, seed: u64) -> Result<Self, &'static str> {
        let chol = cholesky(&model.correlation).ok_or("correlation is not positive-definite")?;
        Ok(Self {
            model,
            chol,
            rng: ChaCha20Rng::seed_from_u64(seed),
        })
    }

    /// Path state at `t = 0`. Rates and `Y_{j,j}` are at their
    /// initial values; the period-start snapshot for rate 1 is
    /// initialised here (its application period starts at `T_0 = 0`),
    /// while snapshots for later rates are filled in by [`Self::step`]
    /// as `t` crosses each `T_{k−1}`.
    pub fn initial_path(&self) -> FmmPath {
        let m = self.model.tenor.m();
        let mut rates_at_start = vec![0.0; m];
        rates_at_start[0] = self.model.tenor.initial_rates[0];
        FmmPath {
            rates: self.model.tenor.initial_rates.clone(),
            y_diag: vec![0.0; m],
            rates_at_start,
            y_at_start: vec![0.0; m],
            x_active: 0.0,
            t: 0.0,
        }
    }

    /// Advance one path by `dt` from calendar time `t` using paper
    /// eq. (5) for the forward-rate drift, plus book-keeping needed by
    /// the back-stub / front-stub bond-price formulas:
    ///
    /// * Rates past their application period stay frozen (guaranteed
    ///   by `γ_j(t) = 0`).
    /// * `Y_{j,j}(t)` accumulates the integrand `[σ_j/(R_j + 1/τ_j)]²`
    ///   up to `min(t, T_j)` (paper eq. 31, extended so the front-stub
    ///   can read `y_k(t) = Y_{k,k}(t) − Y_{k,k}(T_{k−1})`).
    /// * `x_k(t)` for `k = η(t)` evolves via paper eq. (33),
    ///   sharing the same Brownian increment as `R_k`.
    /// * On each tenor crossing `t → T_{k−1}⁺`, the new active
    ///   period's start values `R_k(T_{k−1})`, `Y_{k,k}(T_{k−1})` are
    ///   snapshotted and `x_active` is reset to `0`.
    pub fn step(&mut self, path: &mut FmmPath, dt: f64) {
        assert!(dt > 0.0, "dt must be positive");
        let m = self.model.tenor.m();
        let t = path.t;
        let t_mid = t + 0.5 * dt;
        let sqrt_dt = dt.sqrt();

        // Correlated Brownian increments.
        let z: Vec<f64> = (0..m).map(|_| self.rng.sample(StandardNormal)).collect();
        let dw: Vec<f64> = self
            .chol
            .iter()
            .enumerate()
            .map(|(i, row)| {
                let s: f64 = row
                    .iter()
                    .zip(z.iter())
                    .take(i + 1)
                    .map(|(a, b)| a * b)
                    .sum();
                s * sqrt_dt
            })
            .collect();

        // Precompute γ_i(t_mid) and (σ_i·L_i)·γ_i·τ_i/(1+τ_i R_i) for
        // each active i. The adapted vol `σ_i·L_i` lifts the constant
        // `sigmas[i-1]` so both (a) time-dependent vol schedules and
        // (b) shifted-lognormal displacements flow through drift + diffusion.
        let mut gamma_mid = vec![0.0_f64; m];
        let mut drift_weight = vec![0.0_f64; m];
        let mut adapted = vec![0.0_f64; m];
        for i in 1..=m {
            let g = self.model.decay.gamma(i, t_mid, &self.model.tenor);
            gamma_mid[i - 1] = g;
            let r_i = path.rates[i - 1];
            let sig_adapt = self.model.adapted_vol(i, t_mid, r_i);
            adapted[i - 1] = sig_adapt;
            let tau_i = self.model.tenor.tau(i);
            drift_weight[i - 1] = sig_adapt * g * tau_i / (1.0 + tau_i * r_i);
        }

        let eta_old = self.model.tenor.eta(t);
        let mut new_rates = path.rates.clone();
        for j in eta_old..=m {
            let gamma_j = gamma_mid[j - 1];
            if gamma_j == 0.0 {
                // Already past T_j; rate frozen.
                continue;
            }
            let sig_adapt_j = adapted[j - 1];
            let mut sum = 0.0;
            for i in eta_old..=j {
                sum += self.model.correlation[i - 1][j - 1] * drift_weight[i - 1];
            }
            let drift = sig_adapt_j * gamma_j * sum;
            let diffusion = sig_adapt_j * gamma_j * dw[j - 1];
            new_rates[j - 1] = path.rates[j - 1] + drift * dt + diffusion;
        }

        // Accumulate Y_{j,j}(t) up to T_j. For normal FMM the integrand
        // is `[σ_j / (R_j + 1/τ_j)]²` (paper eq. 31); for DD-FMM or
        // time-dependent vol it becomes `[σ_j(t_mid) · L_j / (R_j + 1/τ_j)]²`.
        // The γ_j factor in `σ_j^R` cancels against the HJM shape
        // function inside the separable HJM decomposition.
        for j in 1..=m {
            let tj = self.model.tenor.dates[j];
            if t >= tj {
                continue;
            }
            let effective_dt = (tj - t).min(dt);
            let tau_j = self.model.tenor.tau(j);
            let r_j = path.rates[j - 1];
            let sig_adapt = self.model.adapted_vol(j, t_mid, r_j);
            let integrand = (sig_adapt / (r_j + 1.0 / tau_j)).powi(2);
            path.y_diag[j - 1] += integrand * effective_dt;
        }

        // Evolve x_k(t) for the currently-active rate k = η_old via
        // paper eq. (33): dx_k = g_k(t) y_k(t) dt + (σ_k·L_k)/(R_k+1/τ_k) dW_k.
        // Only meaningful inside the period (t_{k-1} < t < T_k). The σ·L
        // prefactor picks up whatever vol schedule / displacement is set
        // on the model.
        if eta_old >= 1 && eta_old <= m {
            let k = eta_old;
            let tk_minus_1 = self.model.tenor.dates[k - 1];
            let tk = self.model.tenor.dates[k];
            if t > tk_minus_1 && t < tk {
                let tau_k = self.model.tenor.tau(k);
                let r_k_mid = 0.5 * (path.rates[k - 1] + new_rates[k - 1]);
                let sig_adapt_k = self.model.adapted_vol(k, t_mid, r_k_mid);
                // For linear decay γ_k(t) = (T_k − t)/τ_k, g_k = 1/τ_k.
                let g_k = 1.0 / tau_k;
                let y_k = path.y_diag[k - 1] - path.y_at_start[k - 1];
                let drift_x = g_k * y_k;
                let diffusion_x = sig_adapt_k / (r_k_mid + 1.0 / tau_k) * dw[k - 1];
                path.x_active += drift_x * dt + diffusion_x;
            }
        }

        path.rates = new_rates;
        path.t += dt;

        // Period-crossing snapshots: if we just crossed T_{k−1} (the
        // start of rate k's application period), capture R_k and Y_{k,k}
        // at that moment and reset x_active so the front-stub formula
        // reads the correct reference values. (For k = 1 the snapshot
        // is set in `initial_path` already — t crosses T_0 = 0 trivially.)
        let eta_new = self.model.tenor.eta(path.t);
        if eta_new > eta_old {
            for k in (eta_old + 1)..=eta_new.min(m) {
                path.rates_at_start[k - 1] = path.rates[k - 1];
                path.y_at_start[k - 1] = path.y_diag[k - 1];
                path.x_active = 0.0;
            }
        }
    }

    /// Simulate `n_paths` paths on a uniform grid of `n_steps` steps of
    /// width `t_end / n_steps`, returning terminal snapshots. The RNG
    /// advances per-path, so results depend on the seed supplied at
    /// construction.
    pub fn simulate_terminal(
        &mut self,
        t_end: f64,
        n_steps: usize,
        n_paths: usize,
    ) -> Vec<FmmPath> {
        assert!(t_end > 0.0 && n_steps > 0 && n_paths > 0);
        let dt = t_end / n_steps as f64;
        let mut out = Vec::with_capacity(n_paths);
        for _ in 0..n_paths {
            let mut path = self.initial_path();
            for _ in 0..n_steps {
                self.step(&mut path, dt);
            }
            out.push(path);
        }
        out
    }
}

/// Slot into the common date-driven Monte Carlo runner
/// ([`simulate_at_dates`](crate::models::common::simulation::simulate_at_dates)).
/// The state type is [`FmmPath`] — cloned at each captured observation
/// date so per-rate vectors are snapshot-safe. `t` (year-fraction from
/// valuation) is passed through to the runner but the simulator reads
/// its own `path.t` for the actual per-step book-keeping.
impl SimulationModel for FmmSimulator {
    type State = FmmPath;

    fn initial_state(&self) -> Self::State {
        self.initial_path()
    }

    fn step(&mut self, state: &Self::State, _t: f64, dt: f64) -> Self::State {
        let mut next = state.clone();
        FmmSimulator::step(self, &mut next, dt);
        next
    }
}

/// Back-stub forward discount factor `P(t, T_{k−1}, T)` for
/// `t ≤ T_{k−1} < T ≤ T_k`, from paper eq. (30):
///
/// ```text
///   P(t, T_{k−1}, T)
///     = P(0, T_{k−1}, T) · (1 + τ_k R_k(t))^{−G_k(T_{k−1}, T)}
///       · P(0, T_{k−1}, T_k)^{−G_k(T_{k−1}, T)}
///       · exp{ ½ G_k(T_{k−1}, T) · G_k(T, T_k) · Y_{k,k}(t) }
/// ```
///
/// Inputs:
///
/// * `model` — FMM parameters (decay + tenor).
/// * `path` — simulated state at time `t`; supplies `R_k(t)` and
///   `Y_{k,k}(t)` (the latter is integrated up to `min(t, T_{k−1})`,
///   which is exactly the range this formula evaluates it on).
/// * `k` — 1-based index of the application period containing `T`.
/// * `big_t` — the target maturity `T ∈ (T_{k−1}, T_k]`.
/// * `p0_tk_minus_1_big_t` — market forward discount `P(0, T_{k−1}, T)`.
/// * `p0_tk_minus_1_tk` — market forward discount `P(0, T_{k−1}, T_k)`.
///
/// Sanity check: at `T = T_k` (`G_k = 1`, `G_k(T, T_k) = 0`), this
/// collapses to `1 / (1 + τ_k R_k(t))` — the single-period forward
/// discount — matching paper eq. (29).
pub fn back_stub_forward_bond(
    model: &Fmm,
    path: &FmmPath,
    k: usize,
    big_t: f64,
    p0_tk_minus_1_big_t: f64,
    p0_tk_minus_1_tk: f64,
) -> f64 {
    let tenor = &model.tenor;
    assert!(k >= 1 && k <= tenor.m());
    let tk_minus_1 = tenor.dates[k - 1];
    let tk = tenor.dates[k];
    assert!(
        path.t <= tk_minus_1 + 1e-15,
        "back-stub requires t ≤ T_{{k-1}}; got t={} T_{{k-1}}={}",
        path.t,
        tk_minus_1
    );
    assert!(
        big_t > tk_minus_1 - 1e-15 && big_t <= tk + 1e-15,
        "back-stub requires T ∈ (T_{{k-1}}, T_k]"
    );

    let r_k = path.rates[k - 1];
    let tau_k = tenor.tau(k);
    let g_km1_t = model.decay.big_g(k, tk_minus_1, big_t, tenor);
    let g_t_tk = model.decay.big_g(k, big_t, tk, tenor);
    let y_kk = path.y_diag[k - 1];

    let a = p0_tk_minus_1_big_t;
    let b = (1.0 + tau_k * r_k).powf(-g_km1_t);
    let c = p0_tk_minus_1_tk.powf(-g_km1_t);
    let d = (0.5 * g_km1_t * g_t_tk * y_kk).exp();
    a * b * c * d
}

/// Front-stub bond price `P(t, T)` for `T_{k−1} < t < T ≤ T_k`, from
/// paper eq. (36):
///
/// ```text
///   P(t, T) = P(0, t, T) · P(0, T_{k−1}, T_k)^{−G_k(t,T)}
///             · (1 + τ_k R_k(T_{k−1}))^{−G_k(t,T)}
///             · exp{−G_k(t, T) x_k(t) − ½ G_k²(t, T) y_k(t)
///                   + ½ Y_{k,k}(T_{k−1}) · [G_k(T, T_k) G_k(T_{k−1}, T)
///                                           − G_k(t, T_k) G_k(T_{k−1}, t)]}
/// ```
///
/// Reads four fields off the path: `R_k(T_{k−1})` and `Y_{k,k}(T_{k−1})`
/// from the period-start snapshots, `Y_{k,k}(t)` from the running
/// diagonal (to form `y_k(t) = Y_{k,k}(t) − Y_{k,k}(T_{k−1})`), and
/// `x_active` for `x_k(t)`.
///
/// Sanity check: at `T = T_k` (`G_k(T, T_k) = 0`), this collapses to
/// `P(t, T_k)` from eq. (32) with the appropriate `P(T_{k−1}, t, T_k)`
/// forward discount. At `t → T_{k−1}⁺` it reduces to the back-stub
/// formula (30) evaluated at `t = T_{k−1}`.
pub fn front_stub_bond(
    model: &Fmm,
    path: &FmmPath,
    big_t: f64,
    p0_t_big_t: f64,
    p0_tk_minus_1_tk: f64,
) -> f64 {
    let tenor = &model.tenor;
    let k = tenor.eta(path.t);
    assert!(
        k >= 1 && k <= tenor.m(),
        "t must be inside some [T_{{k-1}}, T_k]"
    );
    let tk_minus_1 = tenor.dates[k - 1];
    let tk = tenor.dates[k];
    assert!(
        path.t > tk_minus_1 - 1e-15 && path.t < tk + 1e-15,
        "front-stub requires t ∈ [T_{{k-1}}, T_k]; got t={} in period k={}",
        path.t,
        k
    );
    assert!(
        big_t > path.t - 1e-15 && big_t <= tk + 1e-15,
        "front-stub requires t < T ≤ T_k"
    );

    let tau_k = tenor.tau(k);
    let r_k_start = path.rates_at_start[k - 1];
    let y_at_start = path.y_at_start[k - 1];
    let y_k = path.y_diag[k - 1] - y_at_start;
    let x_k = path.x_active;

    let g_t_big_t = model.decay.big_g(k, path.t, big_t, tenor);
    let g_big_t_tk = model.decay.big_g(k, big_t, tk, tenor);
    let g_km1_big_t = model.decay.big_g(k, tk_minus_1, big_t, tenor);
    let g_t_tk = model.decay.big_g(k, path.t, tk, tenor);
    let g_km1_t = model.decay.big_g(k, tk_minus_1, path.t, tenor);

    let a = p0_t_big_t;
    let b = p0_tk_minus_1_tk.powf(-g_t_big_t);
    let c = (1.0 + tau_k * r_k_start).powf(-g_t_big_t);
    let exponent = -g_t_big_t * x_k - 0.5 * g_t_big_t * g_t_big_t * y_k
        + 0.5 * y_at_start * (g_big_t_tk * g_km1_big_t - g_t_tk * g_km1_t);
    a * b * c * exponent.exp()
}

/// Initial-curve reader: market discount factors at `t = 0`. The FMM
/// needs `P(0, T)` for a range of maturities `T` to evaluate back-stub
/// and front-stub formulas (paper eqs. 30, 36). This trait lets callers
/// supply a spot curve without pulling the full `markets::` yield-curve
/// machinery.
pub trait InitialDiscountCurve {
    /// `P(0, T)` — spot zero-coupon bond at maturity `T ≥ 0`.
    fn p0(&self, big_t: f64) -> f64;

    /// `P(0, s, T) = P(0, T) / P(0, s)` — forward discount between two
    /// future times. Default implementation uses two `p0` lookups.
    fn p0_fwd(&self, s: f64, big_t: f64) -> f64 {
        self.p0(big_t) / self.p0(s)
    }
}

/// Flat-rate curve `P(0, T) = exp(−r · T)`. Convenience implementation
/// useful for tests and debugging.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct FlatCurve {
    pub rate: f64,
}

impl InitialDiscountCurve for FlatCurve {
    fn p0(&self, big_t: f64) -> f64 {
        (-self.rate * big_t).exp()
    }
}

/// General bond price `P(t, T)` for arbitrary `t, T` with `0 ≤ t ≤ T`.
/// Dispatches across the three regimes of paper eq. (25):
///
/// 1. Same period (`T ∈ (T_{η(t)−1}, T_{η(t)}]`): use the front-stub
///    directly.
/// 2. `T` strictly past the current period: decompose via eq. (25)
///    into `P(t, T_{η(t)})` (front-stub, or 1 if `t` is on-grid),
///    the chain `∏ 1/(1+τ_j R_j(t))` across fully-forward-looking
///    periods, and the back-stub `P(t, T_{η(T)−1}, T)`.
/// 3. `t = T`: returns 1 (identity).
pub fn bond_price<C: InitialDiscountCurve>(
    model: &Fmm,
    path: &FmmPath,
    big_t: f64,
    curve: &C,
) -> f64 {
    let tenor = &model.tenor;
    let m = tenor.m();
    let t = path.t;
    assert!(big_t >= t - 1e-15, "P(t, T) requires T ≥ t");
    if (big_t - t).abs() < 1e-15 {
        return 1.0;
    }

    let eta_t = tenor.eta(t);
    let eta_big_t = tenor.eta(big_t);

    // Case 1: T and t in the same application period.
    if eta_big_t == eta_t && eta_t >= 1 && eta_t <= m {
        let k = eta_t;
        let tk_minus_1 = tenor.dates[k - 1];
        // If we're exactly at T_{k-1} (pre-period boundary), use back-stub.
        if t <= tk_minus_1 + 1e-15 {
            let p0_km1_big_t = curve.p0_fwd(tk_minus_1, big_t);
            let p0_km1_tk = curve.p0_fwd(tk_minus_1, tenor.dates[k]);
            return back_stub_forward_bond(model, path, k, big_t, p0_km1_big_t, p0_km1_tk);
        }
        // Inside the period: front-stub.
        let p0_t_big_t = curve.p0_fwd(t, big_t);
        let p0_km1_tk = curve.p0_fwd(tk_minus_1, tenor.dates[k]);
        return front_stub_bond(model, path, big_t, p0_t_big_t, p0_km1_tk);
    }

    // Case 2: full decomposition via paper eq. (25). Note eta returns
    // M+1 once past T_M; bond prices past T_M aren't part of the model.
    assert!(
        eta_big_t <= m,
        "bond_price: T beyond tenor end (T_M={}) not supported",
        tenor.dates[m]
    );

    // P(t, T_{η(t)}): front-stub at T = T_{η(t)}. If t is already at
    // T_{η(t)-1} (between periods), P(t, T_η(t)) is a same-period query
    // handled recursively via the back-stub branch above — but we can
    // inline it here without recursion.
    let t_eta = tenor.dates[eta_t];
    let front_piece = {
        let k = eta_t;
        let tk_minus_1 = tenor.dates[k - 1];
        if t <= tk_minus_1 + 1e-15 {
            let p0_km1_ek = curve.p0_fwd(tk_minus_1, t_eta);
            let p0_km1_tk = curve.p0_fwd(tk_minus_1, tenor.dates[k]);
            back_stub_forward_bond(model, path, k, t_eta, p0_km1_ek, p0_km1_tk)
        } else {
            let p0_t_big = curve.p0_fwd(t, t_eta);
            let p0_km1_tk = curve.p0_fwd(tk_minus_1, tenor.dates[k]);
            front_stub_bond(model, path, t_eta, p0_t_big, p0_km1_tk)
        }
    };

    // Middle chain: ∏ 1/(1 + τ_j R_j(t)) for j = η(t)+1 .. η(T)−1.
    let mut middle = 1.0;
    for j in (eta_t + 1)..eta_big_t {
        middle /= 1.0 + tenor.tau(j) * path.rates[j - 1];
    }

    // Back-stub: P(t, T_{η(T)−1}, T). The state of the path at time `t`
    // has `Y_{η(T), η(T)}` integrated up to min(t, T_{η(T)}); because
    // η(t) < η(T) we have t ≤ T_{η(T)−1}, the range for which the
    // back-stub reads Y_{k,k}(t) (paper eq. 31).
    let back_piece = {
        let k = eta_big_t;
        let tk_minus_1 = tenor.dates[k - 1];
        let tk = tenor.dates[k];
        let p0_km1_big_t = curve.p0_fwd(tk_minus_1, big_t);
        let p0_km1_tk = curve.p0_fwd(tk_minus_1, tk);
        back_stub_forward_bond(model, path, k, big_t, p0_km1_big_t, p0_km1_tk)
    };

    front_piece * middle * back_piece
}

/// Money-market account `B(t)` at calendar time `t`, from paper eq. (26):
///
/// ```text
///   B(t) = P(t, T_{η(t)}) · ∏_{j=1}^{η(t)} [1 + τ_j R_j(t)]
/// ```
///
/// The final product captures the accumulated setting-in-arrears rate
/// fixings — for `j < η(t)` those are frozen backward-looking values,
/// and for `j = η(t)` it is the rate currently observed at time `t`
/// (still evolving until `T_{η(t)}`). The bond factor `P(t, T_{η(t)})`
/// accounts for the yet-to-accrue portion of the current period and is
/// reconstructed via the front-stub (or is `1` when `t` lands exactly
/// on a tenor date).
pub fn bank_account<C: InitialDiscountCurve>(model: &Fmm, path: &FmmPath, curve: &C) -> f64 {
    let tenor = &model.tenor;
    let m = tenor.m();
    let t = path.t;
    let eta_t = tenor.eta(t);

    // ∏_{j=1}^{η(t)} (1 + τ_j R_j(t)), capped at M if past the tenor.
    let upper = eta_t.min(m);
    let mut product = 1.0;
    for j in 1..=upper {
        product *= 1.0 + tenor.tau(j) * path.rates[j - 1];
    }

    // Bond factor to the end of the current period. For t past T_M, we
    // have `η = M+1` and the bond factor degenerates to 1 (all rates
    // have fixed — the account just compounds the product above).
    if eta_t > m {
        return product;
    }
    let bond = bond_price(model, path, tenor.dates[eta_t], curve);
    product * bond
}

/// Cholesky factorisation of a symmetric positive-definite matrix.
/// Returns the lower-triangular factor `L` with `L Lᵀ = m`, or `None`
/// if the input is not positive-definite.
#[allow(clippy::needless_range_loop)] // dense matrix indexing is idiomatic here
fn cholesky(m: &[Vec<f64>]) -> Option<Vec<Vec<f64>>> {
    let n = m.len();
    let mut l = vec![vec![0.0_f64; n]; n];
    for i in 0..n {
        for j in 0..=i {
            let mut sum = m[i][j];
            for k in 0..j {
                sum -= l[i][k] * l[j][k];
            }
            if i == j {
                if sum <= 0.0 {
                    return None;
                }
                l[i][i] = sum.sqrt();
            } else {
                l[i][j] = sum / l[j][j];
            }
        }
    }
    Some(l)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::models::common::simulation::simulate_at_dates;
    use crate::time::daycounters::actual365fixed::Actual365Fixed;
    use chrono::NaiveDate;

    fn flat_tenor(m: usize, dt: f64, r0: f64) -> FmmTenor {
        let dates: Vec<f64> = (0..=m).map(|k| k as f64 * dt).collect();
        let rates = vec![r0; m];
        FmmTenor::new(dates, rates)
    }

    fn identity_corr(m: usize) -> Vec<Vec<f64>> {
        (0..m)
            .map(|i| (0..m).map(|j| if i == j { 1.0 } else { 0.0 }).collect())
            .collect()
    }

    /// η(t) crosses over each tenor point: at `t = T_k` itself, the
    /// k-th rate is still "active" (`T_k ≥ t`). Just past `T_k`, it
    /// has crossed over and the next rate becomes active.
    #[test]
    fn eta_tracks_tenor_crossings() {
        let tenor = flat_tenor(3, 0.5, 0.02);
        assert_eq!(tenor.eta(-1.0), 1);
        assert_eq!(tenor.eta(0.0), 1);
        assert_eq!(tenor.eta(0.25), 1);
        assert_eq!(tenor.eta(0.5), 1); // T_1 = 0.5 satisfies T_1 ≥ t.
        assert_eq!(tenor.eta(0.5 + 1e-12), 2);
        assert_eq!(tenor.eta(1.5), 3);
        assert_eq!(tenor.eta(10.0), 4); // past T_M = 1.5 ⇒ M + 1.
    }

    /// Linear decay: γ_j(T_{j-1}) = 1, γ_j(T_j) = 0, midpoint = 0.5.
    /// γ_j ≡ 1 before the period and ≡ 0 after.
    #[test]
    fn linear_decay_hits_endpoints() {
        let tenor = flat_tenor(2, 1.0, 0.02);
        let d = LinearDecay;
        assert!((d.gamma(1, 0.0, &tenor) - 1.0).abs() < 1e-15);
        assert!((d.gamma(1, 0.5, &tenor) - 0.5).abs() < 1e-15);
        assert!(d.gamma(1, 1.0, &tenor).abs() < 1e-15);
        assert!((d.gamma(2, 0.9, &tenor) - 1.0).abs() < 1e-15);
        assert!((d.gamma(2, 1.5, &tenor) - 0.5).abs() < 1e-15);
        assert!(d.gamma(2, 2.0, &tenor).abs() < 1e-15);
        // G_j(T_{j−1}, T_j) = 1 — required for the separable HJM match.
        assert!((d.big_g(1, 0.0, 1.0, &tenor) - 1.0).abs() < 1e-15);
        assert!((d.big_g(2, 1.0, 2.0, &tenor) - 1.0).abs() < 1e-15);
    }

    /// Simulator at `t = 0` returns the initial rates exactly, zero Y,
    /// and the rate-1 start snapshot initialised (period 1 opens at
    /// `T_0 = 0`). Later-rate snapshots stay at defaults until `t`
    /// crosses their period starts.
    #[test]
    fn initial_path_matches_tenor() {
        let tenor = flat_tenor(3, 0.5, 0.03);
        let model = Fmm::new(tenor, vec![0.01; 3], identity_corr(3), LinearDecay);
        let sim = FmmSimulator::new(model, 7).unwrap();
        let path = sim.initial_path();
        assert_eq!(path.rates, vec![0.03; 3]);
        assert_eq!(path.y_diag, vec![0.0; 3]);
        assert_eq!(path.rates_at_start[0], 0.03);
        assert_eq!(path.y_at_start, vec![0.0; 3]);
        assert_eq!(path.x_active, 0.0);
        assert_eq!(path.t, 0.0);
    }

    /// Once a rate's application period has ended (`t > T_j`), the rate is
    /// frozen at its setting-in-arrears value (γ_j = 0 kills both drift
    /// and diffusion).
    #[test]
    fn rate_freezes_after_its_maturity() {
        let tenor = flat_tenor(2, 0.5, 0.02);
        let model = Fmm::new(tenor, vec![0.05; 2], identity_corr(2), LinearDecay);
        let mut sim = FmmSimulator::new(model, 42).unwrap();
        let mut path = sim.initial_path();
        // Walk past T_1 = 0.5.
        let dt = 0.01;
        let n_steps = 80; // t ends at 0.8, past T_1 but before T_2 = 1.0.
        for _ in 0..n_steps {
            sim.step(&mut path, dt);
        }
        let r1_past = path.rates[0];
        // Continue to t = 0.9 — R_1 must not move.
        for _ in 0..10 {
            sim.step(&mut path, dt);
        }
        assert!((path.rates[0] - r1_past).abs() < 1e-14);
    }

    /// Forward-measure martingale sanity: under the T_j-forward measure
    /// the rate `R_j` is a martingale. Under Q (simulated here) it
    /// picks up a small convexity drift, but for small σ on a short
    /// horizon the mean should stay close to `R_j(0)` — the leading
    /// drift term is `O(σ² τ)`.
    #[test]
    fn mc_mean_near_initial_for_small_vol() {
        // Three-period 6M tenor, flat 2% rates, small vol for a clean MC.
        let tenor = flat_tenor(3, 0.5, 0.02);
        let model = Fmm::new(tenor, vec![0.005; 3], identity_corr(3), LinearDecay);
        let mut sim = FmmSimulator::new(model, 1234).unwrap();

        let t_end = 0.25; // t < T_1 = 0.5, so all three rates are active.
        let n_steps = 50;
        let n_paths = 5_000;
        let paths = sim.simulate_terminal(t_end, n_steps, n_paths);

        for j in 0..3 {
            let mean: f64 = paths.iter().map(|p| p.rates[j]).sum::<f64>() / n_paths as f64;
            // Expected convexity bias bounded by σ² t ≈ 6e-6 → mean
            // should be within ~5e-4 of 0.02 even at 95% MC CI.
            assert!(
                (mean - 0.02).abs() < 1e-3,
                "rate {} mean {:.6} drifted too far from 0.02",
                j + 1,
                mean
            );
        }
    }

    /// Back-stub forward bond at `T = T_k` reduces to the single-period
    /// forward discount `1 / (1 + τ_k R_k(t))`, regardless of what
    /// Y_{k,k} or the market discount factors are (`G_k(T_k, T_k) = 0`
    /// kills the Y exponent, and G_k(T_{k-1}, T_k) = 1 makes the market
    /// ratio cancel).
    #[test]
    fn back_stub_reduces_at_period_end() {
        let tenor = flat_tenor(2, 0.5, 0.03);
        let model = Fmm::new(tenor, vec![0.01; 2], identity_corr(2), LinearDecay);
        let sim = FmmSimulator::new(model.clone(), 7).unwrap();
        let mut path = sim.initial_path();
        path.rates[0] = 0.035;
        path.y_diag[0] = 1e-6;

        // P(0, T_0, T_1) and P(0, T_0, T_0) = 1 for flat curve.
        // Market forward to T_k = T_1 is the same as P(0, 0.5) on flat 3%.
        let p0_t0_t1 = (-0.03_f64 * 0.5).exp();
        let p0_t0_big_t = p0_t0_t1;
        let got = back_stub_forward_bond(&model, &path, 1, 0.5, p0_t0_big_t, p0_t0_t1);
        let want = 1.0 / (1.0 + model.tenor.tau(1) * path.rates[0]);
        assert!(
            (got - want).abs() < 1e-12,
            "back-stub at T_k: got {} vs single-period {} ",
            got,
            want
        );
    }

    /// Back-stub bond is monotone in tenor across its period: for a
    /// fixed path state, `P(t, T_{k-1}, T)` decreases as `T → T_k`.
    #[test]
    fn back_stub_is_monotone_across_period() {
        let tenor = flat_tenor(1, 1.0, 0.02);
        let model = Fmm::new(tenor, vec![0.01], vec![vec![1.0]], LinearDecay);
        let sim = FmmSimulator::new(model.clone(), 1).unwrap();
        let path = sim.initial_path();
        let flat = |t: f64| (-0.02_f64 * t).exp();
        let p1 = back_stub_forward_bond(&model, &path, 1, 0.25, flat(0.25), flat(1.0));
        let p2 = back_stub_forward_bond(&model, &path, 1, 0.50, flat(0.50), flat(1.0));
        let p3 = back_stub_forward_bond(&model, &path, 1, 0.75, flat(0.75), flat(1.0));
        let p4 = back_stub_forward_bond(&model, &path, 1, 1.00, flat(1.00), flat(1.0));
        assert!(p1 > p2 && p2 > p3 && p3 > p4, "P(·,T) not decreasing in T");
    }

    /// `Y_{j,j}(t)` integrates from `0` to `min(t, T_j)` and then
    /// freezes. Once `t > T_j`, further steps must not move
    /// `y_diag[j−1]` (paper eq. 31, extended from `T_{j−1}` up to `T_j`
    /// so the front-stub can read `Y_{k,k}(T_{k−1})` and the within-period
    /// increment `y_k(t)`).
    #[test]
    fn y_diag_stops_at_period_end() {
        let tenor = flat_tenor(2, 0.5, 0.03);
        let model = Fmm::new(tenor, vec![0.01; 2], identity_corr(2), LinearDecay);
        let mut sim = FmmSimulator::new(model, 999).unwrap();
        let mut path = sim.initial_path();
        let dt = 0.05;
        // Walk past T_1 = 0.5 — rate 1's application period ends there.
        for _ in 0..12 {
            sim.step(&mut path, dt);
        }
        assert!(path.t > 0.59 && path.t < 0.61);
        let y1_frozen = path.y_diag[0];
        assert!(y1_frozen > 0.0, "Y_1,1 should have grown across [0, T_1]");
        // Keep stepping — Y_{1,1} must not move further.
        for _ in 0..5 {
            sim.step(&mut path, dt);
        }
        assert!(
            (path.y_diag[0] - y1_frozen).abs() < 1e-15,
            "Y_1,1 moved past T_1: {} vs {}",
            path.y_diag[0],
            y1_frozen
        );
        // Rate 2 still inside its period, so Y_{2,2} still growing.
        assert!(path.y_diag[1] > 0.0);
    }

    /// Period-crossing snapshots fire as `t` moves past `T_{k−1}`:
    /// `rates_at_start[k−1]` captures `R_k(T_{k−1})` and `y_at_start[k−1]`
    /// captures `Y_{k,k}(T_{k−1})`; `x_active` resets to 0.
    #[test]
    fn period_crossing_snapshots_fire() {
        let tenor = flat_tenor(2, 0.5, 0.02);
        let model = Fmm::new(tenor, vec![0.01; 2], identity_corr(2), LinearDecay);
        let mut sim = FmmSimulator::new(model, 7).unwrap();
        let mut path = sim.initial_path();

        // Initial state: rate 1's application starts at T_0 = 0, so
        // its start snapshot equals R_1(0) and y_at_start[0] = 0.
        assert_eq!(path.rates_at_start[0], 0.02);
        assert_eq!(path.y_at_start[0], 0.0);
        // Rate 2's period hasn't started yet — the snapshot is the
        // default (0.0), and will be overwritten at the crossing.
        assert_eq!(path.rates_at_start[1], 0.0);

        let dt = 0.05;
        for _ in 0..11 {
            sim.step(&mut path, dt);
        }
        assert!(path.t > 0.5 - 1e-12, "should be past T_1 = 0.5");
        // Rate 2's snapshots must now be populated with its values at
        // T_1 crossing time.
        assert!(path.rates_at_start[1] != 0.0, "R_2(T_1) snapshot missing");
        assert!(path.y_at_start[1] > 0.0, "Y_2,2(T_1) snapshot missing");
        // And x_active is reset for the new active period.
        assert_eq!(path.x_active, 0.0);
    }

    /// Front-stub bond price at `T = T_k` agrees with the eq. (32)
    /// reconstruction using `Y_{k,k}(T_{k−1})` and the decayed factors.
    /// Separately: at `T = T_k`, `P(t, T_k)` must be strictly less than
    /// `1` whenever `t < T_k` (a future-dated discount factor in a
    /// positive-rate curve).
    #[test]
    fn front_stub_bond_is_future_discount() {
        let tenor = flat_tenor(2, 0.5, 0.03);
        let model = Fmm::new(tenor.clone(), vec![0.005; 2], identity_corr(2), LinearDecay);
        let mut sim = FmmSimulator::new(model.clone(), 42).unwrap();
        let mut path = sim.initial_path();
        let dt = 0.02;
        for _ in 0..15 {
            // t advances from 0 to 0.30 — inside period 1 = [0, 0.5].
            sim.step(&mut path, dt);
        }
        assert!(path.t > 0.29 && path.t < 0.31);
        let curve = FlatCurve { rate: 0.03 };
        // P(t, T_1). T_1 = 0.5, t ≈ 0.30.
        let p0_t_big = curve.p0_fwd(path.t, 0.5);
        let p0_km1_tk = curve.p0_fwd(0.0, 0.5);
        let p_t_tk = front_stub_bond(&model, &path, 0.5, p0_t_big, p0_km1_tk);
        assert!(p_t_tk > 0.0 && p_t_tk < 1.0);
        // Consistency with bond_price dispatcher.
        let p_dispatch = bond_price(&model, &path, 0.5, &curve);
        assert!(
            (p_t_tk - p_dispatch).abs() < 1e-12,
            "front-stub vs dispatcher: {} vs {}",
            p_t_tk,
            p_dispatch
        );
    }

    /// `bond_price` dispatcher spans the three regimes: at-`t` maturity
    /// returns 1, same-period uses back-stub (when `t = T_{k−1}`) or
    /// front-stub (when `t > T_{k−1}`), and multi-period uses the eq. (25)
    /// decomposition. Check the identity at `T = t`: `P(t, t) = 1`.
    #[test]
    fn bond_price_identity_at_own_time() {
        let tenor = flat_tenor(3, 0.5, 0.025);
        let model = Fmm::new(tenor, vec![0.01; 3], identity_corr(3), LinearDecay);
        let sim = FmmSimulator::new(model.clone(), 3).unwrap();
        let path = sim.initial_path();
        let curve = FlatCurve { rate: 0.025 };
        assert!((bond_price(&model, &path, 0.0, &curve) - 1.0).abs() < 1e-15);
    }

    /// At `t = 0` with deterministic state, the bond price dispatcher
    /// must reproduce the market curve exactly: `P(0, T) = p0(T)` for
    /// every maturity inside the tenor grid. This is the time-0
    /// calibration guarantee of the FMM-HJM bridge.
    #[test]
    fn bond_price_reproduces_market_curve_at_time_zero() {
        let tenor = flat_tenor(3, 0.5, 0.02);
        // Use initial rates consistent with the flat curve: on a flat
        // `r` curve, R_j(0) = (exp(r·τ_j) − 1)/τ_j ≈ r for small r·τ.
        let r = 0.02_f64;
        let tau = 0.5_f64;
        let r_j = (r * tau).exp_m1() / tau;
        let tenor = FmmTenor::new(tenor.dates.clone(), vec![r_j; 3]);
        let model = Fmm::new(tenor, vec![0.01; 3], identity_corr(3), LinearDecay);
        let sim = FmmSimulator::new(model.clone(), 0).unwrap();
        let path = sim.initial_path();
        let curve = FlatCurve { rate: r };
        for &big_t in &[0.25_f64, 0.5, 0.8, 1.0, 1.25, 1.5] {
            let got = bond_price(&model, &path, big_t, &curve);
            let want = curve.p0(big_t);
            assert!(
                (got - want).abs() < 1e-12,
                "P(0, {}) got {} vs market {}",
                big_t,
                got,
                want
            );
        }
    }

    /// Bank account `B(0) = 1` at the valuation date.
    #[test]
    fn bank_account_is_one_at_time_zero() {
        let tenor = flat_tenor(2, 0.5, 0.02);
        let r = 0.02_f64;
        let tau = 0.5_f64;
        let r_j = (r * tau).exp_m1() / tau;
        let tenor = FmmTenor::new(tenor.dates.clone(), vec![r_j; 2]);
        let model = Fmm::new(tenor, vec![0.01; 2], identity_corr(2), LinearDecay);
        let sim = FmmSimulator::new(model.clone(), 0).unwrap();
        let path = sim.initial_path();
        let curve = FlatCurve { rate: r };
        let b = bank_account(&model, &path, &curve);
        // At t = 0, η = 1, product = 1 + τ_1 R_1(0), bond = P(0, T_1).
        // Since R_1(0) = (exp(rτ)-1)/τ, 1+τR = exp(rτ), and P(0, T_1) =
        // exp(-rτ). Their product is 1 — i.e. B(0) = 1.
        assert!((b - 1.0).abs() < 1e-12, "B(0) = {} ≠ 1", b);
    }

    /// Bank account is monotone increasing along any path with positive
    /// rates: `B(t)` compounds, so at a later calendar time the value
    /// must be at least what it was earlier (on the same path). This is
    /// a path-wise invariant for small-rate deterministic curves, even
    /// accounting for the Monte Carlo rate diffusion.
    #[test]
    fn bank_account_grows_along_path() {
        let tenor = flat_tenor(3, 0.5, 0.03);
        let model = Fmm::new(tenor, vec![0.005; 3], identity_corr(3), LinearDecay);
        let mut sim = FmmSimulator::new(model.clone(), 2024).unwrap();
        let mut path = sim.initial_path();
        let curve = FlatCurve { rate: 0.03 };

        let dt = 0.05;
        let mut last = bank_account(&model, &path, &curve);
        for _ in 0..30 {
            // Walk across two full periods.
            sim.step(&mut path, dt);
            let next = bank_account(&model, &path, &curve);
            // Allow tiny numerical slack for the Euler stepping of x_k
            // but the compounding trend must dominate.
            assert!(
                next >= last - 1e-8,
                "B({}) = {} dropped from previous {}",
                path.t,
                next,
                last
            );
            last = next;
        }
        assert!(last > 1.0, "final B({}) = {} should exceed 1", path.t, last);
    }

    /// Cholesky round-trip for a 3×3 correlation matrix.
    #[test]
    fn cholesky_reproduces_correlation() {
        let rho = vec![
            vec![1.0, 0.3, 0.1],
            vec![0.3, 1.0, 0.4],
            vec![0.1, 0.4, 1.0],
        ];
        let l = cholesky(&rho).expect("positive-definite");
        for (i, li) in l.iter().enumerate() {
            for (j, lj) in l.iter().enumerate() {
                let s: f64 = li.iter().zip(lj.iter()).map(|(a, b)| a * b).sum();
                assert!((s - rho[i][j]).abs() < 1e-12);
            }
        }
    }

    /// Non-positive-definite correlation fails construction.
    #[test]
    fn simulator_rejects_bad_correlation() {
        let tenor = flat_tenor(2, 0.5, 0.02);
        // [[1, 2], [2, 1]] — not a valid correlation.
        let bad = vec![vec![1.0, 0.99], vec![0.99, 1.0]];
        // This passes the |ρ| ≤ 1 check inside Fmm::new.
        let model = Fmm::new(tenor, vec![0.01; 2], bad, LinearDecay);
        assert!(FmmSimulator::new(model, 0).is_ok());

        // But ρ ≡ 1 on off-diagonal of a 3×3 block is semi-definite and
        // fails the strict Cholesky. Check that failure path is wired:
        let tenor3 = flat_tenor(3, 0.5, 0.02);
        let singular = vec![
            vec![1.0, 1.0, 1.0],
            vec![1.0, 1.0, 1.0],
            vec![1.0, 1.0, 1.0],
        ];
        let bad_model = Fmm::new(tenor3, vec![0.01; 3], singular, LinearDecay);
        assert!(FmmSimulator::new(bad_model, 0).is_err());
    }

    /// `FmmSimulator` slots into the generic date-driven runner
    /// `simulate_at_dates` via the `SimulationModel` trait. Each captured
    /// observation returns an `FmmPath` snapshot with the per-rate state
    /// vector cloned to the output. Smoke test that states at a pair of
    /// observation dates are well-formed (correct M, monotone `t`).
    #[test]
    fn simulation_model_impl_works_with_generic_runner() {
        let tenor = flat_tenor(3, 0.5, 0.03);
        let model = Fmm::new(tenor, vec![0.005; 3], identity_corr(3), LinearDecay);
        let mut sim = FmmSimulator::new(model, 99).unwrap();

        let val = NaiveDate::from_ymd_opt(2025, 1, 1).unwrap();
        let d1 = NaiveDate::from_ymd_opt(2025, 4, 1).unwrap();
        let d2 = NaiveDate::from_ymd_opt(2025, 7, 1).unwrap();
        let dc = Actual365Fixed::default();
        let paths = simulate_at_dates(&mut sim, val, &[d1, d2], 50, 7, &dc);
        assert_eq!(paths.n_paths(), 50);
        let at_d1 = paths.states_at(d1).unwrap();
        let at_d2 = paths.states_at(d2).unwrap();
        for (s1, s2) in at_d1.iter().zip(at_d2.iter()) {
            assert_eq!(s1.rates.len(), 3);
            assert!(s1.t < s2.t);
        }
        // Sample shortcut: pull R_1 at d2 across paths.
        let r1_at_d2 = paths.sample(d2, |p| p.rates[0]).unwrap();
        assert_eq!(r1_at_d2.len(), 50);
    }

    // --- β-displacement & time-dependent σ tests --------------------------

    /// `displacement_level` is 1.0 by default (normal FMM) and
    /// `β_j R_j + (1 − β_j) R_j(0)` once βs are installed via
    /// [`Fmm::with_betas`].
    #[test]
    fn displacement_level_matches_convention() {
        let tenor = flat_tenor(2, 0.5, 0.04);
        let model = Fmm::new(tenor.clone(), vec![0.01; 2], identity_corr(2), LinearDecay);
        // No βs: level ≡ 1.
        assert_eq!(model.displacement_level(1, 0.06), 1.0);
        assert_eq!(model.displacement_level(2, 0.00), 1.0);

        let dd = Fmm::new(tenor, vec![0.01; 2], identity_corr(2), LinearDecay)
            .with_betas(vec![1.0, 0.5]);
        // β=1: level = R_j → 0.06.
        assert!((dd.displacement_level(1, 0.06) - 0.06).abs() < 1e-15);
        // β=0.5, R_j = 0.03, R_j(0) = 0.04 → 0.5·0.03 + 0.5·0.04 = 0.035.
        assert!((dd.displacement_level(2, 0.03) - 0.035).abs() < 1e-15);
    }

    /// Paper-exact Ho–Lee-equivalent formula (eq. 20) is reproduced by
    /// [`VolSchedule::HoLeeEquivalent`]. At `t = 0`, τ_k = 0.5, a = 0.01:
    /// σ_k(0) = vol · (e^{−a·T_{k-1}} − e^{−a·T_k}) / a. Also verify the
    /// λ → 0 Ho–Lee limit collapses to `vol · τ_k`.
    #[test]
    fn ho_lee_equivalent_vol_matches_paper_formula() {
        let tenor = FmmTenor::new(vec![0.0, 0.5, 1.0, 1.5], vec![0.02; 3]);
        let schedule = VolSchedule::HoLeeEquivalent {
            vol: 0.01,
            mean_reversion: 0.05,
        };
        let a = 0.05_f64;
        let vol = 0.01_f64;
        // k = 1, t = 0: σ_1(0) = 0.01 · (1 − e^{−0.025}) / 0.05.
        let want_k1 = vol * (1.0 - (-a * 0.5_f64).exp()) / a;
        assert!((schedule.sigma_at(1, 0.0, &tenor) - want_k1).abs() < 1e-15);
        // k = 2, t = 0.25: within rate 1's period but affects rate 2 ahead.
        let t = 0.25_f64;
        let want_k2 = vol * ((-a * (0.5 - t)).exp() - (-a * (1.0 - t)).exp()) / a;
        assert!((schedule.sigma_at(2, t, &tenor) - want_k2).abs() < 1e-15);
        // Past T_k: σ ≡ 0.
        assert_eq!(schedule.sigma_at(1, 0.6, &tenor), 0.0);

        // λ → 0 limit: σ_k(t) = vol · τ_k, independent of t inside (0, T_k).
        let ho_lee = VolSchedule::HoLeeEquivalent {
            vol: 0.01,
            mean_reversion: 0.0,
        };
        assert!((ho_lee.sigma_at(1, 0.0, &tenor) - vol * 0.5).abs() < 1e-15);
        assert!((ho_lee.sigma_at(2, 0.2, &tenor) - vol * 0.5).abs() < 1e-15);
    }

    /// Piecewise-constant schedule: step-function vol via
    /// [`VolSchedule::PiecewiseConstant`]. Looks up the largest
    /// `t_start ≤ t` on each rate's knot list.
    #[test]
    fn piecewise_constant_schedule_steps_at_knots() {
        let tenor = flat_tenor(2, 0.5, 0.03);
        let schedule = VolSchedule::PiecewiseConstant(vec![
            vec![(0.0, 0.01), (0.25, 0.02)],
            vec![(0.0, 0.015)],
        ]);
        assert!((schedule.sigma_at(1, 0.0, &tenor) - 0.01).abs() < 1e-15);
        assert!((schedule.sigma_at(1, 0.24, &tenor) - 0.01).abs() < 1e-15);
        assert!((schedule.sigma_at(1, 0.25, &tenor) - 0.02).abs() < 1e-15);
        assert!((schedule.sigma_at(1, 0.4, &tenor) - 0.02).abs() < 1e-15);
        assert!((schedule.sigma_at(2, 0.1, &tenor) - 0.015).abs() < 1e-15);
    }

    /// Backward-compat sanity: the simulator's `step` produces
    /// **identical** paths under an FMM with and without an explicit
    /// `betas = None, vol_schedule = None` — since the defaults flow
    /// through `adapted_vol` = `sigmas[j-1]`.
    #[test]
    fn default_fmm_matches_normal_step_bitwise() {
        let tenor = flat_tenor(2, 0.5, 0.03);
        let base = Fmm::new(tenor.clone(), vec![0.02; 2], identity_corr(2), LinearDecay);
        let mut sim1 = FmmSimulator::new(base.clone(), 7).unwrap();
        let mut sim2 = FmmSimulator::new(base, 7).unwrap();
        let mut p1 = sim1.initial_path();
        let mut p2 = sim2.initial_path();
        for _ in 0..20 {
            sim1.step(&mut p1, 0.02);
            sim2.step(&mut p2, 0.02);
        }
        assert_eq!(p1.rates, p2.rates);
        assert_eq!(p1.y_diag, p2.y_diag);
    }

    /// Adding an equivalent constant `VolSchedule::PiecewiseConstant`
    /// that matches `sigmas` should reproduce the default-schedule
    /// simulator within floating-point error.
    #[test]
    fn constant_schedule_matches_no_schedule() {
        let tenor = flat_tenor(2, 0.5, 0.03);
        let plain = Fmm::new(tenor.clone(), vec![0.02; 2], identity_corr(2), LinearDecay);
        let scheduled =
            Fmm::new(tenor, vec![0.02; 2], identity_corr(2), LinearDecay).with_vol_schedule(
                VolSchedule::PiecewiseConstant(vec![vec![(0.0, 0.02)], vec![(0.0, 0.02)]]),
            );
        let mut sim1 = FmmSimulator::new(plain, 123).unwrap();
        let mut sim2 = FmmSimulator::new(scheduled, 123).unwrap();
        let mut p1 = sim1.initial_path();
        let mut p2 = sim2.initial_path();
        for _ in 0..20 {
            sim1.step(&mut p1, 0.02);
            sim2.step(&mut p2, 0.02);
        }
        for j in 0..2 {
            assert!((p1.rates[j] - p2.rates[j]).abs() < 1e-14);
            assert!((p1.y_diag[j] - p2.y_diag[j]).abs() < 1e-14);
        }
    }

    /// `β = 1` lognormal-style displacement keeps the simulated rates
    /// strictly positive along a path, because the diffusion is
    /// proportional to `R_j` itself — a zero rate has zero diffusion.
    /// (Euler scheme can still dip slightly negative on rare steps, so
    /// allow a tiny numerical slack; the check that matters is the
    /// absence of systematic negative excursions.)
    #[test]
    fn beta_one_lognormal_keeps_rates_mostly_positive() {
        let tenor = flat_tenor(3, 0.5, 0.02);
        let model =
            Fmm::new(tenor, vec![0.30; 3], identity_corr(3), LinearDecay).with_betas(vec![1.0; 3]);
        let mut sim = FmmSimulator::new(model, 2026).unwrap();
        let paths = sim.simulate_terminal(1.0, 200, 500);
        let negatives = paths
            .iter()
            .flat_map(|p| p.rates.iter())
            .filter(|&&r| r < -1e-4)
            .count();
        // Expect near-zero count; allow at most 1 % of (paths × rates).
        let budget = paths.len() * 3 / 100;
        assert!(
            negatives <= budget,
            "β=1 lognormal produced {} noticeable-negative rates (budget {})",
            negatives,
            budget
        );
    }

    /// β = 0 collapses the displacement level to `R_j(0)` (constant),
    /// so the diffusion is Gaussian with `σ · R_j(0)` amplitude. The
    /// closed-form terminal variance for rate 1 at horizon `T < T_1`
    /// is `(σ · R_0)² · ∫₀^T γ_1(s)² ds`. For linear decay on `[0, T_1]`
    /// this integral is `(T_1 − (T_1 − T)³ / (3 T_1²))` analytically;
    /// compute it in closed form and check the Monte Carlo variance
    /// agrees within 5 %.
    #[test]
    fn beta_zero_gives_gaussian_with_r0_scaled_variance() {
        let tenor = flat_tenor(3, 0.5, 0.04);
        let sigma = 0.20_f64;
        let r0 = 0.04_f64;
        let t1 = 0.5_f64;
        let t_end = 0.1_f64;
        let model =
            Fmm::new(tenor, vec![sigma; 3], identity_corr(3), LinearDecay).with_betas(vec![0.0; 3]);
        let mut sim = FmmSimulator::new(model, 42).unwrap();
        let paths = sim.simulate_terminal(t_end, 50, 10_000);
        let r1: Vec<f64> = paths.iter().map(|p| p.rates[0]).collect();
        let mean: f64 = r1.iter().sum::<f64>() / r1.len() as f64;
        let var: f64 = r1.iter().map(|r| (r - mean).powi(2)).sum::<f64>() / r1.len() as f64;

        // ∫₀^T γ_1(s)² ds  with γ_1(s) = (T_1 − s)/T_1 on [0, T_1]:
        //   = (T_1³ − (T_1 − T)³) / (3 · T_1²)
        let gamma_sq_integral = (t1.powi(3) - (t1 - t_end).powi(3)) / (3.0 * t1 * t1);
        let expected = (sigma * r0).powi(2) * gamma_sq_integral;
        assert!(
            (var - expected).abs() < 0.05 * expected,
            "β=0 MC var {:.3e} vs expected {:.3e}",
            var,
            expected
        );
    }

    /// `with_betas` validates length and range `[0, 1]`.
    #[test]
    #[should_panic(expected = "β_j must be in [0, 1]")]
    fn with_betas_rejects_out_of_range() {
        let tenor = flat_tenor(2, 0.5, 0.03);
        let _ = Fmm::new(tenor, vec![0.01; 2], identity_corr(2), LinearDecay)
            .with_betas(vec![0.5, 1.5]);
    }
}