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
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
use crate::composition::Element;
use crate::config::PlanningConfig;
use crate::error::{ProviderError, Result};
use crate::evidence::{EvidenceKind, EvidenceScope, EvidenceStrength, PlanningEvidence};
use crate::precursor::{PrecursorId, PrecursorSelection, search_precursor_sets};
use crate::process::{
ConditionPrecedent, ProcessPrecedent, RouteFamily, applicable_route_family_templates,
apply_condition_precedents,
};
use crate::provenance::PlanningProvenance;
use crate::provider::{
LiteratureEvidenceProvider, PrecursorCatalog, PriorExperimentEvidenceProvider,
ProcessEvidenceProvider, RouteSuitabilityProvider, ThermodynamicProvider,
};
use crate::reaction::{BalancedReaction, CompetingPhase, ReactionEnergy, ThermodynamicConditions};
use crate::rejection::{RejectedCandidate, RejectionCode};
use crate::report::{
ApplicabilityAssessment, ApplicabilityLevel, NotRecommendedPlan, PlanId, PlanningWarning,
SCHEMA_VERSION, SynthesisPlan, SynthesisPlanningReport, TargetSummary, UnresolvedRequirement,
WarningSeverity,
};
use crate::route_suitability::{
RouteRecommendation, RouteSuitabilityAssessment, SuitabilityVerdict, derive_recommendation,
};
use crate::score::{ranking_weights_digest, score_plan};
use crate::target::TargetSpecification;
/// Orchestrates every subsystem built in Phases 2-5 into the single public
/// entry point AGENTS.md §18 illustrates: catalog lookup, bounded precursor
/// search, process templating, and scoring, assembled into one
/// [`SynthesisPlanningReport`].
///
/// `thermodynamic_provider` and `process_evidence_provider` are optional
/// (AGENTS.md §18's `Planner::offline_minimal`); `catalog` is not, since
/// there is nothing to plan from without it. A failure from either optional
/// provider degrades to a `PlanningWarning` on the affected plan rather
/// than failing the whole report (AGENTS.md §21.5); a catalog failure
/// propagates, since planning cannot proceed without one at all.
pub struct Planner {
catalog: Box<dyn PrecursorCatalog>,
thermodynamic_provider: Option<Box<dyn ThermodynamicProvider>>,
process_evidence_provider: Option<Box<dyn ProcessEvidenceProvider>>,
route_suitability_provider: Option<Box<dyn RouteSuitabilityProvider>>,
literature_evidence_provider: Option<Box<dyn LiteratureEvidenceProvider>>,
prior_experiment_evidence_provider: Option<Box<dyn PriorExperimentEvidenceProvider>>,
config: PlanningConfig,
}
/// Builds a [`Planner`] with any combination of its 5 optional providers
/// (v0.5.0, Phase 23B) -- `catalog`/`config` are required up front (there is
/// nothing to plan from without a catalog), each provider is attached by
/// name in any order or combination, and `build()` is infallible (no
/// constructor, named or builder, performs any validation beyond field
/// assignment). The crate's first builder pattern; created because the 5
/// named constructors below only covered 3 of the real 2+-optional-provider
/// combinations.
pub struct PlannerBuilder {
catalog: Box<dyn PrecursorCatalog>,
config: PlanningConfig,
thermodynamic_provider: Option<Box<dyn ThermodynamicProvider>>,
process_evidence_provider: Option<Box<dyn ProcessEvidenceProvider>>,
route_suitability_provider: Option<Box<dyn RouteSuitabilityProvider>>,
literature_evidence_provider: Option<Box<dyn LiteratureEvidenceProvider>>,
prior_experiment_evidence_provider: Option<Box<dyn PriorExperimentEvidenceProvider>>,
}
impl PlannerBuilder {
pub fn thermodynamic_provider(
mut self,
provider: impl ThermodynamicProvider + 'static,
) -> Self {
self.thermodynamic_provider = Some(Box::new(provider));
self
}
pub fn process_evidence_provider(
mut self,
provider: impl ProcessEvidenceProvider + 'static,
) -> Self {
self.process_evidence_provider = Some(Box::new(provider));
self
}
pub fn route_suitability_provider(
mut self,
provider: impl RouteSuitabilityProvider + 'static,
) -> Self {
self.route_suitability_provider = Some(Box::new(provider));
self
}
pub fn literature_evidence_provider(
mut self,
provider: impl LiteratureEvidenceProvider + 'static,
) -> Self {
self.literature_evidence_provider = Some(Box::new(provider));
self
}
pub fn prior_experiment_evidence_provider(
mut self,
provider: impl PriorExperimentEvidenceProvider + 'static,
) -> Self {
self.prior_experiment_evidence_provider = Some(Box::new(provider));
self
}
pub fn build(self) -> Planner {
Planner {
catalog: self.catalog,
thermodynamic_provider: self.thermodynamic_provider,
process_evidence_provider: self.process_evidence_provider,
route_suitability_provider: self.route_suitability_provider,
literature_evidence_provider: self.literature_evidence_provider,
prior_experiment_evidence_provider: self.prior_experiment_evidence_provider,
config: self.config,
}
}
}
impl Planner {
/// Starts a [`PlannerBuilder`] -- the general construction path,
/// covering any combination of the 5 optional providers (v0.5.0,
/// Phase 23B). Superseded the 5 named constructors below, none of
/// which covered the real 2+-optional-provider combination space; kept
/// as `#[deprecated]` wrappers around this builder for one release.
pub fn builder(
catalog: impl PrecursorCatalog + 'static,
config: PlanningConfig,
) -> PlannerBuilder {
PlannerBuilder {
catalog: Box::new(catalog),
config,
thermodynamic_provider: None,
process_evidence_provider: None,
route_suitability_provider: None,
literature_evidence_provider: None,
prior_experiment_evidence_provider: None,
}
}
/// Full configuration: a catalog plus both optional providers.
#[deprecated(
since = "0.5.0",
note = "use Planner::builder(catalog, config).process_evidence_provider(p).thermodynamic_provider(t).build() instead"
)]
pub fn new(
catalog: impl PrecursorCatalog + 'static,
process_evidence_provider: impl ProcessEvidenceProvider + 'static,
thermodynamic_provider: impl ThermodynamicProvider + 'static,
config: PlanningConfig,
) -> Self {
Self::builder(catalog, config)
.process_evidence_provider(process_evidence_provider)
.thermodynamic_provider(thermodynamic_provider)
.build()
}
/// Catalog only -- no thermodynamic or process-evidence provider.
/// AGENTS.md §18: "providerがなくても最低限のstoichiometric planningを
/// 実行できる構成" -- but conditions are still never fabricated to make
/// up for the missing providers; they stay unresolved instead.
#[deprecated(
since = "0.5.0",
note = "use Planner::builder(catalog, config).build() instead"
)]
pub fn offline_minimal(
catalog: impl PrecursorCatalog + 'static,
config: PlanningConfig,
) -> Self {
Self::builder(catalog, config).build()
}
/// Catalog plus a process-evidence provider (e.g.
/// `InMemoryLiteratureConditionProvider`, Phase 10) -- no thermodynamic
/// provider. The one new two-provider combination Phase 10 needs; see
/// `new`/`offline_minimal` for the other two.
#[deprecated(
since = "0.5.0",
note = "use Planner::builder(catalog, config).process_evidence_provider(p).build() instead"
)]
pub fn with_process_evidence_provider(
catalog: impl PrecursorCatalog + 'static,
process_evidence_provider: impl ProcessEvidenceProvider + 'static,
config: PlanningConfig,
) -> Self {
Self::builder(catalog, config)
.process_evidence_provider(process_evidence_provider)
.build()
}
/// Catalog plus a route-suitability provider (e.g.
/// `InMemoryRouteSuitabilityProvider`, Phase 15A) -- no thermodynamic or
/// process-evidence provider. Mirrors `with_process_evidence_provider`'s
/// shape; see `new`/`offline_minimal` for the other combinations.
#[deprecated(
since = "0.5.0",
note = "use Planner::builder(catalog, config).route_suitability_provider(p).build() instead"
)]
pub fn with_route_suitability_provider(
catalog: impl PrecursorCatalog + 'static,
route_suitability_provider: impl RouteSuitabilityProvider + 'static,
config: PlanningConfig,
) -> Self {
Self::builder(catalog, config)
.route_suitability_provider(route_suitability_provider)
.build()
}
/// Catalog plus a literature-evidence provider (e.g.
/// `LiteratureObservationCorpusProvider`, v0.4.0 Integration) -- no
/// other optional provider. Mirrors `with_route_suitability_provider`'s
/// shape; see `new`/`offline_minimal` for the other combinations. The
/// resulting reports carry `SynthesisPlan.literature_evidence` but are
/// otherwise identical to what `offline_minimal` alone would have
/// produced -- score, confidence, ranking, and `steps` are unaffected
/// by construction (`literature_evidence.rs`'s module doc comment).
#[deprecated(
since = "0.5.0",
note = "use Planner::builder(catalog, config).literature_evidence_provider(p).build() instead"
)]
pub fn with_literature_evidence_provider(
catalog: impl PrecursorCatalog + 'static,
literature_evidence_provider: impl LiteratureEvidenceProvider + 'static,
config: PlanningConfig,
) -> Self {
Self::builder(catalog, config)
.literature_evidence_provider(literature_evidence_provider)
.build()
}
/// Plans for `target`, returning a complete report -- never a partial
/// or panicking result for well-formed input (AGENTS.md §25).
///
/// `execution_timestamp` is a parameter, not read from the system
/// clock internally: `PlanningProvenance.execution_timestamp` is
/// documented as caller-supplied precisely so the deterministic core
/// never touches wall-clock time (AGENTS.md §25). This is one
/// deliberate deviation from AGENTS.md §18's illustrative
/// single-argument `plan(&target)` signature -- an unset provenance
/// field would fail §29's "provenanceがある" completion criterion for
/// every report the crate produces.
pub fn plan(
&self,
target: &TargetSpecification,
execution_timestamp: &str,
) -> Result<SynthesisPlanningReport> {
let composition = &target.composition;
let provenance = self.provenance(execution_timestamp);
let contradictory = contradictory_elements(target);
if !contradictory.is_empty() {
return Ok(abstain(target, &contradictory, provenance));
}
let applicability = assess_applicability(target);
let candidates = self
.catalog
.candidates_for(composition, &target.constraints)?;
let mut warnings = Vec::new();
if candidates.is_empty() {
warnings.push(PlanningWarning {
message: "the precursor catalog returned no candidates sharing any \
element with the target"
.to_string(),
severity: WarningSeverity::Caution,
});
}
// Phase 15A: computed once per report, independent of which
// precursor sets get accepted below -- suitability is a
// (target, route_family) property, not a per-plan one. Correlate a
// specific SynthesisPlan back to its assessment via
// SynthesisPlan.route_family. Same two variants
// applicable_route_family_templates calls unconditionally
// (process.rs); update both together if a third route family is
// ever added.
let mut route_suitability = Vec::new();
if let Some(provider) = &self.route_suitability_provider {
for route_family in [
RouteFamily::ConventionalSolidState,
RouteFamily::Mechanochemical,
] {
match provider.assess(composition, route_family) {
Ok(findings) => route_suitability.push(RouteSuitabilityAssessment {
route_family,
findings,
}),
Err(err) => warnings.push(PlanningWarning {
message: format!(
"route suitability provider failed for {route_family:?}, \
continuing without it: {err}"
),
severity: WarningSeverity::Info,
}),
}
}
}
let outcome = search_precursor_sets(
composition,
&candidates,
&target.constraints,
&self.config.search_budget,
)?;
// `competing_phases` is a target-only query -- its answer cannot
// vary across `accepted`/route-family iterations below, since
// `composition` is fixed for this whole `plan()` call. Computed
// once here (previously: once per (accepted, route_family) pair,
// a known, accepted inefficiency the ROADMAP recorded) and reused
// by every iteration. Gated on a non-empty accepted set, matching
// the pre-fix call site's own scope (it lived inside `for accepted
// in &outcome.accepted`) -- an empty search result must still make
// zero provider calls, not one, since nothing below will ever read
// this value.
let competing_phases_cache: Option<
std::result::Result<Vec<CompetingPhase>, ProviderError>,
> = if outcome.accepted.is_empty() {
None
} else {
self.thermodynamic_provider
.as_ref()
.map(|provider| provider.competing_phases(composition))
};
let mut plans: Vec<SynthesisPlan> = Vec::with_capacity(outcome.accepted.len());
for accepted in &outcome.accepted {
// Phase 12: one accepted precursor set can now produce a plan
// under more than one route family (e.g. ConventionalSolidState
// and Mechanochemical both apply unconditionally). Each gets its
// own full pass through provider lookups below.
//
// `reaction_energy` depends only on `accepted.reaction` (fixed
// `ThermodynamicConditions::default()`), not on which route
// family's template is being scored, so it's computed once per
// `accepted` here and reused across every route family sharing
// it -- closes the other half of the same known inefficiency
// `competing_phases_cache` above closes; process-evidence
// provider calls further below still run once per route family,
// deliberately not touched by this change (out of the scope
// ROADMAP recorded for this fix).
let reaction_energy_cache: Option<
std::result::Result<Option<ReactionEnergy>, ProviderError>,
> = self.thermodynamic_provider.as_ref().map(|provider| {
provider.reaction_energy(&accepted.reaction, &ThermodynamicConditions::default())
});
// `precursors` and `precedents` both depend only on `accepted`
// (via `accepted.precursors`/`accepted.reaction.reactants()`),
// not on which route family's template is being scored -- same
// reasoning as `reaction_energy_cache` above, now extended
// (v0.5.0, Phase 23C) to close the "process-evidence provider
// calls still run once per route family" gap that same fix
// deliberately left open at the time.
let precursors: Vec<PrecursorSelection> = accepted
.precursors
.iter()
.zip(accepted.reaction.reactants())
.map(|(id, species)| PrecursorSelection {
precursor: id.clone(),
formula_units: species.coefficient(),
})
.collect();
let precedents_cache: Option<
std::result::Result<Vec<ProcessPrecedent>, ProviderError>,
> = self
.process_evidence_provider
.as_ref()
.map(|provider| provider.precedents(target, &precursors));
for mut template in applicable_route_family_templates(composition, accepted) {
let mut evidence = std::mem::take(&mut template.evidence);
let mut provider_warnings = Vec::new();
let mut condition_conflicts = Vec::new();
let process_evidence_provider_consulted = self.process_evidence_provider.is_some();
if let (Some(cached_energy), Some(cached_phases)) =
(&reaction_energy_cache, &competing_phases_cache)
{
match cached_energy.clone() {
Ok(Some(energy)) => evidence.push(PlanningEvidence {
kind: EvidenceKind::ThermodynamicData,
source_id: None,
statement: format!(
"reaction energy {:.4} eV/atom from the configured \
ThermodynamicProvider",
energy.value_ev_per_atom()
),
strength: EvidenceStrength::Moderate,
applicable_to: EvidenceScope::ExactTarget,
limitations: vec![
"a raw reaction energy is not converted into a favorability \
judgment: thermodynamic favorability is not experimental \
likelihood (AGENTS.md §4.3)"
.to_string(),
],
}),
Ok(None) => {}
Err(err) => provider_warnings.push(PlanningWarning {
message: format!(
"thermodynamic provider failed for this candidate, \
continuing without its data: {err}"
),
severity: WarningSeverity::Info,
}),
}
// Phase 13: context-only, same as reaction_energy above --
// never folded into score.rs's numeric scoring (AGENTS.md
// §4.3, ThermodynamicProvider::competing_phases's own doc
// comment).
//
// `competing_phases` is a target-only query (no reaction
// in its signature) -- a provider's honest answer can
// include this specific plan's own precursors/byproducts,
// since they're real phases in the same chemical system.
// But labeling a plan's own reaction participants as
// "competing" with it, on the evidence attached to that
// *same* plan, would be a false-confidence-shaped claim
// (AGENTS.md §21 audit) -- so anything exactly matching
// this reaction's own reactants/products is filtered out
// here, where the reaction is in scope, rather than in
// the provider (which reasonably has no reaction to
// compare against).
let this_reaction_species: Vec<_> = accepted
.reaction
.reactants()
.iter()
.chain(accepted.reaction.products())
.map(|s| s.composition.clone())
.collect();
match cached_phases.clone() {
Ok(phases) => {
let phases: Vec<_> = phases
.into_iter()
.filter(|p| !this_reaction_species.contains(&p.composition))
.collect();
if !phases.is_empty() {
evidence.push(PlanningEvidence {
kind: EvidenceKind::ThermodynamicData,
source_id: None,
statement: format!(
"{} competing phase(s) with known formation energy \
reported near this target composition by the \
configured ThermodynamicProvider, excluding this \
plan's own precursors and reaction products",
phases.len()
),
strength: EvidenceStrength::Weak,
applicable_to: EvidenceScope::ExactTarget,
limitations: vec![
"competing-phase energetics do not account for \
kinetics, particle size, or atmosphere, and are not \
converted into a selectivity judgment (AGENTS.md §4.3)"
.to_string(),
],
});
}
}
Err(err) => provider_warnings.push(PlanningWarning {
message: format!(
"thermodynamic provider's competing-phase lookup failed for \
this candidate, continuing without it: {err}"
),
severity: WarningSeverity::Info,
}),
}
}
if let Some(cached_precedents) = &precedents_cache {
match cached_precedents.clone() {
Ok(precedents) => {
let mut all_conditions: Vec<ConditionPrecedent> = Vec::new();
for precedent in precedents {
// An empty description means this precedent has nothing
// prose-only to add (Phase 10's literature condition
// provider, for one) -- pushing a blank statement as
// evidence would be noise, not information.
if !precedent.description.is_empty() {
evidence.push(PlanningEvidence {
kind: EvidenceKind::UserProvidedPrecedent,
source_id: None,
statement: precedent.description,
strength: EvidenceStrength::Weak,
applicable_to: EvidenceScope::SimilarMaterial,
limitations: vec![
"this precedent's free-text description alone \
carries no structured method/condition detail"
.to_string(),
],
});
}
all_conditions.extend(precedent.conditions);
}
// Phase 10: splice any structured, cited condition data into
// this template's still-unresolved Heat steps before scoring,
// rather than only ever adding free-text evidence that never
// changes what's actually planned. Phase 19: every matching
// precedent across every returned ProcessPrecedent is
// collected first and applied in one order-independent call,
// rather than one ProcessPrecedent at a time -- calling this
// once per precedent let whichever one happened to run first
// silently win any field two precedents both supplied.
let (condition_evidence, conflicts) =
apply_condition_precedents(&mut template.steps, &all_conditions);
evidence.extend(condition_evidence);
condition_conflicts.extend(conflicts);
}
Err(err) => provider_warnings.push(PlanningWarning {
message: format!(
"process evidence provider failed for this candidate, \
continuing without its data: {err}"
),
severity: WarningSeverity::Info,
}),
}
}
let assessment = score_plan(
composition,
&applicability,
Some(&accepted.reaction),
&template.steps,
&evidence,
process_evidence_provider_consulted,
&condition_conflicts,
template.route_family,
&self.config.ranking_weights,
);
// v0.4.0 Integration: looked up *after* score_plan has
// already run and returned, deliberately -- this evidence
// is never a score_plan input (it isn't in that call's
// argument list at all, unlike `evidence`/
// `condition_conflicts`/`process_evidence_provider_consulted`
// above), so nothing about its ordering here can affect
// `assessment`. Restricted to ConventionalSolidState even
// though `LiteratureObservationCorpusProvider` already
// enforces the same restriction internally -- checked at
// this call site too, so the "never applied to
// Mechanochemical" claim doesn't rely on any one
// implementation's internals alone.
let mut literature_evidence = None;
if template.route_family == RouteFamily::ConventionalSolidState {
if let Some(provider) = &self.literature_evidence_provider {
let precursor_compositions: Vec<_> = accepted
.reaction
.reactants()
.iter()
.map(|s| s.composition.clone())
.collect();
match provider.route_evidence(
composition,
template.route_family,
&precursor_compositions,
) {
Ok(Some(route_evidence)) => {
let found = &route_evidence.assessment;
// Always disclosed, not just for the
// Conflict/shape-diversity cases -- a clean
// unanimous Agreement is exactly the result
// most likely to be misread as "the corpus
// endorses this temperature" if it were the
// one case left silent (pre-commit advisor
// review finding).
provider_warnings.push(PlanningWarning {
message: format!(
"literature evidence for this exact route: {} \
independent DOI(s) found{}{} -- reference-only, \
never applied to conditions or score",
found.independent_doi_count(),
if found.has_multiple_operation_shapes {
", with differing reported step counts across \
DOIs"
} else {
""
},
if found.has_any_conflict() {
", including a field-level disagreement among \
independent DOIs"
} else {
""
},
),
severity: WarningSeverity::Info,
});
literature_evidence = Some(route_evidence);
}
Ok(None) => {}
Err(err) => provider_warnings.push(PlanningWarning {
message: format!(
"literature evidence provider failed for this candidate, \
continuing without it: {err}"
),
severity: WarningSeverity::Info,
}),
}
}
}
// Phase 26: same reasoning as the literature-evidence
// lookup above -- looked up after score_plan has already
// run and returned, never a score_plan input. Unlike
// literature evidence, not restricted to
// ConventionalSolidState: route_family is already part
// of the match key, so cross-family leakage can't
// happen regardless of which route families this
// provider is asked about.
let mut prior_experiment_evidence = None;
if let Some(provider) = &self.prior_experiment_evidence_provider {
let precursor_compositions: Vec<_> = accepted
.reaction
.reactants()
.iter()
.map(|s| s.composition.clone())
.collect();
match provider.prior_experiments(
composition,
template.route_family,
&precursor_compositions,
) {
Ok(Some(evidence)) => {
// Always disclosed, same "a clean/unanimous
// result is exactly the case most likely to
// be misread as endorsement if left silent"
// reasoning as the literature-evidence
// warning above.
let tally = evidence.outcome_tally();
let tally_prose = tally
.iter()
.map(|(outcome, count)| format!("{count} {outcome:?}"))
.collect::<Vec<_>>()
.join(", ");
provider_warnings.push(PlanningWarning {
message: format!(
"{} prior experiment record(s) for this exact route: {} \
-- reference-only; recorded conditions, grades and \
catalogs differ between records, so this is not a \
success rate, and none of it is applied to conditions \
or score",
evidence.records.len(),
tally_prose,
),
severity: WarningSeverity::Info,
});
prior_experiment_evidence = Some(evidence);
}
Ok(None) => {}
Err(err) => provider_warnings.push(PlanningWarning {
message: format!(
"prior experiment evidence provider failed for this \
candidate, continuing without it: {err}"
),
severity: WarningSeverity::Info,
}),
}
}
let mut plan_warnings = template.warnings;
plan_warnings.extend(assessment.warnings);
plan_warnings.extend(provider_warnings);
plans.push(SynthesisPlan {
plan_id: derive_plan_id(
&accepted.precursors,
&accepted.reaction,
template.route_family,
),
route_family: template.route_family,
precursors: precursors.clone(),
balanced_reaction: Some(accepted.reaction.clone()),
steps: template.steps,
score: assessment.score,
confidence: assessment.confidence,
applicability: assessment.applicability,
evidence,
warnings: plan_warnings,
assumptions: assessment.assumptions,
unresolved: assessment.unresolved,
manual_review_required: assessment.manual_review_required,
literature_evidence,
prior_experiment_evidence,
});
}
}
// Phase 15B: separate NotRecommended plans out *before* ranking so
// SearchBudget::max_plans_returned's overflow message (below) only
// ever counts recommendable plans -- it must never describe a plan
// that was actually excluded for a stated reason as merely
// "omitted by budget." Route families absent from `route_suitability`
// (no provider configured, or that family's assess() call failed)
// are treated as InsufficientEvidence by construction: `.find(..)`
// returns `None`, so nothing is filtered -- identical to pre-15B
// behavior whenever no provider is configured.
let mut not_recommended = Vec::new();
if !route_suitability.is_empty() {
let mut kept = Vec::with_capacity(plans.len());
for plan in plans {
let assessment = route_suitability
.iter()
.find(|a| a.route_family == plan.route_family);
match assessment {
Some(assessment)
if derive_recommendation(assessment)
== RouteRecommendation::NotRecommended =>
{
let contradicting_findings = assessment
.findings
.iter()
.filter(|f| f.verdict == SuitabilityVerdict::Contradicts)
.cloned()
.collect();
not_recommended.push(NotRecommendedPlan {
plan,
contradicting_findings,
});
}
_ => kept.push(plan),
}
}
plans = kept;
}
// Explicit abstention (not an empty success) when every generated
// plan was excluded above -- `applicability` is deliberately left
// untouched (that's a claim about domain fit, not about whether
// current evidence favors any specific route), so this uses the
// same `unresolved` channel `abstain()` already uses for its own
// abstention case, not a new signal.
let mut unresolved = Vec::new();
if plans.is_empty() && !not_recommended.is_empty() {
unresolved.push(UnresolvedRequirement {
description: "route selection".to_string(),
reason: format!(
"every generated plan ({} total) was excluded as NotRecommended by \
route-suitability findings with strong, uncontested contradicting \
evidence -- see not_recommended for the specific plans and findings; \
an explicit abstention, not an absence of valid chemistry",
not_recommended.len()
),
});
}
// Deterministic descending rank; ties break on plan_id so ordering
// never depends on catalog/accepted-set iteration order (AGENTS.md
// §21.4).
plans.sort_by(|a, b| {
b.score
.total_ranking_score
.value()
.partial_cmp(&a.score.total_ranking_score.value())
.unwrap_or(std::cmp::Ordering::Equal)
.then_with(|| a.plan_id.0.cmp(&b.plan_id.0))
});
let max_plans = self.config.search_budget.max_plans_returned;
let mut rejected_candidates = outcome.rejected;
let overflow = plans.len().saturating_sub(max_plans);
if overflow > 0 {
rejected_candidates.push(RejectedCandidate {
precursors: vec![],
reason_codes: vec![RejectionCode::SearchBudgetExhausted],
explanation: format!(
"{overflow} additional valid plan(s) were found but are not \
included: only the top {max_plans} by total_ranking_score are \
returned (SearchBudget::max_plans_returned)"
),
});
}
plans.truncate(max_plans);
Ok(SynthesisPlanningReport {
schema_version: SCHEMA_VERSION,
target: TargetSummary {
composition: composition.clone(),
structure_present: target.structure.is_some(),
desired_phase: target.desired_phase.as_ref().map(|p| p.phase_name.clone()),
},
applicability,
route_suitability,
plans,
not_recommended,
rejected_candidates,
unresolved,
warnings,
provenance,
})
}
fn provenance(&self, execution_timestamp: &str) -> PlanningProvenance {
PlanningProvenance {
gugen_version: PlanningProvenance::gugen_version().to_string(),
build_identifier: None,
schema_version: SCHEMA_VERSION,
chematic_crystal_version: None,
mikiwame_version: None,
precursor_catalog_version: None,
thermodynamic_provider_version: None,
process_template_version: None,
ranking_config_digest: Some(ranking_weights_digest(&self.config.ranking_weights)),
execution_timestamp: execution_timestamp.to_string(),
deterministic_seed: self.config.deterministic_seed,
enabled_features: enabled_features(),
}
}
}
fn enabled_features() -> Vec<String> {
let mut features = Vec::new();
if cfg!(feature = "serde") {
features.push("serde".to_string());
}
if cfg!(feature = "clap") {
features.push("clap".to_string());
}
if cfg!(feature = "mikiwame") {
features.push("mikiwame".to_string());
}
if cfg!(feature = "chematic_crystal") {
features.push("chematic_crystal".to_string());
}
if cfg!(feature = "materials_project") {
features.push("materials_project".to_string());
}
if cfg!(feature = "literature_corpus") {
features.push("literature_corpus".to_string());
}
features
}
/// Target elements that `constraints.forbidden_elements` also forbids --
/// self-contradictory input no plan can ever satisfy (AGENTS.md §26 Phase
/// 6 "invalid target handling"). Distinct from "no candidates cover the
/// target," which is a catalog-coverage outcome, not a domain judgment.
fn contradictory_elements(target: &TargetSpecification) -> Vec<Element> {
target
.composition
.elements()
.filter(|e| target.constraints.forbidden_elements.contains(e))
.collect()
}
fn abstain(
target: &TargetSpecification,
contradictory: &[Element],
provenance: PlanningProvenance,
) -> SynthesisPlanningReport {
let symbols = contradictory
.iter()
.map(Element::symbol)
.collect::<Vec<_>>()
.join(", ");
SynthesisPlanningReport {
schema_version: SCHEMA_VERSION,
target: TargetSummary {
composition: target.composition.clone(),
structure_present: target.structure.is_some(),
desired_phase: target.desired_phase.as_ref().map(|p| p.phase_name.clone()),
},
applicability: ApplicabilityAssessment {
level: ApplicabilityLevel::OutOfDomain,
rationale: vec![format!(
"target composition requires element(s) {symbols} that \
PlanningConstraints.forbidden_elements also forbids -- no plan can \
ever satisfy both"
)],
},
// Abstained before any route family was ever considered -- no
// suitability assessment to report, same reasoning as `plans: []`.
route_suitability: vec![],
plans: vec![],
not_recommended: vec![],
rejected_candidates: vec![],
unresolved: vec![UnresolvedRequirement {
description: "planning".to_string(),
reason: format!(
"target and constraints are self-contradictory over element(s) {symbols}"
),
}],
warnings: vec![],
provenance,
}
}
/// Content-derived, not position-derived (AGENTS.md §20: "plan IDを決定的
/// にする"): the same precursor set, reaction, and route family always get
/// the same id regardless of where it lands in ranked order or catalog
/// insertion order. `route_family` is part of the hash (Phase 12): since
/// Phase 12, the same accepted precursor set can produce a plan under more
/// than one route family, and those are different plans that must not
/// collide on `plan_id`.
fn derive_plan_id(
precursors: &[PrecursorId],
reaction: &BalancedReaction,
route_family: RouteFamily,
) -> PlanId {
use std::hash::{Hash, Hasher};
let mut hasher = std::collections::hash_map::DefaultHasher::new();
let mut ids: Vec<&str> = precursors.iter().map(|p| p.0.as_str()).collect();
ids.sort_unstable();
for id in &ids {
id.hash(&mut hasher);
}
for species in reaction.reactants().iter().chain(reaction.products()) {
for (element, amount) in species.composition.iter() {
element.symbol().hash(&mut hasher);
amount.to_bits().hash(&mut hasher);
}
species.coefficient().hash(&mut hasher);
}
format!("{route_family:?}").hash(&mut hasher);
PlanId(format!("plan-{:016x}", hasher.finish()))
}
/// AGENTS.md §16 lists `InDomain` for "bulk inorganic solid-state" but
/// `OutOfDomain` for MOF/thin-film -- and gugen cannot currently tell those
/// apart. `TargetStructure { description: String }` is free text with no
/// classification; a structure gugen can't classify is not evidence of
/// being in-domain, so this stays `PartiallyInDomain` regardless of
/// whether structure is present. Only a real classifier (mikiwame, once
/// wired with actual structure data -- see the `mikiwame` adapter) or a
/// published `chematic-crystal` could justify `InDomain` here.
fn assess_applicability(target: &TargetSpecification) -> ApplicabilityAssessment {
let rationale = if target.structure.is_some() {
"structure provided, but gugen has no structural classifier wired in \
to confirm it's in the validated bulk-inorganic domain (AGENTS.md §16 \
lists both in-domain and out-of-domain examples with structure present)"
.to_string()
} else {
"formula-only target, no structure provided (AGENTS.md §16's own \
example for this level)"
.to_string()
};
ApplicabilityAssessment {
level: ApplicabilityLevel::PartiallyInDomain,
rationale: vec![rationale],
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::composition::Composition;
use crate::config::SearchBudget;
use crate::error::ProviderError;
use crate::literature_evidence::{
CrossDoiFieldStatus, LiteratureRouteEvidence, RouteObservationAssessment, SourcedValue,
StepGroupAssessment, StepGroupKey,
};
use crate::precursor::{AvailabilityMetadata, InMemoryPrecursorCatalog, PrecursorCandidate};
use crate::prior_experiment_evidence::PriorExperimentEvidence;
use crate::process::ProcessPrecedent;
use crate::reaction::ReactionEnergy;
use crate::target::PlanningConstraints;
fn element(symbol: &str) -> Element {
Element::new(symbol).unwrap()
}
fn composition(pairs: &[(&str, f64)]) -> Composition {
Composition::new(pairs.iter().map(|&(sym, amt)| (element(sym), amt))).unwrap()
}
fn candidate(id: &str, pairs: &[(&str, f64)]) -> PrecursorCandidate {
PrecursorCandidate {
id: PrecursorId(id.to_string()),
composition: composition(pairs),
availability: None,
}
}
fn barium_titanate_catalog() -> InMemoryPrecursorCatalog {
InMemoryPrecursorCatalog::new(vec![
candidate("BaCO3", &[("Ba", 1.0), ("C", 1.0), ("O", 3.0)]),
candidate("BaO", &[("Ba", 1.0), ("O", 1.0)]),
candidate("TiO2", &[("Ti", 1.0), ("O", 2.0)]),
])
}
fn barium_titanate_target() -> TargetSpecification {
TargetSpecification {
composition: composition(&[("Ba", 1.0), ("Ti", 1.0), ("O", 3.0)]),
structure: None,
desired_phase: None,
constraints: PlanningConstraints::default(),
}
}
fn generous_config() -> PlanningConfig {
PlanningConfig {
search_budget: SearchBudget {
max_precursor_sets: 10_000,
max_precursors_per_plan: 3,
max_plans_returned: 20,
},
..PlanningConfig::default()
}
}
#[test]
fn offline_minimal_produces_ranked_plans_from_a_catalog_alone() {
let planner = Planner::builder(barium_titanate_catalog(), generous_config()).build();
let report = planner
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(!report.plans.is_empty(), "expected at least one plan");
assert!(
report
.plans
.iter()
.all(|p| p.balanced_reaction.is_some() && p.manual_review_required),
);
assert_eq!(
report.provenance.execution_timestamp,
"2026-08-14T00:00:00Z"
);
assert!(report.provenance.ranking_config_digest.is_some());
// Descending order by total_ranking_score.
for window in report.plans.windows(2) {
assert!(
window[0].score.total_ranking_score.value()
>= window[1].score.total_ranking_score.value()
);
}
// plan_id must uniquely identify a plan within a report -- this is
// the assertion that would have caught the search_precursor_sets
// duplicate-acceptance bug automatically instead of by manually
// inspecting `gugen plan` CLI output (see precursor.rs's
// `a_redundant_larger_combination_is_rejected_as_a_duplicate_not_double_accepted`).
let ids: std::collections::BTreeSet<&str> =
report.plans.iter().map(|p| p.plan_id.0.as_str()).collect();
assert_eq!(
ids.len(),
report.plans.len(),
"plan_id must be unique across the report's plans: {:?}",
report
.plans
.iter()
.map(|p| &p.plan_id.0)
.collect::<Vec<_>>()
);
}
/// Phase 30 PR 1: `CandidateGeneratorEnsemble` implements
/// `PrecursorCatalog`, so it must be a real, working drop-in for
/// `Planner::builder`'s catalog argument -- not just a type that
/// happens to compile. Deliberately reuses the same fixtures as
/// `offline_minimal_produces_ranked_plans_from_a_catalog_alone` so the
/// only variable is the catalog implementation.
#[test]
fn candidate_generator_ensemble_works_as_a_planner_catalog() {
let ensemble = crate::candidate_generator::CandidateGeneratorEnsemble::new(vec![Box::new(
crate::candidate_generator::CatalogExactGenerator::new(barium_titanate_catalog()),
)]);
let planner = Planner::builder(ensemble, generous_config()).build();
let report = planner
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(!report.plans.is_empty(), "expected at least one plan");
assert!(
report
.plans
.iter()
.all(|p| p.balanced_reaction.is_some() && p.manual_review_required),
);
}
#[test]
fn self_contradictory_target_abstains_with_no_plans() {
let mut target = barium_titanate_target();
target.constraints.forbidden_elements.insert(element("Ba"));
let planner = Planner::builder(barium_titanate_catalog(), generous_config()).build();
let report = planner.plan(&target, "2026-08-14T00:00:00Z").unwrap();
assert!(report.plans.is_empty());
assert_eq!(
report.applicability.level,
crate::report::ApplicabilityLevel::OutOfDomain
);
}
#[test]
fn empty_catalog_result_produces_a_warning_not_a_panic() {
let empty = InMemoryPrecursorCatalog::new(vec![]);
let planner = Planner::builder(empty, generous_config()).build();
let report = planner
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(report.plans.is_empty());
assert!(
report
.warnings
.iter()
.any(|w| w.message.contains("no candidates"))
);
}
struct FailingThermodynamicProvider;
impl ThermodynamicProvider for FailingThermodynamicProvider {
fn reaction_energy(
&self,
_reaction: &BalancedReaction,
_conditions: &ThermodynamicConditions,
) -> std::result::Result<Option<ReactionEnergy>, ProviderError> {
Err(ProviderError::Unavailable("simulated outage".to_string()))
}
}
struct FailingProcessEvidenceProvider;
impl ProcessEvidenceProvider for FailingProcessEvidenceProvider {
fn precedents(
&self,
_target: &TargetSpecification,
_precursors: &[PrecursorSelection],
) -> std::result::Result<Vec<ProcessPrecedent>, ProviderError> {
Err(ProviderError::Unavailable("simulated outage".to_string()))
}
}
/// Counts real calls rather than answering from a canned per-call
/// table, so the counters below directly measure how many times
/// `plan()` actually invokes the provider -- the thing the caching fix
/// (ROADMAP's "Known risks" duplicate-provider-call entry) changes.
#[derive(Default)]
struct CountingThermodynamicProvider {
reaction_energy_calls: std::cell::Cell<usize>,
competing_phases_calls: std::cell::Cell<usize>,
}
impl ThermodynamicProvider for CountingThermodynamicProvider {
fn reaction_energy(
&self,
_reaction: &BalancedReaction,
_conditions: &ThermodynamicConditions,
) -> std::result::Result<Option<ReactionEnergy>, ProviderError> {
self.reaction_energy_calls
.set(self.reaction_energy_calls.get() + 1);
Ok(None)
}
fn competing_phases(
&self,
_target: &Composition,
) -> std::result::Result<Vec<CompetingPhase>, ProviderError> {
self.competing_phases_calls
.set(self.competing_phases_calls.get() + 1);
Ok(Vec::new())
}
}
// Planner::new takes ownership of its provider, but the test needs a
// handle to read the counters afterward -- an Arc clone shares the same
// Cells, so this impl just delegates to the wrapped provider.
impl ThermodynamicProvider for std::rc::Rc<CountingThermodynamicProvider> {
fn reaction_energy(
&self,
reaction: &BalancedReaction,
conditions: &ThermodynamicConditions,
) -> std::result::Result<Option<ReactionEnergy>, ProviderError> {
self.as_ref().reaction_energy(reaction, conditions)
}
fn competing_phases(
&self,
target: &Composition,
) -> std::result::Result<Vec<CompetingPhase>, ProviderError> {
self.as_ref().competing_phases(target)
}
}
struct NoopProcessEvidenceProvider;
impl ProcessEvidenceProvider for NoopProcessEvidenceProvider {
fn precedents(
&self,
_target: &TargetSpecification,
_precursors: &[PrecursorSelection],
) -> std::result::Result<Vec<ProcessPrecedent>, ProviderError> {
Ok(Vec::new())
}
}
/// Same counting-not-canned-answer discipline as
/// `CountingThermodynamicProvider` above, for `precedents` (v0.5.0,
/// Phase 23C's dedup extension).
#[derive(Default)]
struct CountingProcessEvidenceProvider {
precedents_calls: std::cell::Cell<usize>,
}
impl ProcessEvidenceProvider for CountingProcessEvidenceProvider {
fn precedents(
&self,
_target: &TargetSpecification,
_precursors: &[PrecursorSelection],
) -> std::result::Result<Vec<ProcessPrecedent>, ProviderError> {
self.precedents_calls.set(self.precedents_calls.get() + 1);
Ok(Vec::new())
}
}
impl ProcessEvidenceProvider for std::rc::Rc<CountingProcessEvidenceProvider> {
fn precedents(
&self,
target: &TargetSpecification,
precursors: &[PrecursorSelection],
) -> std::result::Result<Vec<ProcessPrecedent>, ProviderError> {
self.as_ref().precedents(target, precursors)
}
}
/// Regression test for the ROADMAP "Known risks" entry: once Phase 12
/// (multiple route families per accepted precursor set) and Phase 13
/// (thermodynamic provider) are both configured, `reaction_energy`/
/// `competing_phases` must not be called once per route family sharing
/// the same accepted set or composition -- `reaction_energy` should run
/// at most once per distinct accepted reaction, and `competing_phases`
/// (a target-only query, invariant across the whole `plan()` call)
/// should run exactly once regardless of how many accepted sets or
/// route families exist.
#[test]
fn thermodynamic_provider_calls_are_not_duplicated_per_route_family() {
let provider = std::rc::Rc::new(CountingThermodynamicProvider::default());
let planner = Planner::builder(barium_titanate_catalog(), generous_config())
.process_evidence_provider(NoopProcessEvidenceProvider)
.thermodynamic_provider(provider.clone())
.build();
let report = planner
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
// Multiple route families (ConventionalSolidState, Mechanochemical)
// apply unconditionally to every accepted set, so this fixture is
// guaranteed to produce more plans than distinct accepted reactions
// whenever the provider is actually configured -- otherwise this
// test would trivially pass with 1 plan and prove nothing.
assert!(
report.plans.len() > 1,
"fixture must produce multiple plans for this test to be meaningful, got {}",
report.plans.len()
);
assert_eq!(
provider.competing_phases_calls.get(),
1,
"competing_phases depends only on the target composition, which is fixed for \
the whole plan() call -- it must be called exactly once, not once per plan"
);
assert!(
provider.reaction_energy_calls.get() < report.plans.len(),
"reaction_energy must be cached per accepted reaction, not called once per \
route-family plan: {} calls for {} plans",
provider.reaction_energy_calls.get(),
report.plans.len()
);
assert!(
provider.reaction_energy_calls.get() >= 1,
"the provider must still actually be consulted at least once"
);
}
/// The `competing_phases` cache is hoisted above the accepted-set loop
/// (see `plan()`'s comment), so it must stay gated on a non-empty
/// accepted set explicitly -- otherwise an empty search result would
/// still make one provider call for a report that ends up with zero
/// plans, unlike the pre-fix code (whose call site lived entirely
/// inside `for accepted in &outcome.accepted`, so an empty accepted set
/// made zero calls by construction).
#[test]
fn no_thermodynamic_provider_calls_when_nothing_is_accepted() {
let provider = std::rc::Rc::new(CountingThermodynamicProvider::default());
// A catalog that shares no element with the target: search_precursor_sets
// accepts nothing, so this exercises the empty-accepted-set path
// with a real (not offline_minimal) thermodynamic provider
// configured.
let unrelated_catalog =
InMemoryPrecursorCatalog::new(vec![candidate("NaCl", &[("Na", 1.0), ("Cl", 1.0)])]);
let planner = Planner::builder(unrelated_catalog, generous_config())
.process_evidence_provider(NoopProcessEvidenceProvider)
.thermodynamic_provider(provider.clone())
.build();
let report = planner
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(report.plans.is_empty());
assert_eq!(provider.competing_phases_calls.get(), 0);
assert_eq!(provider.reaction_energy_calls.get(), 0);
}
/// Regression test for Phase 23C's dedup extension: `precedents`
/// depends only on `accepted` (via `accepted.precursors`/
/// `accepted.reaction.reactants()`), not on which route family's
/// template is being scored, so it must be called at most once per
/// distinct accepted precursor set -- not once per route-family plan,
/// mirroring `thermodynamic_provider_calls_are_not_duplicated_per_route_family`
/// above for the sibling provider this same fix left un-deduplicated
/// at the time (PR #37).
#[test]
fn process_evidence_provider_calls_are_not_duplicated_per_route_family() {
let provider = std::rc::Rc::new(CountingProcessEvidenceProvider::default());
let planner = Planner::builder(barium_titanate_catalog(), generous_config())
.process_evidence_provider(provider.clone())
.build();
let report = planner
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(
report.plans.len() > 1,
"fixture must produce multiple plans for this test to be meaningful, got {}",
report.plans.len()
);
assert!(
provider.precedents_calls.get() < report.plans.len(),
"precedents must be cached per accepted precursor set, not called once per \
route-family plan: {} calls for {} plans",
provider.precedents_calls.get(),
report.plans.len()
);
assert!(
provider.precedents_calls.get() >= 1,
"the provider must still actually be consulted at least once"
);
}
/// Same "empty accepted set makes zero provider calls" guard as
/// `no_thermodynamic_provider_calls_when_nothing_is_accepted` above,
/// for `precedents`.
#[test]
fn no_process_evidence_provider_calls_when_nothing_is_accepted() {
let provider = std::rc::Rc::new(CountingProcessEvidenceProvider::default());
let unrelated_catalog =
InMemoryPrecursorCatalog::new(vec![candidate("NaCl", &[("Na", 1.0), ("Cl", 1.0)])]);
let planner = Planner::builder(unrelated_catalog, generous_config())
.process_evidence_provider(provider.clone())
.build();
let report = planner
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(report.plans.is_empty());
assert_eq!(provider.precedents_calls.get(), 0);
}
/// AGENTS.md §21.5: one provider failing must not fail the whole plan.
#[test]
fn a_failing_optional_provider_degrades_to_a_warning_not_a_failure() {
let planner = Planner::builder(barium_titanate_catalog(), generous_config())
.process_evidence_provider(FailingProcessEvidenceProvider)
.thermodynamic_provider(FailingThermodynamicProvider)
.build();
let report = planner
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(!report.plans.is_empty());
for plan in &report.plans {
assert!(
plan.warnings
.iter()
.filter(|w| w.message.contains("continuing without"))
.count()
>= 2,
"expected both provider failures reflected as warnings: {:?}",
plan.warnings
);
}
}
#[test]
fn overflow_beyond_max_plans_returned_is_explained_not_silently_dropped() {
let tight_config = PlanningConfig {
search_budget: SearchBudget {
max_plans_returned: 1,
..generous_config().search_budget
},
..generous_config()
};
let planner = Planner::builder(barium_titanate_catalog(), tight_config).build();
let report = planner
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert_eq!(report.plans.len(), 1);
assert!(report.rejected_candidates.iter().any(|r| {
r.reason_codes
.contains(&RejectionCode::SearchBudgetExhausted)
&& r.explanation.contains("additional valid plan")
}));
}
/// `plan_id` must be derived from a plan's own content, not its
/// position: adding an unrelated candidate to the catalog (which
/// changes generation order and ranked position for everything after
/// it) must not change the id of a plan that doesn't use it.
#[test]
fn plan_id_is_stable_when_an_unrelated_candidate_is_added_to_the_catalog() {
let target = barium_titanate_target();
let baseline = Planner::builder(barium_titanate_catalog(), generous_config())
.build()
.plan(&target, "2026-08-14T00:00:00Z")
.unwrap();
let mut with_extra = vec![
candidate("BaCO3", &[("Ba", 1.0), ("C", 1.0), ("O", 3.0)]),
candidate("BaO", &[("Ba", 1.0), ("O", 1.0)]),
candidate("TiO2", &[("Ti", 1.0), ("O", 2.0)]),
// Shares no element with the target -- irrelevant to every
// accepted plan, but changes catalog size/order.
candidate("NaCl", &[("Na", 1.0), ("Cl", 1.0)]),
];
with_extra.reverse();
let augmented =
Planner::builder(InMemoryPrecursorCatalog::new(with_extra), generous_config())
.build()
.plan(&target, "2026-08-14T00:00:00Z")
.unwrap();
// Since Phase 12, one precursor set can produce a plan under more
// than one route family -- the key must include `route_family` too,
// or two distinct plans (same precursors, different route family)
// collide on this map's key and one is silently dropped, which
// would make this assertion vacuous for whichever one survives.
let plan_key = |plan: &SynthesisPlan| {
let mut ids: Vec<String> = plan
.precursors
.iter()
.map(|s| s.precursor.0.clone())
.collect();
ids.sort();
(ids, plan.route_family)
};
let baseline_by_precursors: std::collections::BTreeMap<(Vec<String>, RouteFamily), &str> =
baseline
.plans
.iter()
.map(|p| (plan_key(p), p.plan_id.0.as_str()))
.collect();
assert_eq!(
baseline_by_precursors.len(),
baseline.plans.len(),
"baseline plans must not collide on (precursor set, route family)"
);
for plan in &augmented.plans {
if let Some(&expected_id) = baseline_by_precursors.get(&plan_key(plan)) {
assert_eq!(
plan.plan_id.0.as_str(),
expected_id,
"plan_id for precursor set {:?} changed after an unrelated catalog addition",
plan_key(plan)
);
}
}
}
#[test]
fn missing_availability_metadata_still_flows_through_planning() {
let with_metadata = InMemoryPrecursorCatalog::new(vec![PrecursorCandidate {
id: PrecursorId("BaO".to_string()),
composition: composition(&[("Ba", 1.0), ("O", 1.0)]),
availability: Some(AvailabilityMetadata {
source: "curated_fixture".to_string(),
}),
}]);
let target = TargetSpecification {
composition: composition(&[("Ba", 1.0), ("O", 1.0)]),
structure: None,
desired_phase: None,
constraints: PlanningConstraints::default(),
};
let report = Planner::builder(with_metadata, generous_config())
.build()
.plan(&target, "2026-08-14T00:00:00Z")
.unwrap();
assert!(!report.plans.is_empty());
}
// v0.4.0 Integration: LiteratureEvidenceProvider wiring. Ungated (the
// trait and its types are always compiled), so these run in the
// default test suite regardless of the `literature_corpus` feature --
// the score/ranking/steps non-interference guarantee is core enough
// that it should not depend on that feature being enabled.
fn conflicted_literature_evidence() -> LiteratureRouteEvidence {
let assessment = RouteObservationAssessment {
target: composition(&[("Ba", 1.0), ("Ti", 1.0), ("O", 3.0)]),
precursors: [
composition(&[("Ba", 1.0), ("C", 1.0), ("O", 3.0)]),
composition(&[("Ti", 1.0), ("O", 2.0)]),
]
.into_iter()
.collect(),
route_family: RouteFamily::ConventionalSolidState,
has_multiple_operation_shapes: true,
observed_operation_counts: vec![1, 2],
step_groups: vec![StepGroupAssessment {
key: StepGroupKey {
heating_operation_count: 1,
operation_index: 0,
},
source_dois: vec!["10.1/a".to_string(), "10.1/b".to_string()],
temperature: CrossDoiFieldStatus::Conflict {
values: vec![
SourcedValue {
value: crate::process::TemperatureRange::new(900.0, 900.0).unwrap(),
doi: "10.1/a".to_string(),
},
SourcedValue {
value: crate::process::TemperatureRange::new(950.0, 950.0).unwrap(),
doi: "10.1/b".to_string(),
},
],
},
duration: CrossDoiFieldStatus::Unresolved,
atmosphere: CrossDoiFieldStatus::InsufficientIndependentSources,
}],
};
LiteratureRouteEvidence {
limitations: crate::literature_evidence::literature_evidence_limitations(&assessment),
assessment,
}
}
/// Always returns the same conflict-laden evidence, regardless of
/// query -- deliberately "bad news" (a real Conflict, real shape
/// diversity), used to prove that even disagreement-carrying evidence
/// never moves score/confidence/steps.
struct StubLiteratureEvidenceProvider;
impl LiteratureEvidenceProvider for StubLiteratureEvidenceProvider {
fn route_evidence(
&self,
_target: &Composition,
_route_family: RouteFamily,
_precursors: &[Composition],
) -> std::result::Result<Option<LiteratureRouteEvidence>, ProviderError> {
Ok(Some(conflicted_literature_evidence()))
}
}
/// The opposite case from `conflicted_literature_evidence`: every
/// field is a clean, unanimous `Agreement`, no shape diversity. This
/// is the case most likely to be misread as "the corpus endorses this
/// temperature" if it were the one left with no disclosure warning at
/// all (pre-commit advisor review finding) -- so the warning must
/// still fire here too.
fn agreeing_literature_evidence() -> LiteratureRouteEvidence {
let assessment = RouteObservationAssessment {
target: composition(&[("Ba", 1.0), ("Ti", 1.0), ("O", 3.0)]),
precursors: [
composition(&[("Ba", 1.0), ("C", 1.0), ("O", 3.0)]),
composition(&[("Ti", 1.0), ("O", 2.0)]),
]
.into_iter()
.collect(),
route_family: RouteFamily::ConventionalSolidState,
has_multiple_operation_shapes: false,
observed_operation_counts: vec![1],
step_groups: vec![StepGroupAssessment {
key: StepGroupKey {
heating_operation_count: 1,
operation_index: 0,
},
source_dois: vec!["10.1/a".to_string(), "10.1/b".to_string()],
temperature: CrossDoiFieldStatus::Agreement {
value: crate::process::TemperatureRange::new(900.0, 900.0).unwrap(),
source_dois: vec!["10.1/a".to_string(), "10.1/b".to_string()],
},
duration: CrossDoiFieldStatus::Unresolved,
atmosphere: CrossDoiFieldStatus::InsufficientIndependentSources,
}],
};
LiteratureRouteEvidence {
limitations: crate::literature_evidence::literature_evidence_limitations(&assessment),
assessment,
}
}
struct AgreeingLiteratureEvidenceProvider;
impl LiteratureEvidenceProvider for AgreeingLiteratureEvidenceProvider {
fn route_evidence(
&self,
_target: &Composition,
_route_family: RouteFamily,
_precursors: &[Composition],
) -> std::result::Result<Option<LiteratureRouteEvidence>, ProviderError> {
Ok(Some(agreeing_literature_evidence()))
}
}
struct FailingLiteratureEvidenceProvider;
impl LiteratureEvidenceProvider for FailingLiteratureEvidenceProvider {
fn route_evidence(
&self,
_target: &Composition,
_route_family: RouteFamily,
_precursors: &[Composition],
) -> std::result::Result<Option<LiteratureRouteEvidence>, ProviderError> {
Err(ProviderError::Unavailable("simulated outage".to_string()))
}
}
/// Records every `(route_family)` it was ever asked about -- a test
/// that only checks `literature_evidence.is_none()` for a
/// Mechanochemical plan would pass even if the call-site guard were
/// deleted, since a real corpus-backed provider also returns nothing
/// for that route family; this makes the guard itself the thing under
/// test, not just its typical outcome. `Rc<RefCell<_>>`, not a bare
/// `RefCell`, so the test can keep its own handle to read the log
/// after the provider itself has been moved into the `Planner`.
struct RecordingLiteratureEvidenceProvider {
queried_route_families: std::rc::Rc<std::cell::RefCell<Vec<RouteFamily>>>,
}
impl LiteratureEvidenceProvider for RecordingLiteratureEvidenceProvider {
fn route_evidence(
&self,
_target: &Composition,
route_family: RouteFamily,
_precursors: &[Composition],
) -> std::result::Result<Option<LiteratureRouteEvidence>, ProviderError> {
self.queried_route_families.borrow_mut().push(route_family);
Ok(None)
}
}
#[test]
fn no_provider_leaves_literature_evidence_none_on_every_plan() {
let report = Planner::builder(barium_titanate_catalog(), generous_config())
.build()
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(!report.plans.is_empty());
assert!(report.plans.iter().all(|p| p.literature_evidence.is_none()));
}
#[test]
fn literature_evidence_provider_attaches_evidence_without_changing_score_or_steps() {
let target = barium_titanate_target();
let baseline = Planner::builder(barium_titanate_catalog(), generous_config())
.build()
.plan(&target, "2026-08-14T00:00:00Z")
.unwrap();
let with_evidence = Planner::builder(barium_titanate_catalog(), generous_config())
.literature_evidence_provider(StubLiteratureEvidenceProvider)
.build()
.plan(&target, "2026-08-14T00:00:00Z")
.unwrap();
assert_eq!(baseline.plans.len(), with_evidence.plans.len());
let mut any_conventional_solid_state = false;
for (before, after) in baseline.plans.iter().zip(with_evidence.plans.iter()) {
assert_eq!(before.plan_id, after.plan_id);
assert_eq!(
before.score, after.score,
"a configured LiteratureEvidenceProvider must never change score"
);
assert_eq!(
before.confidence, after.confidence,
"a configured LiteratureEvidenceProvider must never change confidence"
);
assert_eq!(
before.steps, after.steps,
"a configured LiteratureEvidenceProvider must never auto-fill ProcessStep fields"
);
assert!(before.literature_evidence.is_none());
if after.route_family == RouteFamily::ConventionalSolidState {
any_conventional_solid_state = true;
assert!(
after.literature_evidence.is_some(),
"the stub provider always returns evidence for ConventionalSolidState"
);
assert!(
after
.warnings
.iter()
.any(|w| w.message.contains("literature evidence")
&& w.message.contains("independent DOI")),
"a Conflict-carrying evidence must surface a disclosure warning: {:?}",
after.warnings
);
} else {
assert!(
after.literature_evidence.is_none(),
"literature evidence must never be attached to a non-ConventionalSolidState plan"
);
}
}
assert!(
any_conventional_solid_state,
"test setup must actually exercise the ConventionalSolidState path"
);
// Ranking order itself (not just per-plan score) must also be
// identical -- score equality alone wouldn't catch a change to
// the *order* plans are placed in.
let baseline_order: Vec<&str> = baseline
.plans
.iter()
.map(|p| p.plan_id.0.as_str())
.collect();
let with_evidence_order: Vec<&str> = with_evidence
.plans
.iter()
.map(|p| p.plan_id.0.as_str())
.collect();
assert_eq!(baseline_order, with_evidence_order);
}
#[test]
fn clean_agreement_still_surfaces_a_disclosure_warning() {
let report = Planner::builder(barium_titanate_catalog(), generous_config())
.literature_evidence_provider(AgreeingLiteratureEvidenceProvider)
.build()
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
let mut any_conventional_solid_state = false;
for plan in &report.plans {
if plan.route_family != RouteFamily::ConventionalSolidState {
continue;
}
any_conventional_solid_state = true;
assert!(plan.literature_evidence.is_some());
assert!(
plan.warnings
.iter()
.any(|w| w.message.contains("literature evidence")
&& w.message.contains("independent DOI")),
"a clean, unanimous Agreement must still surface a disclosure warning -- \
otherwise it's the one case that silently reads as endorsement: {:?}",
plan.warnings
);
}
assert!(
any_conventional_solid_state,
"test setup must actually exercise the ConventionalSolidState path"
);
}
#[test]
fn literature_evidence_provider_failure_degrades_to_a_warning() {
let report = Planner::builder(barium_titanate_catalog(), generous_config())
.literature_evidence_provider(FailingLiteratureEvidenceProvider)
.build()
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(!report.plans.is_empty());
let mut any_conventional_solid_state = false;
for plan in &report.plans {
assert!(plan.literature_evidence.is_none());
// Only ConventionalSolidState plans ever call the provider at
// all (the Mechanochemical call-site guard) -- a Mechanochemical
// plan correctly has no such warning, since it was never asked.
if plan.route_family == RouteFamily::ConventionalSolidState {
any_conventional_solid_state = true;
assert!(
plan.warnings
.iter()
.any(|w| w.message.contains("literature evidence provider failed")),
"expected the provider failure reflected as a warning: {:?}",
plan.warnings
);
}
}
assert!(
any_conventional_solid_state,
"test setup must actually exercise the ConventionalSolidState path"
);
}
#[test]
fn literature_evidence_provider_is_never_asked_about_mechanochemical() {
let log = std::rc::Rc::new(std::cell::RefCell::new(Vec::new()));
let recorder = RecordingLiteratureEvidenceProvider {
queried_route_families: log.clone(),
};
let report = Planner::builder(barium_titanate_catalog(), generous_config())
.literature_evidence_provider(recorder)
.build()
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
// Sanity: this target really does produce Mechanochemical plans
// too (Phase 12's unconditional route-family applicability), so
// the absence of a Mechanochemical query below is a real
// guard-is-working signal, not a vacuous "nothing to ask about."
assert!(
report
.plans
.iter()
.any(|p| p.route_family == RouteFamily::Mechanochemical)
);
let queried = log.borrow();
assert!(
!queried.is_empty(),
"the recorder must have been called at least once (for ConventionalSolidState)"
);
assert!(
queried
.iter()
.all(|&rf| rf == RouteFamily::ConventionalSolidState),
"the literature evidence provider must never be asked about a route family other \
than ConventionalSolidState: {queried:?}"
);
}
// Phase 26: PriorExperimentEvidenceProvider wiring. Ungated (the
// trait and its types are always compiled), mirroring the
// literature-evidence tests above -- but unlike that provider, this
// one is deliberately *not* restricted to ConventionalSolidState
// (route_family is already part of the match key, so cross-family
// leakage can't happen regardless of which route families it's
// asked about).
fn sample_execution_record(
route_family: RouteFamily,
outcome: crate::execution_record::SynthesisOutcome,
) -> crate::execution_record::SynthesisExecutionRecord {
use crate::execution_record::{
EXECUTION_RECORD_SCHEMA_VERSION, ExecutionCharacterization, ExecutionProvenance,
PlanIdentity,
};
crate::execution_record::SynthesisExecutionRecord {
schema_version: EXECUTION_RECORD_SCHEMA_VERSION.to_string(),
plan_identity: PlanIdentity {
plan_id: PlanId("plan-test".to_string()),
route_family,
target_composition: composition(&[("Ba", 1.0), ("Ti", 1.0), ("O", 3.0)]),
precursor_compositions: [
composition(&[("Ba", 1.0), ("C", 1.0), ("O", 3.0)]),
composition(&[("Ti", 1.0), ("O", 2.0)]),
]
.into_iter()
.collect(),
},
commercial_catalog_source: None,
selected_commercial_offers: Vec::new(),
actual_precursor_amounts: Vec::new(),
actual_process_conditions: Vec::new(),
deviations_from_plan: Vec::new(),
outcome,
characterization: ExecutionCharacterization {
phase_purity_fraction: None,
yield_fraction: None,
xrd_reference: None,
measurement_method: None,
},
operator_notes: None,
experiment_date: None,
batch_id: None,
provenance: ExecutionProvenance {
gugen_version: "0.0.0-test".to_string(),
recorded_by: None,
recorded_at: "2026-08-14T00:00:00Z".to_string(),
},
}
}
fn sample_prior_experiment_evidence(route_family: RouteFamily) -> PriorExperimentEvidence {
use crate::execution_record::SynthesisOutcome;
PriorExperimentEvidence {
records: vec![
sample_execution_record(route_family, SynthesisOutcome::TargetPhaseObtained),
sample_execution_record(route_family, SynthesisOutcome::TargetPhaseObtained),
sample_execution_record(route_family, SynthesisOutcome::CompetingPhaseObserved),
],
}
}
/// Always returns 3 matching records (2 `TargetPhaseObtained`, 1
/// `CompetingPhaseObserved`), regardless of query -- used to prove
/// the disclosure warning fires and never changes score/steps.
struct StubPriorExperimentEvidenceProvider;
impl PriorExperimentEvidenceProvider for StubPriorExperimentEvidenceProvider {
fn prior_experiments(
&self,
_target: &Composition,
route_family: RouteFamily,
_precursors: &[Composition],
) -> std::result::Result<Option<PriorExperimentEvidence>, ProviderError> {
Ok(Some(sample_prior_experiment_evidence(route_family)))
}
}
struct FailingPriorExperimentEvidenceProvider;
impl PriorExperimentEvidenceProvider for FailingPriorExperimentEvidenceProvider {
fn prior_experiments(
&self,
_target: &Composition,
_route_family: RouteFamily,
_precursors: &[Composition],
) -> std::result::Result<Option<PriorExperimentEvidence>, ProviderError> {
Err(ProviderError::Unavailable("simulated outage".to_string()))
}
}
#[test]
fn no_prior_experiment_evidence_without_a_provider() {
let report = Planner::builder(barium_titanate_catalog(), generous_config())
.build()
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(!report.plans.is_empty());
assert!(
report
.plans
.iter()
.all(|p| p.prior_experiment_evidence.is_none())
);
}
#[test]
fn prior_experiment_evidence_provider_attaches_evidence_without_changing_score_or_steps() {
let target = barium_titanate_target();
let baseline = Planner::builder(barium_titanate_catalog(), generous_config())
.build()
.plan(&target, "2026-08-14T00:00:00Z")
.unwrap();
let with_evidence = Planner::builder(barium_titanate_catalog(), generous_config())
.prior_experiment_evidence_provider(StubPriorExperimentEvidenceProvider)
.build()
.plan(&target, "2026-08-14T00:00:00Z")
.unwrap();
assert_eq!(baseline.plans.len(), with_evidence.plans.len());
for (before, after) in baseline.plans.iter().zip(with_evidence.plans.iter()) {
assert_eq!(before.plan_id, after.plan_id);
assert_eq!(
before.score, after.score,
"a configured PriorExperimentEvidenceProvider must never change score"
);
assert_eq!(
before.confidence, after.confidence,
"a configured PriorExperimentEvidenceProvider must never change confidence"
);
assert_eq!(
before.steps, after.steps,
"a configured PriorExperimentEvidenceProvider must never auto-fill ProcessStep \
fields"
);
assert!(before.prior_experiment_evidence.is_none());
assert!(
after.prior_experiment_evidence.is_some(),
"the stub provider always returns evidence, for every route family"
);
assert!(
after
.warnings
.iter()
.any(|w| w.message.contains("prior experiment")
&& w.message.contains("not a success rate")),
"a match must surface a disclosure warning: {:?}",
after.warnings
);
}
let baseline_order: Vec<&str> = baseline
.plans
.iter()
.map(|p| p.plan_id.0.as_str())
.collect();
let with_evidence_order: Vec<&str> = with_evidence
.plans
.iter()
.map(|p| p.plan_id.0.as_str())
.collect();
assert_eq!(baseline_order, with_evidence_order);
}
#[test]
fn prior_experiment_evidence_surfaced_for_mechanochemical_plans() {
let report = Planner::builder(barium_titanate_catalog(), generous_config())
.prior_experiment_evidence_provider(StubPriorExperimentEvidenceProvider)
.build()
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(
report
.plans
.iter()
.any(|p| p.route_family == RouteFamily::Mechanochemical),
"test setup must actually exercise the Mechanochemical path"
);
assert!(
report
.plans
.iter()
.all(|p| p.prior_experiment_evidence.is_some()),
"unlike literature evidence, prior-experiment evidence is not restricted to \
ConventionalSolidState -- every plan must have it here"
);
}
#[test]
fn prior_experiment_evidence_provider_failure_degrades_to_a_warning() {
let report = Planner::builder(barium_titanate_catalog(), generous_config())
.prior_experiment_evidence_provider(FailingPriorExperimentEvidenceProvider)
.build()
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
assert!(!report.plans.is_empty());
for plan in &report.plans {
assert!(plan.prior_experiment_evidence.is_none());
assert!(
plan.warnings.iter().any(|w| w
.message
.contains("prior experiment evidence provider failed")),
"expected the provider failure reflected as a warning: {:?}",
plan.warnings
);
}
}
#[test]
fn prior_experiment_warning_never_claims_a_success_rate() {
let report = Planner::builder(barium_titanate_catalog(), generous_config())
.prior_experiment_evidence_provider(StubPriorExperimentEvidenceProvider)
.build()
.plan(&barium_titanate_target(), "2026-08-14T00:00:00Z")
.unwrap();
let mut checked_any = false;
for plan in &report.plans {
for warning in plan
.warnings
.iter()
.filter(|w| w.message.contains("prior experiment"))
{
checked_any = true;
assert!(warning.message.contains("not a success rate"));
assert!(
!warning.message.contains('%'),
"must never render as a percentage: {}",
warning.message
);
}
}
assert!(checked_any, "test setup must actually surface a warning");
}
}