dag-ml-core 0.3.23

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

use std::collections::BTreeSet;

use serde::{Deserialize, Serialize};

use crate::canonical::parse_typed_json;
use crate::conformal::{
    apply_split_absolute_residual, finite_sample_conformal_rank, split_absolute_residual_quantiles,
    ConformalMultiTargetPolicy, ConformalSmallSamplePolicy, RegressionConformalInterval,
    SplitConformalQuantile,
};
use crate::error::{DagMlError, Result};
use crate::ids::SampleId;
use crate::oof::PredictionBlock;
use crate::phase::Phase;
use crate::replay::{TrainingReplayOutcome, TrainingReplayRequest};
use crate::runtime::NativePredictorDescriptorV1;
use crate::training::PortablePredictorPackage;

/// V1 did not bind calibration to the training/replay provenance closure.  It
/// is deliberately not accepted: callers must migrate to this closed V2 form.
pub const CONFORMAL_RUNTIME_SCHEMA_VERSION: u32 = 2;

/// Stable, presentation-only projection of one validated single-target
/// conformal PREDICT replay.  It contains no calibration algorithm input and
/// no mutable model handle: Core and Studio may transport or render it, but
/// must never recalculate its bounds.
pub const CONFORMAL_PRESENTATION_SCHEMA_VERSION: u32 = 1;

/// Multi-target, Archive-bound presentation contract. V1 remains the stable
/// scalar UI projection; V2 is an additive native transport surface.
pub const CONFORMAL_PRESENTATION_SCHEMA_VERSION_V2: u32 = 2;

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalPresentationInterval {
    pub coverage: f64,
    /// `None` represents a deliberately unbounded interval, never an
    /// infinity/sentinel endpoint.
    pub lower: Vec<Option<f64>>,
    pub upper: Vec<Option<f64>>,
    /// Exact native split-conformal radius for this coverage, or `None` for
    /// the declared unbounded small-sample policy.
    pub qhat: Option<f64>,
}

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalPresentationV1 {
    pub schema_version: u32,
    pub package_fingerprint: String,
    pub replay_outcome_fingerprint: String,
    pub binding_id: String,
    pub target_name: String,
    pub sample_ids: Vec<SampleId>,
    pub point_predictions: Vec<f64>,
    pub intervals: Vec<ConformalPresentationInterval>,
    pub calibration_fingerprint: String,
    pub presentation_fingerprint: String,
}

/// Dimensions copied from the validated point block and native predictor.
#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalPresentationDimensionsV2 {
    pub sample_count: u64,
    pub target_count: u32,
}

/// Persisted split-conformal guarantee. These fields are copied from the
/// calibrated package and are never derived by a presentation consumer.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalPresentationGuaranteeV2 {
    pub calibration_sample_count: u64,
    pub multi_target_policy: ConformalMultiTargetPolicy,
    pub small_sample_policy: ConformalSmallSamplePolicy,
    pub quantiles: Vec<SplitConformalQuantile>,
}

/// Content-bound native identity for the exact model which produced the point
/// predictions. The model digest and descriptor are independently retained so
/// a host cannot substitute another N4MM with compatible dimensions.
#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalPresentationPredictorV2 {
    pub model_artifact_fingerprint: String,
    pub predictor_binding_fingerprint: String,
    pub predictor_descriptor_fingerprint: String,
}

/// Closed multi-target presentation of one already-calculated PREDICT replay.
///
/// The complete point and interval blocks are retained so validation can reuse
/// DAG-ML's authoritative sample-order, target-order and interval-closure
/// checks. `archive_sha256` is supplied by the aggregate which validated the
/// enclosing archive bytes; [`Self::validate_against_package`] binds every
/// remaining field to the parsed Package V2.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalPresentationV2 {
    pub schema_version: u32,
    pub archive_sha256: String,
    pub package_fingerprint: String,
    pub replay_outcome_fingerprint: String,
    pub binding_id: String,
    pub predictor: ConformalPresentationPredictorV2,
    pub dimensions: ConformalPresentationDimensionsV2,
    pub target_names: Vec<String>,
    pub sample_ids: Vec<SampleId>,
    pub point_prediction: PredictionBlock,
    pub interval_block: ConformalIntervalBlock,
    pub guarantee: ConformalPresentationGuaranteeV2,
    pub calibration_fingerprint: String,
    pub presentation_fingerprint: String,
}

/// Relation-derived calibration cohort. Physical and origin identities are
/// both retained so a relation-expanded training cohort cannot be bypassed by
/// presenting only one namespace. The attachment boundary derives and checks
/// these fields from an authoritative [`crate::relation::SampleRelationSet`].
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalCalibrationCohort {
    pub role: String,
    pub physical_sample_ids: Vec<SampleId>,
    pub origin_sample_ids: Vec<SampleId>,
    pub target_names: Vec<String>,
    pub manifest_fingerprint: String,
}

/// Complete, canonical provenance closure supplied by the replay boundary.
/// These are not optional hints: attached calibration checks every member
/// against the exact source outcome and replay before it is persisted.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalCalibrationContext {
    pub predictor_binding_fingerprint: String,
    pub source_training_outcome_fingerprint: String,
    pub calibration_replay_outcome_fingerprint: String,
    pub data_identities_fingerprint: String,
    pub fold_set_fingerprint: String,
    pub training_influence_fingerprint: String,
    pub relation_fingerprint: String,
    pub calibration_cohort: ConformalCalibrationCohort,
    pub context_fingerprint: String,
}

/// Closed, self-fingerprinted split-conformal state retained beside a bundle.
/// `sample_ids` is the calibration order, not an interchangeable set: this
/// makes accidental positional joins fail before residuals are calculated.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalCalibration {
    pub schema_version: u32,
    pub binding_id: String,
    pub target_names: Vec<String>,
    pub sample_ids: Vec<SampleId>,
    pub coverages: Vec<f64>,
    pub multi_target_policy: ConformalMultiTargetPolicy,
    pub small_sample_policy: ConformalSmallSamplePolicy,
    pub quantiles: Vec<SplitConformalQuantile>,
    pub context: ConformalCalibrationContext,
    pub calibration_fingerprint: String,
}

/// Typed reference retained by portable execution bundles.  It contains no
/// host object or duplicate algorithm state; the complete state stays in the
/// matching `TrainingOutcome`.
#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalCalibrationRef {
    pub schema_version: u32,
    pub binding_id: String,
    pub calibration_fingerprint: String,
}

/// Identity-preserving interval result for one replayed point block.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalIntervalBlock {
    pub schema_version: u32,
    pub binding_id: String,
    pub sample_ids: Vec<SampleId>,
    pub intervals: Vec<RegressionConformalInterval>,
    pub calibration_fingerprint: String,
    pub point_prediction_fingerprint: String,
}

/// Truth supplied by the data layer for a calibration replay.  It carries the
/// same stable physical sample ids as the point block so a host can never
/// smuggle a positional `y_true` matrix across a reordered replay.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ConformalCalibrationTruth {
    pub sample_ids: Vec<SampleId>,
    pub values: Vec<Vec<f64>>,
}

impl ConformalIntervalBlock {
    pub fn validate(&self) -> Result<()> {
        if self.schema_version != CONFORMAL_RUNTIME_SCHEMA_VERSION
            || self.binding_id.trim().is_empty()
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal interval block has an unsupported version or empty binding id"
                    .to_string(),
            ));
        }
        validate_unique_samples(&self.sample_ids)?;
        if self.intervals.is_empty()
            || self
                .intervals
                .iter()
                .any(|interval| interval.cells.len() != self.sample_ids.len())
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal interval block does not cover its exact sample ids".to_string(),
            ));
        }
        validate_sha256(&self.calibration_fingerprint)?;
        validate_sha256(&self.point_prediction_fingerprint)
    }
}

impl ConformalPresentationV1 {
    pub fn from_json(json: &str) -> Result<Self> {
        let raw_fingerprint = parse_typed_json(json)
            .and_then(|value| value.fingerprint_without("presentation_fingerprint"))
            .map_err(|error| {
                DagMlError::RuntimeValidation(format!(
                    "conformal presentation is outside strict TCV1 JSON: {error}"
                ))
            })?;
        let presentation: Self = serde_json::from_str(json)?;
        if presentation.presentation_fingerprint != raw_fingerprint {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation fingerprint does not match original TCV1 JSON".to_string(),
            ));
        }
        presentation.validate()?;
        Ok(presentation)
    }

    pub fn compute_fingerprint(&self) -> Result<String> {
        let json = serde_json::to_string(self)?;
        parse_typed_json(&json)
            .and_then(|value| value.fingerprint_without("presentation_fingerprint"))
            .map_err(|error| {
                DagMlError::RuntimeValidation(format!(
                    "conformal presentation is outside strict TCV1 JSON: {error}"
                ))
            })
    }

    pub fn validate(&self) -> Result<()> {
        if self.schema_version != CONFORMAL_PRESENTATION_SCHEMA_VERSION
            || self.binding_id.trim().is_empty()
            || self.target_name.trim().is_empty()
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation has an unsupported version or empty binding metadata"
                    .to_string(),
            ));
        }
        for fingerprint in [
            &self.package_fingerprint,
            &self.replay_outcome_fingerprint,
            &self.calibration_fingerprint,
            &self.presentation_fingerprint,
        ] {
            validate_sha256(fingerprint)?;
        }
        validate_unique_samples(&self.sample_ids)?;
        if self.sample_ids.is_empty()
            || self.point_predictions.len() != self.sample_ids.len()
            || self
                .point_predictions
                .iter()
                .any(|value| !value.is_finite())
            || self.intervals.is_empty()
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation does not exactly cover finite point predictions"
                    .to_string(),
            ));
        }
        let mut prior_coverage = None;
        for interval in &self.intervals {
            if !(interval.coverage.is_finite()
                && 0.0 < interval.coverage
                && interval.coverage < 1.0)
                || prior_coverage.is_some_and(|prior| prior >= interval.coverage)
                || interval.lower.len() != self.sample_ids.len()
                || interval.upper.len() != self.sample_ids.len()
                || interval
                    .qhat
                    .is_some_and(|value| !value.is_finite() || value < 0.0)
            {
                return Err(DagMlError::RuntimeValidation(
                    "conformal presentation has invalid coverage or interval cardinality"
                        .to_string(),
                ));
            }
            for ((point, lower), upper) in self
                .point_predictions
                .iter()
                .zip(&interval.lower)
                .zip(&interval.upper)
            {
                match (lower, upper) {
                    (Some(lower), Some(upper))
                        if lower.is_finite()
                            && upper.is_finite()
                            && lower <= point
                            && point <= upper => {}
                    (None, None) if interval.qhat.is_none() => {}
                    _ => {
                        return Err(DagMlError::RuntimeValidation(
                            "conformal presentation interval endpoints are inconsistent"
                                .to_string(),
                        ));
                    }
                }
            }
            prior_coverage = Some(interval.coverage);
        }
        if self.presentation_fingerprint != self.compute_fingerprint()? {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation fingerprint does not match TCV1 content".to_string(),
            ));
        }
        Ok(())
    }
}

impl ConformalPresentationV2 {
    /// Parse and validate the self-contained transport shape. Consumers which
    /// possess the source package must use [`Self::from_json_for_package`] to
    /// additionally verify every provenance cross-link.
    pub fn from_json(json: &str) -> Result<Self> {
        let raw_fingerprint = parse_typed_json(json)
            .and_then(|value| value.fingerprint_without("presentation_fingerprint"))
            .map_err(|error| {
                DagMlError::RuntimeValidation(format!(
                    "conformal presentation V2 is outside strict TCV1 JSON: {error}"
                ))
            })?;
        let presentation: Self = serde_json::from_str(json)?;
        if presentation.presentation_fingerprint != raw_fingerprint {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 fingerprint does not match original TCV1 JSON"
                    .to_string(),
            ));
        }
        presentation.validate()?;
        Ok(presentation)
    }

    /// Parse a presentation and bind it to the exact validated Package V2 and
    /// native descriptors inspected from its model bytes.
    pub fn from_json_for_package(
        json: &str,
        package: &PortablePredictorPackage,
        native_predictors: &[NativePredictorDescriptorV1],
    ) -> Result<Self> {
        let presentation = Self::from_json(json)?;
        presentation.validate_against_package(package, native_predictors)?;
        Ok(presentation)
    }

    pub fn compute_fingerprint(&self) -> Result<String> {
        let json = serde_json::to_string(self)?;
        parse_typed_json(&json)
            .and_then(|value| value.fingerprint_without("presentation_fingerprint"))
            .map_err(|error| {
                DagMlError::RuntimeValidation(format!(
                    "conformal presentation V2 is outside strict TCV1 JSON: {error}"
                ))
            })
    }

    /// Validate the self-contained ordered identities, dimensions, guarantee,
    /// interval closure and TCV1 fingerprint.
    pub fn validate(&self) -> Result<()> {
        if self.schema_version != CONFORMAL_PRESENTATION_SCHEMA_VERSION_V2 {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 has an unsupported schema version".to_string(),
            ));
        }
        for fingerprint in [
            &self.archive_sha256,
            &self.package_fingerprint,
            &self.replay_outcome_fingerprint,
            &self.predictor.model_artifact_fingerprint,
            &self.predictor.predictor_binding_fingerprint,
            &self.predictor.predictor_descriptor_fingerprint,
            &self.calibration_fingerprint,
            &self.presentation_fingerprint,
        ] {
            validate_sha256(fingerprint)?;
        }
        let target_count = u32::try_from(self.target_names.len()).map_err(|_| {
            DagMlError::RuntimeValidation(
                "conformal presentation V2 target count exceeds u32".to_string(),
            )
        })?;
        let sample_count = u64::try_from(self.sample_ids.len()).map_err(|_| {
            DagMlError::RuntimeValidation(
                "conformal presentation V2 sample count exceeds u64".to_string(),
            )
        })?;
        if self.target_names.is_empty()
            || self.dimensions.target_count != target_count
            || self.dimensions.sample_count != sample_count
            || self.sample_ids != self.point_prediction.sample_ids
            || self.target_names != self.point_prediction.target_names
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 dimensions or ordered identities do not match"
                    .to_string(),
            ));
        }
        self.point_prediction.validate_content()?;
        self.interval_block.validate()?;
        if self.guarantee.calibration_sample_count == 0
            || self.interval_block.binding_id != self.binding_id
            || self.interval_block.sample_ids != self.sample_ids
            || self.interval_block.calibration_fingerprint != self.calibration_fingerprint
            || self.interval_block.point_prediction_fingerprint
                != point_prediction_fingerprint_for_runtime(&self.point_prediction)?
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 interval identities do not match".to_string(),
            ));
        }
        let expected_intervals = apply_split_absolute_residual(
            &self.point_prediction.values,
            &self.guarantee.quantiles,
            self.guarantee.multi_target_policy,
        )
        .map_err(|error| {
            DagMlError::RuntimeValidation(format!(
                "conformal presentation V2 has an invalid guarantee: {error}"
            ))
        })?;
        if expected_intervals != self.interval_block.intervals {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 intervals do not close over its persisted guarantee"
                    .to_string(),
            ));
        }
        if self.presentation_fingerprint != self.compute_fingerprint()? {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 fingerprint does not match TCV1 content".to_string(),
            ));
        }
        Ok(())
    }

    /// Validate all presentation fields against the authoritative package and
    /// descriptors. Interval closure delegates to the existing conformal
    /// runtime; this method performs no calibration or interval calculation.
    pub fn validate_against_package(
        &self,
        package: &PortablePredictorPackage,
        native_predictors: &[NativePredictorDescriptorV1],
    ) -> Result<()> {
        package.validate()?;
        self.validate()?;
        if self.package_fingerprint != package.package_fingerprint {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 does not match its package fingerprint".to_string(),
            ));
        }
        let calibration = package.conformal_calibration.as_ref().ok_or_else(|| {
            DagMlError::RuntimeValidation(
                "conformal presentation V2 requires package calibration state".to_string(),
            )
        })?;
        let binding = package
            .output_bindings
            .iter()
            .find(|binding| binding.binding_id == calibration.binding_id)
            .ok_or_else(|| {
                DagMlError::RuntimeValidation(
                    "conformal presentation V2 calibration binding is absent".to_string(),
                )
            })?;
        let (model_fingerprint, descriptor) =
            presentation_native_predictor(package, binding, native_predictors)?;
        if self.binding_id != calibration.binding_id
            || self.predictor.predictor_binding_fingerprint != binding.binding_fingerprint
            || self.predictor.predictor_binding_fingerprint
                != calibration.context.predictor_binding_fingerprint
            || self.predictor.model_artifact_fingerprint != model_fingerprint
            || self.predictor.predictor_descriptor_fingerprint != descriptor.descriptor_fingerprint
            || self.calibration_fingerprint != calibration.calibration_fingerprint
            || self.target_names != binding.target_names
            || self.target_names != calibration.target_names
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 model, binding, targets or calibration do not cross-link"
                    .to_string(),
            ));
        }
        let target_count = i32::try_from(self.target_names.len()).map_err(|_| {
            DagMlError::RuntimeValidation(
                "conformal presentation V2 target count exceeds i32".to_string(),
            )
        })?;
        if descriptor.dimensions.n_targets != target_count {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 target count does not match native predictor"
                    .to_string(),
            ));
        }
        if self.guarantee.calibration_sample_count
            != u64::try_from(calibration.sample_ids.len()).map_err(|_| {
                DagMlError::RuntimeValidation(
                    "conformal presentation V2 calibration sample count exceeds u64".to_string(),
                )
            })?
            || self.guarantee.multi_target_policy != calibration.multi_target_policy
            || self.guarantee.small_sample_policy != calibration.small_sample_policy
            || self.guarantee.quantiles != calibration.quantiles
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation V2 guarantee does not match calibration state".to_string(),
            ));
        }
        self.interval_block
            .validate_against(calibration, &self.point_prediction)?;
        Ok(())
    }
}

fn presentation_native_predictor<'a>(
    package: &'a PortablePredictorPackage,
    binding: &crate::training::OutputBinding,
    native_predictors: &'a [NativePredictorDescriptorV1],
) -> Result<(&'a str, &'a NativePredictorDescriptorV1)> {
    let records = package
        .execution_bundle
        .refit_artifacts
        .iter()
        .filter(|record| record.node_id == binding.node_id && record.artifact.kind == "n4m_model")
        .collect::<Vec<_>>();
    let [record] = records.as_slice() else {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation V2 requires exactly one native model artifact for its binding"
                .to_string(),
        ));
    };
    let model_fingerprint = record
        .artifact
        .content_fingerprint
        .as_deref()
        .ok_or_else(|| {
            DagMlError::RuntimeValidation(
                "conformal presentation V2 native model has no content fingerprint".to_string(),
            )
        })?;
    let descriptors = native_predictors
        .iter()
        .filter(|descriptor| {
            descriptor.artifact_sha256 == model_fingerprint
                && descriptor.owner_controller == record.controller_id
        })
        .collect::<Vec<_>>();
    let [descriptor] = descriptors.as_slice() else {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation V2 requires exactly one byte-attested predictor descriptor"
                .to_string(),
        ));
    };
    descriptor.validate()?;
    if record
        .artifact
        .native_predictor_descriptor
        .as_ref()
        .is_some_and(|embedded| embedded != *descriptor)
    {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation V2 byte-attested descriptor differs from package metadata"
                .to_string(),
        ));
    }
    Ok((model_fingerprint, descriptor))
}

/// Project an already-validated Package V2 PREDICT replay without performing
/// any conformal calculation. The aggregate supplies the SHA-256 of the exact
/// archive bytes and descriptors inspected from their native model members.
pub fn build_conformal_presentation_v2(
    archive_sha256: &str,
    package: &PortablePredictorPackage,
    request: &TrainingReplayRequest,
    replay: &TrainingReplayOutcome,
    native_predictors: &[NativePredictorDescriptorV1],
) -> Result<ConformalPresentationV2> {
    validate_sha256(archive_sha256)?;
    package.validate()?;
    request.validate()?;
    replay.validate_against_package(package, request)?;
    if replay.phase != Phase::Predict {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation V2 requires a PREDICT replay".to_string(),
        ));
    }
    let calibration = package.conformal_calibration.as_ref().ok_or_else(|| {
        DagMlError::RuntimeValidation(
            "conformal presentation V2 requires package calibration state".to_string(),
        )
    })?;
    let output = replay
        .outputs
        .iter()
        .find(|output| output.binding.binding_id == calibration.binding_id)
        .ok_or_else(|| {
            DagMlError::RuntimeValidation(
                "conformal presentation V2 replay is missing the calibrated binding".to_string(),
            )
        })?;
    let [point_prediction] = output.predictions.as_slice() else {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation V2 requires exactly one point prediction block".to_string(),
        ));
    };
    let interval_blocks = replay
        .conformal_intervals
        .iter()
        .filter(|block| block.binding_id == calibration.binding_id)
        .collect::<Vec<_>>();
    let [interval_block] = interval_blocks.as_slice() else {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation V2 requires exactly one interval block".to_string(),
        ));
    };
    interval_block.validate_against(calibration, point_prediction)?;
    let (model_artifact_fingerprint, descriptor) =
        presentation_native_predictor(package, &output.binding, native_predictors)?;
    let mut presentation = ConformalPresentationV2 {
        schema_version: CONFORMAL_PRESENTATION_SCHEMA_VERSION_V2,
        archive_sha256: archive_sha256.to_string(),
        package_fingerprint: package.package_fingerprint.clone(),
        replay_outcome_fingerprint: replay.outcome_fingerprint.clone(),
        binding_id: calibration.binding_id.clone(),
        predictor: ConformalPresentationPredictorV2 {
            model_artifact_fingerprint: model_artifact_fingerprint.to_string(),
            predictor_binding_fingerprint: output.binding.binding_fingerprint.clone(),
            predictor_descriptor_fingerprint: descriptor.descriptor_fingerprint.clone(),
        },
        dimensions: ConformalPresentationDimensionsV2 {
            sample_count: u64::try_from(point_prediction.sample_ids.len()).map_err(|_| {
                DagMlError::RuntimeValidation(
                    "conformal presentation V2 sample count exceeds u64".to_string(),
                )
            })?,
            target_count: u32::try_from(output.binding.target_names.len()).map_err(|_| {
                DagMlError::RuntimeValidation(
                    "conformal presentation V2 target count exceeds u32".to_string(),
                )
            })?,
        },
        target_names: output.binding.target_names.clone(),
        sample_ids: point_prediction.sample_ids.clone(),
        point_prediction: point_prediction.clone(),
        interval_block: (*interval_block).clone(),
        guarantee: ConformalPresentationGuaranteeV2 {
            calibration_sample_count: u64::try_from(calibration.sample_ids.len()).map_err(
                |_| {
                    DagMlError::RuntimeValidation(
                        "conformal presentation V2 calibration sample count exceeds u64"
                            .to_string(),
                    )
                },
            )?,
            multi_target_policy: calibration.multi_target_policy,
            small_sample_policy: calibration.small_sample_policy,
            quantiles: calibration.quantiles.clone(),
        },
        calibration_fingerprint: calibration.calibration_fingerprint.clone(),
        presentation_fingerprint: "0".repeat(64),
    };
    presentation.presentation_fingerprint = presentation.compute_fingerprint()?;
    presentation.validate_against_package(package, native_predictors)?;
    Ok(presentation)
}

/// Project a verified Package V2 and PREDICT replay into the exact scalar
/// representation consumed by the shared UI.  Multi-target output is refused
/// instead of selecting or reshaping a target implicitly.
pub fn build_conformal_presentation_v1(
    package: &PortablePredictorPackage,
    request: &TrainingReplayRequest,
    replay: &TrainingReplayOutcome,
) -> Result<ConformalPresentationV1> {
    package.validate()?;
    request.validate()?;
    replay.validate_against_package(package, request)?;
    if replay.phase != Phase::Predict {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation requires a PREDICT replay".to_string(),
        ));
    }
    let calibration = package.conformal_calibration.as_ref().ok_or_else(|| {
        DagMlError::RuntimeValidation(
            "conformal presentation requires package calibration state".to_string(),
        )
    })?;
    if calibration.target_names.len() != 1 {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation refuses multi-target output".to_string(),
        ));
    }
    let output = replay
        .outputs
        .iter()
        .find(|output| output.binding.binding_id == calibration.binding_id)
        .ok_or_else(|| {
            DagMlError::RuntimeValidation(
                "conformal presentation replay is missing the calibrated binding".to_string(),
            )
        })?;
    if output.binding.target_names != calibration.target_names || output.predictions.len() != 1 {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation requires exactly one matching scalar point block".to_string(),
        ));
    }
    let point = &output.predictions[0];
    point.validate_content()?;
    if point
        .values
        .iter()
        .any(|row| row.len() != 1 || !row[0].is_finite())
    {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation requires finite single-target point predictions".to_string(),
        ));
    }
    let intervals = replay
        .conformal_intervals
        .iter()
        .filter(|interval| interval.binding_id == calibration.binding_id)
        .collect::<Vec<_>>();
    if intervals.len() != 1 {
        return Err(DagMlError::RuntimeValidation(
            "conformal presentation requires exactly one calibrated interval block".to_string(),
        ));
    }
    let interval_block = intervals[0];
    interval_block.validate_against(calibration, point)?;
    let mut presentation_intervals = Vec::with_capacity(interval_block.intervals.len());
    for interval in &interval_block.intervals {
        let quantile = calibration
            .quantiles
            .iter()
            .find(|quantile| quantile.coverage == interval.coverage)
            .ok_or_else(|| {
                DagMlError::RuntimeValidation(
                    "conformal presentation interval coverage is absent from calibration"
                        .to_string(),
                )
            })?;
        if quantile.radii.len() != 1 || interval.cells.iter().any(|row| row.len() != 1) {
            return Err(DagMlError::RuntimeValidation(
                "conformal presentation requires scalar calibration radii and cells".to_string(),
            ));
        }
        let qhat = match quantile.radii[0] {
            crate::conformal::ConformalRadius::Finite(value)
                if value.is_finite() && value >= 0.0 =>
            {
                Some(value)
            }
            crate::conformal::ConformalRadius::Unbounded => None,
            _ => {
                return Err(DagMlError::RuntimeValidation(
                    "conformal presentation calibration radius is invalid".to_string(),
                ));
            }
        };
        let (lower, upper) = interval.cells.iter().map(|row| row[0].endpoints()).unzip();
        presentation_intervals.push(ConformalPresentationInterval {
            coverage: interval.coverage,
            lower,
            upper,
            qhat,
        });
    }
    presentation_intervals.sort_by(|left, right| left.coverage.total_cmp(&right.coverage));
    let mut presentation = ConformalPresentationV1 {
        schema_version: CONFORMAL_PRESENTATION_SCHEMA_VERSION,
        package_fingerprint: package.package_fingerprint.clone(),
        replay_outcome_fingerprint: replay.outcome_fingerprint.clone(),
        binding_id: calibration.binding_id.clone(),
        target_name: calibration.target_names[0].clone(),
        sample_ids: point.sample_ids.clone(),
        point_predictions: point.values.iter().map(|row| row[0]).collect(),
        intervals: presentation_intervals,
        calibration_fingerprint: calibration.calibration_fingerprint.clone(),
        presentation_fingerprint: "0".repeat(64),
    };
    presentation.presentation_fingerprint = presentation.compute_fingerprint()?;
    presentation.validate()?;
    Ok(presentation)
}

impl ConformalCalibration {
    #[allow(clippy::too_many_arguments)]
    pub fn calibrate_with_truth(
        binding_id: impl Into<String>,
        target_names: Vec<String>,
        predictions: &PredictionBlock,
        truth: &ConformalCalibrationTruth,
        context: ConformalCalibrationContext,
        coverages: Vec<f64>,
        multi_target_policy: ConformalMultiTargetPolicy,
        small_sample_policy: ConformalSmallSamplePolicy,
    ) -> Result<Self> {
        predictions.validate_content()?;
        validate_identity_aligned_truth(predictions, truth)?;
        context.validate_for_truth(truth, &target_names)?;
        if target_names.len() != predictions.values[0].len()
            || (!predictions.target_names.is_empty() && predictions.target_names != target_names)
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal target order does not match the point prediction binding".to_string(),
            ));
        }
        let residuals = predictions
            .values
            .iter()
            .zip(&truth.values)
            .map(|(prediction, actual)| {
                prediction
                    .iter()
                    .zip(actual)
                    .map(|(point, value)| (point - value).abs())
                    .collect::<Vec<_>>()
            })
            .collect::<Vec<_>>();
        let quantiles = split_absolute_residual_quantiles(
            &residuals,
            &coverages,
            multi_target_policy,
            small_sample_policy,
        )
        .map_err(|error| {
            DagMlError::RuntimeValidation(format!("conformal calibration failed: {error}"))
        })?;
        let calibration = Self {
            schema_version: CONFORMAL_RUNTIME_SCHEMA_VERSION,
            binding_id: binding_id.into(),
            target_names,
            sample_ids: predictions.sample_ids.clone(),
            coverages,
            multi_target_policy,
            small_sample_policy,
            quantiles,
            context,
            calibration_fingerprint: String::new(),
        };
        stabilize_calibration_for_tcv1(calibration)
    }

    pub fn reference(&self) -> Result<ConformalCalibrationRef> {
        self.validate()?;
        Ok(ConformalCalibrationRef {
            schema_version: CONFORMAL_RUNTIME_SCHEMA_VERSION,
            binding_id: self.binding_id.clone(),
            calibration_fingerprint: self.calibration_fingerprint.clone(),
        })
    }

    pub fn compute_fingerprint(&self) -> Result<String> {
        fingerprint_without(self, "calibration_fingerprint", "conformal calibration")
    }

    pub fn from_json(json: &str) -> Result<Self> {
        let raw = parse_typed_json(json)
            .and_then(|value| value.fingerprint_without("calibration_fingerprint"))
            .map_err(|error| {
                DagMlError::RuntimeValidation(format!(
                    "conformal calibration is not strict TCV1 JSON: {error}"
                ))
            })?;
        let calibration: Self = serde_json::from_str(json)?;
        if calibration.calibration_fingerprint != raw {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration fingerprint does not match original TCV1 JSON".to_string(),
            ));
        }
        calibration.validate()?;
        Ok(calibration)
    }

    pub fn validate(&self) -> Result<()> {
        if self.schema_version != CONFORMAL_RUNTIME_SCHEMA_VERSION {
            return Err(DagMlError::RuntimeValidation(format!(
                "conformal calibration has unsupported schema_version {}",
                self.schema_version
            )));
        }
        if self.binding_id.trim().is_empty() || self.target_names.is_empty() {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration requires a binding id and target names".to_string(),
            ));
        }
        validate_unique_samples(&self.sample_ids)?;
        self.context.validate_for_calibration(self)?;
        if self.coverages.is_empty() || self.quantiles.len() != self.coverages.len() {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration coverages and quantiles must have equal non-zero length"
                    .to_string(),
            ));
        }
        if self
            .quantiles
            .iter()
            .zip(&self.coverages)
            .any(|(quantile, coverage)| quantile.coverage.to_bits() != coverage.to_bits())
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration quantile coverage order does not match coverages"
                    .to_string(),
            ));
        }
        let sample_count = u64::try_from(self.sample_ids.len()).map_err(|_| {
            DagMlError::RuntimeValidation(
                "conformal calibration sample count exceeds u64".to_string(),
            )
        })?;
        for (index, (coverage, quantile)) in self.coverages.iter().zip(&self.quantiles).enumerate()
        {
            let expected =
                finite_sample_conformal_rank(sample_count, *coverage).map_err(|error| {
                    DagMlError::RuntimeValidation(format!(
                        "invalid conformal rank at coverage {index}: {error}"
                    ))
                })?;
            if quantile.rank != expected {
                return Err(DagMlError::RuntimeValidation(format!(
                    "conformal quantile rank at coverage {index} does not match sample count and coverage"
                )));
            }
        }
        // The kernel validates coverage ordering, radius shape, and nestedness
        // before application; applying to one finite dummy row is a compact
        // validation that does not introduce another conformal algorithm.
        apply_split_absolute_residual(
            &[vec![0.0; self.target_names.len()]],
            &self.quantiles,
            self.multi_target_policy,
        )
        .map_err(|error| {
            DagMlError::RuntimeValidation(format!("invalid conformal quantiles: {error}"))
        })?;
        validate_sha256(&self.calibration_fingerprint)?;
        if self.calibration_fingerprint != self.compute_fingerprint()? {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration fingerprint does not match TCV1 content".to_string(),
            ));
        }
        Ok(())
    }

    pub fn apply(&self, predictions: &PredictionBlock) -> Result<ConformalIntervalBlock> {
        self.validate()?;
        predictions.validate_content()?;
        if predictions.target_names != self.target_names {
            return Err(DagMlError::RuntimeValidation(
                "conformal application target order does not match calibration".to_string(),
            ));
        }
        let intervals = apply_split_absolute_residual(
            &predictions.values,
            &self.quantiles,
            self.multi_target_policy,
        )
        .map_err(|error| {
            DagMlError::RuntimeValidation(format!("conformal application failed: {error}"))
        })?;
        Ok(ConformalIntervalBlock {
            schema_version: CONFORMAL_RUNTIME_SCHEMA_VERSION,
            binding_id: self.binding_id.clone(),
            sample_ids: predictions.sample_ids.clone(),
            intervals,
            calibration_fingerprint: self.calibration_fingerprint.clone(),
            point_prediction_fingerprint: point_prediction_fingerprint_for_runtime(predictions)?,
        })
    }
}

impl ConformalCalibrationContext {
    pub fn compute_fingerprint(&self) -> Result<String> {
        fingerprint_without(self, "context_fingerprint", "conformal calibration context")
    }

    pub fn validate_for_truth(
        &self,
        truth: &ConformalCalibrationTruth,
        target_names: &[String],
    ) -> Result<()> {
        self.validate()?;
        if self.calibration_cohort.physical_sample_ids != truth.sample_ids
            || self.calibration_cohort.target_names != target_names
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration cohort must exactly bind truth sample ids and targets"
                    .to_string(),
            ));
        }
        Ok(())
    }

    pub fn validate(&self) -> Result<()> {
        for value in [
            &self.predictor_binding_fingerprint,
            &self.source_training_outcome_fingerprint,
            &self.calibration_replay_outcome_fingerprint,
            &self.data_identities_fingerprint,
            &self.fold_set_fingerprint,
            &self.training_influence_fingerprint,
            &self.relation_fingerprint,
            &self.context_fingerprint,
        ] {
            validate_sha256(value)?;
        }
        self.calibration_cohort.validate()?;
        if self.context_fingerprint != self.compute_fingerprint()? {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration context fingerprint does not match TCV1 content".to_string(),
            ));
        }
        Ok(())
    }

    fn validate_for_calibration(&self, calibration: &ConformalCalibration) -> Result<()> {
        self.validate_for_truth(
            &ConformalCalibrationTruth {
                sample_ids: calibration.sample_ids.clone(),
                values: vec![vec![0.0]; calibration.sample_ids.len()],
            },
            &calibration.target_names,
        )
    }
}

impl ConformalCalibrationCohort {
    pub fn compute_fingerprint(&self) -> Result<String> {
        fingerprint_without(self, "manifest_fingerprint", "conformal calibration cohort")
    }

    pub fn validate(&self) -> Result<()> {
        validate_sha256(&self.manifest_fingerprint)?;
        if self.role != "calibration" || self.target_names.is_empty() {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration context requires calibration cohort role and targets"
                    .to_string(),
            ));
        }
        validate_unique_samples(&self.physical_sample_ids)?;
        if self.origin_sample_ids.iter().collect::<BTreeSet<_>>().len()
            != self.origin_sample_ids.len()
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration origin sample ids must be unique".to_string(),
            ));
        }
        if self.manifest_fingerprint != self.compute_fingerprint()? {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration cohort fingerprint does not match TCV1 content".to_string(),
            ));
        }
        Ok(())
    }
}

impl ConformalIntervalBlock {
    /// Validate interval closure against the actual point block and quantiles;
    /// a matching hash alone is never treated as sufficient.
    pub fn validate_against(
        &self,
        calibration: &ConformalCalibration,
        predictions: &PredictionBlock,
    ) -> Result<()> {
        self.validate()?;
        calibration.validate()?;
        if self.binding_id != calibration.binding_id
            || self.calibration_fingerprint != calibration.calibration_fingerprint
            || self.sample_ids != predictions.sample_ids
            || self.point_prediction_fingerprint
                != point_prediction_fingerprint_for_runtime(predictions)?
        {
            return Err(DagMlError::RuntimeValidation("conformal interval block is not bound to its calibration and point prediction block".to_string()));
        }
        let expected = calibration.apply(predictions)?;
        if self != &expected {
            return Err(DagMlError::RuntimeValidation(
                "conformal interval bounds do not close over point predictions and quantiles"
                    .to_string(),
            ));
        }
        Ok(())
    }
}

impl ConformalCalibrationRef {
    pub fn validate(&self) -> Result<()> {
        if self.schema_version != CONFORMAL_RUNTIME_SCHEMA_VERSION
            || self.binding_id.trim().is_empty()
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration reference has an unsupported version or empty binding id"
                    .to_string(),
            ));
        }
        validate_sha256(&self.calibration_fingerprint)
    }

    pub fn validate_against(&self, calibration: &ConformalCalibration) -> Result<()> {
        self.validate()?;
        calibration.validate()?;
        if self.schema_version != CONFORMAL_RUNTIME_SCHEMA_VERSION
            || self.binding_id != calibration.binding_id
            || self.calibration_fingerprint != calibration.calibration_fingerprint
        {
            return Err(DagMlError::RuntimeValidation(
                "conformal calibration reference does not match calibration state".to_string(),
            ));
        }
        Ok(())
    }
}

fn validate_identity_aligned_truth(
    predictions: &PredictionBlock,
    truth: &ConformalCalibrationTruth,
) -> Result<()> {
    if predictions.sample_ids != truth.sample_ids
        || predictions.values.len() != truth.values.len()
        || truth.values.is_empty()
        || truth
            .values
            .iter()
            .any(|row| row.len() != predictions.values[0].len())
        || truth
            .values
            .iter()
            .flatten()
            .any(|value| !value.is_finite())
    {
        return Err(DagMlError::RuntimeValidation(
            "conformal truth must be finite and exactly row/target aligned by sample id"
                .to_string(),
        ));
    }
    Ok(())
}

fn validate_unique_samples(sample_ids: &[SampleId]) -> Result<()> {
    if sample_ids.is_empty() || sample_ids.iter().collect::<BTreeSet<_>>().len() != sample_ids.len()
    {
        return Err(DagMlError::RuntimeValidation(
            "conformal calibration requires non-empty unique sample ids".to_string(),
        ));
    }
    Ok(())
}

fn fingerprint_without<T: Serialize>(value: &T, field: &str, label: &str) -> Result<String> {
    let json = serde_json::to_string(value)?;
    parse_typed_json(&json)
        .and_then(|typed| typed.fingerprint_without(field))
        .map_err(|error| DagMlError::RuntimeValidation(format!("{label} is outside TCV1: {error}")))
}

fn stabilize_calibration_for_tcv1(
    mut calibration: ConformalCalibration,
) -> Result<ConformalCalibration> {
    // TCV1 fingerprints the lexical binary64 token.  A radius produced by
    // native arithmetic can need one serde round-trip before that token is the
    // same one a strict JSON reader will observe.  Sign only that fixed point;
    // otherwise a newly created calibration can reject its own serialized form.
    calibration.calibration_fingerprint = "0".repeat(64);
    for _ in 0..8 {
        let json = serde_json::to_string(&calibration)?;
        let before = parse_typed_json(&json).map_err(|error| {
            DagMlError::RuntimeValidation(format!(
                "conformal calibration is outside TCV1 while normalizing: {error}"
            ))
        })?;
        let mut normalized = serde_json::from_str::<ConformalCalibration>(&json)?;
        normalized.calibration_fingerprint = "0".repeat(64);
        let normalized_json = serde_json::to_string(&normalized)?;
        let after = parse_typed_json(&normalized_json).map_err(|error| {
            DagMlError::RuntimeValidation(format!(
                "conformal calibration is outside TCV1 after normalization: {error}"
            ))
        })?;
        if before != after {
            calibration = normalized;
            continue;
        }
        normalized.calibration_fingerprint = after
            .fingerprint_without("calibration_fingerprint")
            .map_err(|error| {
            DagMlError::RuntimeValidation(format!(
                "conformal calibration TCV1 fingerprint failed after normalization: {error}"
            ))
        })?;
        let signed_json = serde_json::to_string(&normalized)?;
        return ConformalCalibration::from_json(&signed_json);
    }
    Err(DagMlError::RuntimeValidation(
        "conformal calibration TCV1 JSON did not reach a serde canonical fixed point".to_string(),
    ))
}

pub(crate) fn point_prediction_fingerprint_for_runtime(
    predictions: &PredictionBlock,
) -> Result<String> {
    predictions.validate_content()?;
    fingerprint_without(predictions, "prediction_id", "conformal point prediction")
}

fn validate_sha256(value: &str) -> Result<()> {
    if value.len() != 64
        || !value
            .bytes()
            .all(|byte| byte.is_ascii_digit() || (b'a'..=b'f').contains(&byte))
    {
        return Err(DagMlError::RuntimeValidation(
            "conformal calibration fingerprint must be lowercase SHA-256".to_string(),
        ));
    }
    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::conformal::{ConformalRadius, RegressionIntervalCell};
    use crate::ids::NodeId;
    use crate::oof::PredictionPartition;

    fn block(ids: &[&str], values: &[f64]) -> PredictionBlock {
        PredictionBlock {
            prediction_id: None,
            producer_node: NodeId::new("model:regressor").unwrap(),
            producer_port: Some("prediction".to_string()),
            partition: PredictionPartition::Validation,
            fold_id: None,
            sample_ids: ids.iter().map(|id| SampleId::new(*id).unwrap()).collect(),
            values: values.iter().map(|value| vec![*value]).collect(),
            target_names: vec!["y".to_string()],
        }
    }

    fn context(ids: Vec<SampleId>, targets: Vec<String>) -> ConformalCalibrationContext {
        let mut cohort = ConformalCalibrationCohort {
            role: "calibration".to_string(),
            physical_sample_ids: ids.clone(),
            origin_sample_ids: ids,
            target_names: targets,
            manifest_fingerprint: String::new(),
        };
        cohort.manifest_fingerprint = cohort.compute_fingerprint().unwrap();
        let mut context = ConformalCalibrationContext {
            predictor_binding_fingerprint: "1".repeat(64),
            source_training_outcome_fingerprint: "2".repeat(64),
            calibration_replay_outcome_fingerprint: "3".repeat(64),
            data_identities_fingerprint: "4".repeat(64),
            fold_set_fingerprint: "5".repeat(64),
            training_influence_fingerprint: "6".repeat(64),
            relation_fingerprint: "7".repeat(64),
            calibration_cohort: cohort,
            context_fingerprint: String::new(),
        };
        context.context_fingerprint = context.compute_fingerprint().unwrap();
        context
    }

    #[test]
    fn calibration_round_trips_and_application_preserves_replay_ids() {
        let calibration = ConformalCalibration::calibrate_with_truth(
            "output:main",
            vec!["y".to_string()],
            &block(&["s1", "s2", "s3"], &[1.0, 3.0, 5.0]),
            &ConformalCalibrationTruth {
                sample_ids: vec![
                    SampleId::new("s1").unwrap(),
                    SampleId::new("s2").unwrap(),
                    SampleId::new("s3").unwrap(),
                ],
                values: vec![vec![0.0], vec![2.0], vec![4.0]],
            },
            context(
                vec![
                    SampleId::new("s1").unwrap(),
                    SampleId::new("s2").unwrap(),
                    SampleId::new("s3").unwrap(),
                ],
                vec!["y".to_string()],
            ),
            vec![0.5],
            ConformalMultiTargetPolicy::Marginal,
            ConformalSmallSamplePolicy::Error,
        )
        .unwrap();
        let json = serde_json::to_string(&calibration).unwrap();
        let loaded = ConformalCalibration::from_json(&json).unwrap();
        let replay = block(&["new:2", "new:1"], &[10.0, 20.0]);
        let intervals = loaded.apply(&replay).unwrap();
        assert_eq!(intervals.sample_ids, replay.sample_ids);
        assert_eq!(intervals.intervals.len(), 1);
        let cell = intervals.intervals[0].cells[0][0];
        assert_eq!(cell.endpoints(), (Some(9.0), Some(11.0)));
    }

    #[test]
    fn calibration_preserves_non_binary_coverage_fingerprint() {
        let calibration = ConformalCalibration::calibrate_with_truth(
            "output:main",
            vec!["y".to_string()],
            &block(&["s1", "s2", "s3", "s4"], &[57.28, 69.52, 82.78, 97.06]),
            &ConformalCalibrationTruth {
                sample_ids: vec![
                    SampleId::new("s1").unwrap(),
                    SampleId::new("s2").unwrap(),
                    SampleId::new("s3").unwrap(),
                    SampleId::new("s4").unwrap(),
                ],
                values: vec![vec![64.0], vec![81.0], vec![100.0], vec![121.0]],
            },
            context(
                vec![
                    SampleId::new("s1").unwrap(),
                    SampleId::new("s2").unwrap(),
                    SampleId::new("s3").unwrap(),
                    SampleId::new("s4").unwrap(),
                ],
                vec!["y".to_string()],
            ),
            vec![0.8],
            ConformalMultiTargetPolicy::Marginal,
            ConformalSmallSamplePolicy::Error,
        );
        let calibration = calibration.unwrap();
        let json = serde_json::to_string(&calibration).unwrap();
        assert!(ConformalCalibration::from_json(&json).is_ok());
    }

    #[test]
    fn calibration_refuses_order_and_tamper() {
        let prediction = block(&["s1", "s2"], &[1.0, 2.0]);
        assert!(ConformalCalibration::calibrate_with_truth(
            "output:main",
            vec!["y".to_string()],
            &prediction,
            &ConformalCalibrationTruth {
                sample_ids: vec![SampleId::new("s2").unwrap(), SampleId::new("s1").unwrap()],
                values: vec![vec![1.0], vec![0.0]],
            },
            context(prediction.sample_ids.clone(), vec!["y".to_string()]),
            vec![0.5],
            ConformalMultiTargetPolicy::Marginal,
            ConformalSmallSamplePolicy::Error,
        )
        .is_err());
        assert!(ConformalCalibration::calibrate_with_truth(
            "output:main",
            vec!["wrong".to_string()],
            &prediction,
            &ConformalCalibrationTruth {
                sample_ids: prediction.sample_ids.clone(),
                values: vec![vec![0.0], vec![1.0]]
            },
            context(prediction.sample_ids.clone(), vec!["wrong".to_string()]),
            vec![0.5],
            ConformalMultiTargetPolicy::Marginal,
            ConformalSmallSamplePolicy::Error
        )
        .is_err());
        let calibration = ConformalCalibration::calibrate_with_truth(
            "output:main",
            vec!["y".to_string()],
            &prediction,
            &ConformalCalibrationTruth {
                sample_ids: prediction.sample_ids.clone(),
                values: vec![vec![0.0], vec![1.0]],
            },
            context(prediction.sample_ids.clone(), vec!["y".to_string()]),
            vec![0.5],
            ConformalMultiTargetPolicy::Marginal,
            ConformalSmallSamplePolicy::Error,
        )
        .unwrap();
        let mut value = serde_json::to_value(calibration).unwrap();
        value["quantiles"][0]["rank"] = serde_json::json!(1);
        let mut resigned: ConformalCalibration = serde_json::from_value(value.clone()).unwrap();
        resigned.calibration_fingerprint = resigned.compute_fingerprint().unwrap();
        value = serde_json::to_value(resigned).unwrap();
        assert!(ConformalCalibration::from_json(&value.to_string()).is_err());
    }

    #[test]
    fn v2_context_is_required_and_interval_bounds_close_over_points() {
        let prediction = block(&["cal:1", "cal:2"], &[3.0, 7.0]);
        let truth = ConformalCalibrationTruth {
            sample_ids: prediction.sample_ids.clone(),
            values: vec![vec![2.0], vec![5.0]],
        };
        let calibration = ConformalCalibration::calibrate_with_truth(
            "output:main",
            vec!["y".to_string()],
            &prediction,
            &truth,
            context(prediction.sample_ids.clone(), vec!["y".to_string()]),
            vec![0.5],
            ConformalMultiTargetPolicy::Marginal,
            ConformalSmallSamplePolicy::Error,
        )
        .unwrap();
        let replay = block(&["replay:1"], &[10.0]);
        let mut intervals = calibration.apply(&replay).unwrap();
        intervals.validate_against(&calibration, &replay).unwrap();
        intervals.intervals[0].coverage = 0.8;
        assert!(intervals.validate_against(&calibration, &replay).is_err());

        let mut v1 = serde_json::to_value(&calibration).unwrap();
        v1["schema_version"] = serde_json::json!(1);
        assert!(ConformalCalibration::from_json(&v1.to_string()).is_err());
        let mut missing_context = serde_json::to_value(&calibration).unwrap();
        missing_context.as_object_mut().unwrap().remove("context");
        assert!(ConformalCalibration::from_json(&missing_context.to_string()).is_err());
    }

    #[test]
    fn presentation_round_trips_and_refuses_resigned_interval_tampering() {
        let mut presentation = ConformalPresentationV1 {
            schema_version: CONFORMAL_PRESENTATION_SCHEMA_VERSION,
            package_fingerprint: "1".repeat(64),
            replay_outcome_fingerprint: "2".repeat(64),
            binding_id: "output:main".to_string(),
            target_name: "y".to_string(),
            sample_ids: vec![SampleId::new("predict:1").unwrap()],
            point_predictions: vec![10.0],
            intervals: vec![ConformalPresentationInterval {
                coverage: 0.8,
                lower: vec![Some(8.0)],
                upper: vec![Some(12.0)],
                qhat: Some(2.0),
            }],
            calibration_fingerprint: "3".repeat(64),
            presentation_fingerprint: "0".repeat(64),
        };
        presentation.presentation_fingerprint = presentation.compute_fingerprint().unwrap();
        let json = serde_json::to_string(&presentation).unwrap();
        assert_eq!(
            ConformalPresentationV1::from_json(&json).unwrap(),
            presentation
        );

        let mut tampered: ConformalPresentationV1 = serde_json::from_str(&json).unwrap();
        tampered.intervals[0].lower[0] = Some(11.0);
        tampered.presentation_fingerprint = tampered.compute_fingerprint().unwrap();
        assert!(
            ConformalPresentationV1::from_json(&serde_json::to_string(&tampered).unwrap()).is_err()
        );
    }

    #[test]
    fn presentation_v2_round_trips_multitarget_guarantee_and_refuses_tampering() {
        let point_prediction = PredictionBlock {
            prediction_id: Some("prediction:production".to_string()),
            producer_node: NodeId::new("model:regressor").unwrap(),
            producer_port: Some("prediction".to_string()),
            partition: PredictionPartition::Final,
            fold_id: None,
            sample_ids: vec![
                SampleId::new("sample:two").unwrap(),
                SampleId::new("sample:one").unwrap(),
            ],
            values: vec![vec![10.0, 100.0], vec![20.0, 200.0]],
            target_names: vec!["protein".to_string(), "moisture".to_string()],
        };
        let quantiles = vec![SplitConformalQuantile {
            coverage: 0.8,
            rank: 4,
            radii: vec![ConformalRadius::Finite(1.0), ConformalRadius::Finite(2.0)],
        }];
        let intervals = apply_split_absolute_residual(
            &point_prediction.values,
            &quantiles,
            ConformalMultiTargetPolicy::Marginal,
        )
        .unwrap();
        let interval_block = ConformalIntervalBlock {
            schema_version: CONFORMAL_RUNTIME_SCHEMA_VERSION,
            binding_id: "output:main".to_string(),
            sample_ids: point_prediction.sample_ids.clone(),
            intervals,
            calibration_fingerprint: "7".repeat(64),
            point_prediction_fingerprint: point_prediction_fingerprint_for_runtime(
                &point_prediction,
            )
            .unwrap(),
        };
        let mut presentation = ConformalPresentationV2 {
            schema_version: CONFORMAL_PRESENTATION_SCHEMA_VERSION_V2,
            archive_sha256: "1".repeat(64),
            package_fingerprint: "2".repeat(64),
            replay_outcome_fingerprint: "3".repeat(64),
            binding_id: "output:main".to_string(),
            predictor: ConformalPresentationPredictorV2 {
                model_artifact_fingerprint: "4".repeat(64),
                predictor_binding_fingerprint: "5".repeat(64),
                predictor_descriptor_fingerprint: "6".repeat(64),
            },
            dimensions: ConformalPresentationDimensionsV2 {
                sample_count: 2,
                target_count: 2,
            },
            target_names: point_prediction.target_names.clone(),
            sample_ids: point_prediction.sample_ids.clone(),
            point_prediction,
            interval_block,
            guarantee: ConformalPresentationGuaranteeV2 {
                calibration_sample_count: 4,
                multi_target_policy: ConformalMultiTargetPolicy::Marginal,
                small_sample_policy: ConformalSmallSamplePolicy::Error,
                quantiles,
            },
            calibration_fingerprint: "7".repeat(64),
            presentation_fingerprint: "0".repeat(64),
        };
        presentation.presentation_fingerprint = presentation.compute_fingerprint().unwrap();
        let json = serde_json::to_string(&presentation).unwrap();
        assert_eq!(
            ConformalPresentationV2::from_json(&json).unwrap(),
            presentation
        );

        let mut reordered = presentation.clone();
        reordered.sample_ids.swap(0, 1);
        reordered.presentation_fingerprint = reordered.compute_fingerprint().unwrap();
        assert!(reordered
            .validate()
            .unwrap_err()
            .to_string()
            .contains("ordered identities"));

        let mut altered_interval = presentation;
        altered_interval.interval_block.intervals[0].cells[0][0] = RegressionIntervalCell::Finite {
            lower: 9.5,
            upper: 11.0,
        };
        altered_interval.presentation_fingerprint = altered_interval.compute_fingerprint().unwrap();
        assert!(altered_interval
            .validate()
            .unwrap_err()
            .to_string()
            .contains("persisted guarantee"));
    }
}