percolation-inversion-compiler-ts 0.4.5 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +77 -22
- package/agent-manifest.json +50 -0
- package/dist/alt_lift/index.d.ts +7 -0
- package/dist/alt_lift/index.js +101 -0
- package/dist/bit_engine/index.d.ts +8 -0
- package/dist/bit_engine/index.js +213 -0
- package/dist/cli/main.js +2106 -162
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1611 -16
- package/dist/phase_lab/index.d.ts +26 -0
- package/dist/phase_lab/index.js +1124 -0
- package/dist/sqot_controller/index.d.ts +8 -0
- package/dist/sqot_controller/index.js +141 -0
- package/dist/trc_adapter/index.d.ts +6 -0
- package/dist/trc_adapter/index.js +86 -0
- package/docs/alt-ecpt-lift.md +32 -0
- package/docs/bit-inversion-engine.md +32 -0
- package/docs/cli-reference.md +68 -0
- package/docs/effective-packet-graph.md +35 -0
- package/docs/for-agents.md +44 -0
- package/docs/phase-ecology-lab.md +46 -0
- package/docs/sqot-queue-sovereignty.md +31 -0
- package/docs/threshold-certificates.md +30 -0
- package/docs/trc-trace-adapter.md +30 -0
- package/docs/v050-audit.md +126 -0
- package/examples/alt_lift/alt_ecpt_lift.example.json +27 -0
- package/examples/bit_engine/bottlenecks.example.json +38 -0
- package/examples/bit_engine/inversion_candidates.example.json +55 -0
- package/examples/packet_exchange/packet_envelope.example.json +51 -0
- package/examples/packet_exchange/packet_merge_report.example.json +60 -0
- package/examples/phase_lab/certificate_abstain.example.json +39 -0
- package/examples/phase_lab/closure_report.example.json +41 -0
- package/examples/phase_lab/effective_graph.example.json +112 -0
- package/examples/phase_lab/executable_paths.example.json +20 -0
- package/examples/phase_lab/phase_window_observation.example.json +61 -0
- package/examples/phase_lab/runtime_report_1.json +19 -0
- package/examples/phase_lab/runtime_report_2.json +16 -0
- package/examples/phase_lab/threshold_status.example.json +31 -0
- package/examples/sqot_controller/queue_report.example.json +30 -0
- package/examples/sqot_controller/rebalance_plan.example.json +14 -0
- package/examples/thresholds/asi_proxy_development.json +15 -0
- package/examples/trc_adapter/tool_trace_input.example.json +17 -0
- package/examples/trc_adapter/typed_trace.example.json +64 -0
- package/fixtures/portability_conformance_v050/certificate_abstain.example.json +39 -0
- package/fixtures/portability_conformance_v050/closure_report.example.json +39 -0
- package/fixtures/portability_conformance_v050/effective_graph.example.json +112 -0
- package/fixtures/portability_conformance_v050/executable_paths.example.json +20 -0
- package/fixtures/portability_conformance_v050/manifest.json +55 -0
- package/fixtures/portability_conformance_v050/phase_lab_event_1.json +51 -0
- package/fixtures/portability_conformance_v050/phase_lab_event_2.json +55 -0
- package/fixtures/portability_conformance_v050/phase_window_observation.example.json +61 -0
- package/fixtures/portability_conformance_v050/runtime_report_1.json +19 -0
- package/fixtures/portability_conformance_v050/runtime_report_2.json +14 -0
- package/fixtures/portability_conformance_v050/threshold_status.example.json +29 -0
- package/fixtures/python_v044_cli/agent_autonomy_audit.json +4 -3
- package/fixtures/python_v044_cli/agent_manifest.json +2 -1
- package/fixtures/python_v044_cli/agent_runbook.json +2 -1
- package/fixtures/python_v044_cli/demo_installed_smoke.json +86 -86
- package/fixtures/python_v044_demo/manifest.json +2 -1
- package/fixtures/python_v050_cli/alt_capital_impact.json +30 -0
- package/fixtures/python_v050_cli/alt_ecpt_lift.json +85 -0
- package/fixtures/python_v050_cli/alt_liquidity_to_paths.json +85 -0
- package/fixtures/python_v050_cli/alt_receiver_lift.json +15 -0
- package/fixtures/python_v050_cli/bit_certificate.json +15 -0
- package/fixtures/python_v050_cli/bit_compare_baseline.json +24 -0
- package/fixtures/python_v050_cli/bit_diagnose.json +95 -0
- package/fixtures/python_v050_cli/bit_invert.json +235 -0
- package/fixtures/python_v050_cli/bit_mec.json +18 -0
- package/fixtures/python_v050_cli/ecology_effective_graph.json +178 -0
- package/fixtures/python_v050_cli/ecology_execution_available_paths.json +88 -0
- package/fixtures/python_v050_cli/manifest.json +48 -0
- package/fixtures/python_v050_cli/phase_lab_certify.json +443 -0
- package/fixtures/python_v050_cli/phase_lab_closure.json +85 -0
- package/fixtures/python_v050_cli/phase_lab_compare_window.json +24 -0
- package/fixtures/python_v050_cli/phase_lab_executable_paths.json +88 -0
- package/fixtures/python_v050_cli/phase_lab_graph.json +178 -0
- package/fixtures/python_v050_cli/phase_lab_ingest_1.json +105 -0
- package/fixtures/python_v050_cli/phase_lab_ingest_2.json +109 -0
- package/fixtures/python_v050_cli/phase_lab_init.json +20 -0
- package/fixtures/python_v050_cli/phase_lab_list_windows.json +63 -0
- package/fixtures/python_v050_cli/phase_lab_observe.json +108 -0
- package/fixtures/python_v050_cli/phase_lab_threshold_status.json +164 -0
- package/fixtures/python_v050_cli/sqot_diagnose_queue.json +38 -0
- package/fixtures/python_v050_cli/sqot_quarantine.json +7 -0
- package/fixtures/python_v050_cli/sqot_rebalance.json +19 -0
- package/fixtures/python_v050_cli/sqot_reserve_check.json +20 -0
- package/fixtures/python_v050_cli/sqot_salience_obstruction.json +19 -0
- package/fixtures/python_v050_cli/trc_action_boundary.json +451 -0
- package/fixtures/python_v050_cli/trc_tool_trace.json +221 -0
- package/fixtures/python_v050_cli/trc_trace_adapter.json +221 -0
- package/fixtures/python_v050_demo/asi_proxy_development.json +15 -0
- package/fixtures/python_v050_demo/certificate_abstain.example.json +39 -0
- package/fixtures/python_v050_demo/closure_report.example.json +39 -0
- package/fixtures/python_v050_demo/effective_graph.example.json +112 -0
- package/fixtures/python_v050_demo/executable_paths.example.json +20 -0
- package/fixtures/python_v050_demo/phase_window_observation.example.json +61 -0
- package/fixtures/python_v050_demo/runtime_report_1.json +19 -0
- package/fixtures/python_v050_demo/runtime_report_2.json +14 -0
- package/fixtures/python_v050_demo/threshold_status.example.json +29 -0
- package/fixtures/python_v050_snapshots/manifest.json +39 -0
- package/fixtures/python_v050_snapshots/snapshot_list.json +112 -0
- package/fixtures/python_v050_snapshots/snapshot_routes.json +926 -0
- package/fixtures/python_v050_snapshots/snapshot_show_alt.json +6830 -0
- package/fixtures/python_v050_snapshots/snapshot_show_bit.json +594 -0
- package/fixtures/python_v050_snapshots/snapshot_show_ecpt.json +2894 -0
- package/fixtures/python_v050_snapshots/snapshot_show_sqot.json +2392 -0
- package/fixtures/python_v050_snapshots/snapshot_show_trc.json +3037 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_alt.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_bit.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_ecpt.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_sqot.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_trc.json +10 -0
- package/package.json +45 -3
- package/schemas/ASIProxyThresholdSpec.schema.json +72 -0
- package/schemas/ASIProxyThresholdStatus.schema.json +512 -0
- package/schemas/ActionBoundaryRequirement.schema.json +28 -0
- package/schemas/ActivationGainEstimate.schema.json +41 -0
- package/schemas/AltEcptLiftReport.schema.json +400 -0
- package/schemas/AltLiftBlocker.schema.json +34 -0
- package/schemas/AttentionBudgetLedger.schema.json +41 -0
- package/schemas/AutocatalyticClosureReport.schema.json +408 -0
- package/schemas/AutocatalyticClosureWitness.schema.json +22 -139
- package/schemas/BasinReachabilityProxy.schema.json +21 -0
- package/schemas/BottleneckClassDiagnosis.schema.json +115 -0
- package/schemas/BottleneckInversionCandidate.schema.json +249 -0
- package/schemas/BottleneckInversionReport.schema.json +499 -0
- package/schemas/CapabilityExpressionPath.schema.json +45 -0
- package/schemas/CapitalToPathContribution.schema.json +53 -0
- package/schemas/ClosureAbstentionReason.schema.json +25 -0
- package/schemas/ClosureCertificateCandidate.schema.json +109 -0
- package/schemas/ClosureDefect.schema.json +28 -0
- package/schemas/ClosureSupportHyperpath.schema.json +44 -0
- package/schemas/CollectivePhaseAbstentionReport.schema.json +591 -0
- package/schemas/CollectivePhaseCertificateCandidate.schema.json +688 -0
- package/schemas/CrossContextTransferWitness.schema.json +46 -0
- package/schemas/DiagnosticReserveReport.schema.json +87 -0
- package/schemas/DownstreamSearchCostDelta.schema.json +46 -0
- package/schemas/EcologyAutocatalyticClosureWitness.schema.json +187 -0
- package/schemas/EffectiveGraphResidualSummary.schema.json +38 -0
- package/schemas/EffectivePacketEdge.schema.json +135 -0
- package/schemas/EffectivePacketEligibility.schema.json +84 -0
- package/schemas/EffectivePacketGraph.schema.json +461 -0
- package/schemas/EffectivePacketGraphBuildReport.schema.json +521 -0
- package/schemas/EffectivePacketNode.schema.json +199 -0
- package/schemas/ExecutableClosureWitness.schema.json +47 -0
- package/schemas/ExecutablePathDensityReport.schema.json +314 -0
- package/schemas/ExecutionAuthorityStatus.schema.json +28 -0
- package/schemas/ExecutionAvailableHyperpath.schema.json +201 -0
- package/schemas/ExecutionPathDefect.schema.json +28 -0
- package/schemas/ExecutionPathWitness.schema.json +44 -0
- package/schemas/FalseLiquidityLoad.schema.json +21 -0
- package/schemas/GeneralIntakePolicy.schema.json +1 -1
- package/schemas/InversionCertificate.schema.json +56 -0
- package/schemas/LiquidityToClosureContribution.schema.json +53 -0
- package/schemas/MinimalEnablingCondition.schema.json +48 -0
- package/schemas/PacketContributionStatus.schema.json +32 -0
- package/schemas/PacketQuarantineDecision.schema.json +50 -0
- package/schemas/PhaseCertificateDefect.schema.json +33 -0
- package/schemas/PhaseComponentObservation.schema.json +39 -0
- package/schemas/PhaseLabEvent.schema.json +123 -0
- package/schemas/PhaseLabExportManifest.schema.json +127 -0
- package/schemas/PhaseLabIngestReport.schema.json +344 -0
- package/schemas/PhaseLabStoreManifest.schema.json +73 -0
- package/schemas/PhaseLabWindowIndex.schema.json +78 -0
- package/schemas/PhaseThresholdStatus.schema.json +51 -0
- package/schemas/PhaseWindow.schema.json +31 -0
- package/schemas/PhaseWindowComparison.schema.json +67 -0
- package/schemas/PhaseWindowObservation.schema.json +353 -0
- package/schemas/PostInversionAuditPlan.schema.json +38 -0
- package/schemas/ProductiveClosureWitness.schema.json +49 -0
- package/schemas/ProvenanceManifest.schema.json +1 -1
- package/schemas/QueueOccupationReport.schema.json +156 -0
- package/schemas/QueueRebalancePlan.schema.json +114 -0
- package/schemas/ReceiverContextSupport.schema.json +23 -0
- package/schemas/ReceiverLiquidityLift.schema.json +58 -0
- package/schemas/ReleaseArtifactManifest.schema.json +1 -1
- package/schemas/ReversibleSalienceSovereigntyCertificate.schema.json +53 -0
- package/schemas/RollbackOrDeactivationPlan.schema.json +38 -0
- package/schemas/SBOMManifest.schema.json +1 -1
- package/schemas/SalienceObstructionDiagnosis.schema.json +55 -0
- package/schemas/SalienceObstructionLoad.schema.json +21 -0
- package/schemas/SemanticEdgeEvidence.schema.json +40 -0
- package/schemas/TraceAdapterReport.schema.json +405 -0
- package/schemas/TraceFrontierDebt.schema.json +43 -0
- package/schemas/TraceNormalForm.schema.json +181 -0
- package/schemas/TraceToleranceLedger.schema.json +29 -0
- package/schemas/TypedActionBoundary.schema.json +58 -0
- package/schemas/TypedAgentTrace.schema.json +328 -0
- package/schemas/TypedToolCallTrace.schema.json +76 -0
- package/schemas/VerificationQueuePressure.schema.json +41 -0
- package/schemas/VerificationThroughputWindow.schema.json +21 -0
- package/schemas/WasteLoad.schema.json +21 -0
- package/schemas/WebFetchPolicy.schema.json +1 -1
- package/schemas/bundle.schema.json +11854 -2075
- package/schemas/index.json +445 -0
- package/schemas/schema-digest.json +733 -289
|
@@ -0,0 +1,2894 @@
|
|
|
1
|
+
{
|
|
2
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
3
|
+
"artifact_key": "ecpt",
|
|
4
|
+
"attribution": {
|
|
5
|
+
"author": "K. Takahashi",
|
|
6
|
+
"derived_from": "canonical TeX metadata extraction; TeX/PDF source is not vendored",
|
|
7
|
+
"doi": "10.5281/zenodo.20535654",
|
|
8
|
+
"license_id": "cc-by-4.0",
|
|
9
|
+
"source_tex_md5": "c4614418ce96155c605a5b0337b3e99c",
|
|
10
|
+
"source_tex_sha256": null,
|
|
11
|
+
"title": "Executable Capability Percolation Theory",
|
|
12
|
+
"year": 2026
|
|
13
|
+
},
|
|
14
|
+
"claims": 35,
|
|
15
|
+
"coverage_counts": {
|
|
16
|
+
"external_obligation": 30,
|
|
17
|
+
"implemented_checker": 48,
|
|
18
|
+
"implemented_constructive": 18,
|
|
19
|
+
"implemented_schema": 18,
|
|
20
|
+
"partial": 0,
|
|
21
|
+
"unsupported": 0
|
|
22
|
+
},
|
|
23
|
+
"coverage_delta": {
|
|
24
|
+
"external_obligation_total": 30,
|
|
25
|
+
"implemented_total": 84,
|
|
26
|
+
"unimplemented_total": 30,
|
|
27
|
+
"unsupported_total": 0
|
|
28
|
+
},
|
|
29
|
+
"definitions": 79,
|
|
30
|
+
"external_obligation_catalog": {
|
|
31
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
32
|
+
"category_summary": {
|
|
33
|
+
"ecpt-bridge-reserve": 6,
|
|
34
|
+
"ecpt-ecology-ontology": 3,
|
|
35
|
+
"ecpt-economics-policy": 6,
|
|
36
|
+
"ecpt-generator-limit": 5,
|
|
37
|
+
"ecpt-proxy-target": 3,
|
|
38
|
+
"ecpt-speculative-channel": 4,
|
|
39
|
+
"ecpt-trace-diagnostic": 1,
|
|
40
|
+
"numerical-envelope": 2
|
|
41
|
+
},
|
|
42
|
+
"obligations": [
|
|
43
|
+
{
|
|
44
|
+
"accepted_evidence_kind": [
|
|
45
|
+
"diagnostic-projection-certificate",
|
|
46
|
+
"residual-trace-ledger",
|
|
47
|
+
"trace-complex-audit"
|
|
48
|
+
],
|
|
49
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
50
|
+
"checker_ref": null,
|
|
51
|
+
"checker_refs": [],
|
|
52
|
+
"coverage_status": "external_obligation",
|
|
53
|
+
"external_failure_modes": [
|
|
54
|
+
"diagnostic-projection-unverified",
|
|
55
|
+
"residual-trace-ledger-incomplete",
|
|
56
|
+
"trace-complex-audit-missing",
|
|
57
|
+
"no-implicit-settled-promotion",
|
|
58
|
+
"external-verifier-hook-required"
|
|
59
|
+
],
|
|
60
|
+
"failure_modes": [
|
|
61
|
+
"diagnostic-projection-unverified",
|
|
62
|
+
"residual-trace-ledger-incomplete",
|
|
63
|
+
"trace-complex-audit-missing"
|
|
64
|
+
],
|
|
65
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
66
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
67
|
+
"implementation_refs": [
|
|
68
|
+
"core.ExternalProofObligation"
|
|
69
|
+
],
|
|
70
|
+
"item_id": "definition:15",
|
|
71
|
+
"label": "Auxiliary trace-complex diagnostic",
|
|
72
|
+
"obligation_category": "ecpt-trace-diagnostic",
|
|
73
|
+
"proof_obligation_ids": [
|
|
74
|
+
"obligation:definition:15"
|
|
75
|
+
],
|
|
76
|
+
"residual_coordinates": [
|
|
77
|
+
"residual:definition:15"
|
|
78
|
+
],
|
|
79
|
+
"residual_policy": "charge-trace-diagnostic-residual-until-projection-certified",
|
|
80
|
+
"safe_default": "diagnostic-with-trace-complex-obligation",
|
|
81
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
82
|
+
"schema_refs": [
|
|
83
|
+
"core.ExternalProofObligation"
|
|
84
|
+
],
|
|
85
|
+
"verifier_contract": {
|
|
86
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
87
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
88
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
89
|
+
},
|
|
90
|
+
"verifier_route": "ecpt.adapters.trace_complex.verify_diagnostic_projection"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"accepted_evidence_kind": [
|
|
94
|
+
"execution-availability-audit",
|
|
95
|
+
"policy-counterfactual-report",
|
|
96
|
+
"value-bound"
|
|
97
|
+
],
|
|
98
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
99
|
+
"checker_ref": null,
|
|
100
|
+
"checker_refs": [],
|
|
101
|
+
"coverage_status": "external_obligation",
|
|
102
|
+
"external_failure_modes": [
|
|
103
|
+
"execution-availability-unverified",
|
|
104
|
+
"policy-counterfactual-missing",
|
|
105
|
+
"value-bound-not-certified",
|
|
106
|
+
"no-implicit-settled-promotion",
|
|
107
|
+
"external-verifier-hook-required"
|
|
108
|
+
],
|
|
109
|
+
"failure_modes": [
|
|
110
|
+
"execution-availability-unverified",
|
|
111
|
+
"policy-counterfactual-missing",
|
|
112
|
+
"value-bound-not-certified"
|
|
113
|
+
],
|
|
114
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
115
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
116
|
+
"implementation_refs": [
|
|
117
|
+
"core.ExternalProofObligation"
|
|
118
|
+
],
|
|
119
|
+
"item_id": "definition:18",
|
|
120
|
+
"label": "Accumulation, availability, liquidity, and execution availability",
|
|
121
|
+
"obligation_category": "ecpt-economics-policy",
|
|
122
|
+
"proof_obligation_ids": [
|
|
123
|
+
"obligation:definition:18"
|
|
124
|
+
],
|
|
125
|
+
"residual_coordinates": [
|
|
126
|
+
"residual:definition:18"
|
|
127
|
+
],
|
|
128
|
+
"residual_policy": "charge-policy-residual-until-counterfactual-accepted",
|
|
129
|
+
"safe_default": "diagnostic-with-policy-obligation",
|
|
130
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
131
|
+
"schema_refs": [
|
|
132
|
+
"core.ExternalProofObligation"
|
|
133
|
+
],
|
|
134
|
+
"verifier_contract": {
|
|
135
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
136
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
137
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
138
|
+
},
|
|
139
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"accepted_evidence_kind": [
|
|
143
|
+
"repair-route-certificate",
|
|
144
|
+
"speculative-channel-audit",
|
|
145
|
+
"synergy-lower-bound"
|
|
146
|
+
],
|
|
147
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
148
|
+
"checker_ref": null,
|
|
149
|
+
"checker_refs": [],
|
|
150
|
+
"coverage_status": "external_obligation",
|
|
151
|
+
"external_failure_modes": [
|
|
152
|
+
"repair-route-missing",
|
|
153
|
+
"speculative-channel-unverified",
|
|
154
|
+
"synergy-bound-not-certified",
|
|
155
|
+
"no-implicit-settled-promotion",
|
|
156
|
+
"external-verifier-hook-required"
|
|
157
|
+
],
|
|
158
|
+
"failure_modes": [
|
|
159
|
+
"repair-route-missing",
|
|
160
|
+
"speculative-channel-unverified",
|
|
161
|
+
"synergy-bound-not-certified"
|
|
162
|
+
],
|
|
163
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
164
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
165
|
+
"implementation_refs": [
|
|
166
|
+
"core.ExternalProofObligation"
|
|
167
|
+
],
|
|
168
|
+
"item_id": "definition:31",
|
|
169
|
+
"label": "Speculative execution channel",
|
|
170
|
+
"obligation_category": "ecpt-speculative-channel",
|
|
171
|
+
"proof_obligation_ids": [
|
|
172
|
+
"obligation:definition:31"
|
|
173
|
+
],
|
|
174
|
+
"residual_coordinates": [
|
|
175
|
+
"residual:definition:31"
|
|
176
|
+
],
|
|
177
|
+
"residual_policy": "charge-speculative-residual-until-channel-certified",
|
|
178
|
+
"safe_default": "diagnostic-with-speculative-obligation",
|
|
179
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
180
|
+
"schema_refs": [
|
|
181
|
+
"core.ExternalProofObligation"
|
|
182
|
+
],
|
|
183
|
+
"verifier_contract": {
|
|
184
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
185
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
186
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
187
|
+
},
|
|
188
|
+
"verifier_route": "ecpt.adapters.speculative.verify_channel_and_repair"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"accepted_evidence_kind": [
|
|
192
|
+
"abstraction-map",
|
|
193
|
+
"domain-semantics-report",
|
|
194
|
+
"simulation-refinement-witness"
|
|
195
|
+
],
|
|
196
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
197
|
+
"checker_ref": null,
|
|
198
|
+
"checker_refs": [],
|
|
199
|
+
"coverage_status": "external_obligation",
|
|
200
|
+
"external_failure_modes": [
|
|
201
|
+
"abstraction-refinement-unverified",
|
|
202
|
+
"domain-semantics-missing",
|
|
203
|
+
"ontology-extension-not-certified",
|
|
204
|
+
"no-implicit-settled-promotion",
|
|
205
|
+
"external-verifier-hook-required"
|
|
206
|
+
],
|
|
207
|
+
"failure_modes": [
|
|
208
|
+
"abstraction-refinement-unverified",
|
|
209
|
+
"domain-semantics-missing",
|
|
210
|
+
"ontology-extension-not-certified"
|
|
211
|
+
],
|
|
212
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
213
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
214
|
+
"implementation_refs": [
|
|
215
|
+
"core.ExternalProofObligation"
|
|
216
|
+
],
|
|
217
|
+
"item_id": "definition:37",
|
|
218
|
+
"label": "Concrete ecology semantics",
|
|
219
|
+
"obligation_category": "ecpt-ecology-ontology",
|
|
220
|
+
"proof_obligation_ids": [
|
|
221
|
+
"obligation:definition:37"
|
|
222
|
+
],
|
|
223
|
+
"residual_coordinates": [
|
|
224
|
+
"residual:definition:37"
|
|
225
|
+
],
|
|
226
|
+
"residual_policy": "charge-abstraction-residual-until-domain-witness-accepted",
|
|
227
|
+
"safe_default": "diagnostic-with-abstraction-obligation",
|
|
228
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
229
|
+
"schema_refs": [
|
|
230
|
+
"core.ExternalProofObligation"
|
|
231
|
+
],
|
|
232
|
+
"verifier_contract": {
|
|
233
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
234
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
235
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
236
|
+
},
|
|
237
|
+
"verifier_route": "ecpt.adapters.ecology.verify_domain_abstraction"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"accepted_evidence_kind": [
|
|
241
|
+
"abstraction-map",
|
|
242
|
+
"domain-semantics-report",
|
|
243
|
+
"simulation-refinement-witness"
|
|
244
|
+
],
|
|
245
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
246
|
+
"checker_ref": null,
|
|
247
|
+
"checker_refs": [],
|
|
248
|
+
"coverage_status": "external_obligation",
|
|
249
|
+
"external_failure_modes": [
|
|
250
|
+
"abstraction-refinement-unverified",
|
|
251
|
+
"domain-semantics-missing",
|
|
252
|
+
"ontology-extension-not-certified",
|
|
253
|
+
"no-implicit-settled-promotion",
|
|
254
|
+
"external-verifier-hook-required"
|
|
255
|
+
],
|
|
256
|
+
"failure_modes": [
|
|
257
|
+
"abstraction-refinement-unverified",
|
|
258
|
+
"domain-semantics-missing",
|
|
259
|
+
"ontology-extension-not-certified"
|
|
260
|
+
],
|
|
261
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
262
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
263
|
+
"implementation_refs": [
|
|
264
|
+
"core.ExternalProofObligation"
|
|
265
|
+
],
|
|
266
|
+
"item_id": "definition:38",
|
|
267
|
+
"label": "Sound finite abstraction",
|
|
268
|
+
"obligation_category": "ecpt-ecology-ontology",
|
|
269
|
+
"proof_obligation_ids": [
|
|
270
|
+
"obligation:definition:38"
|
|
271
|
+
],
|
|
272
|
+
"residual_coordinates": [
|
|
273
|
+
"residual:definition:38"
|
|
274
|
+
],
|
|
275
|
+
"residual_policy": "charge-abstraction-residual-until-domain-witness-accepted",
|
|
276
|
+
"safe_default": "diagnostic-with-abstraction-obligation",
|
|
277
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
278
|
+
"schema_refs": [
|
|
279
|
+
"core.ExternalProofObligation"
|
|
280
|
+
],
|
|
281
|
+
"verifier_contract": {
|
|
282
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
283
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
284
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
285
|
+
},
|
|
286
|
+
"verifier_route": "ecpt.adapters.ecology.verify_domain_abstraction"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"accepted_evidence_kind": [
|
|
290
|
+
"abstraction-map",
|
|
291
|
+
"domain-semantics-report",
|
|
292
|
+
"simulation-refinement-witness"
|
|
293
|
+
],
|
|
294
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
295
|
+
"checker_ref": null,
|
|
296
|
+
"checker_refs": [],
|
|
297
|
+
"coverage_status": "external_obligation",
|
|
298
|
+
"external_failure_modes": [
|
|
299
|
+
"abstraction-refinement-unverified",
|
|
300
|
+
"domain-semantics-missing",
|
|
301
|
+
"ontology-extension-not-certified",
|
|
302
|
+
"no-implicit-settled-promotion",
|
|
303
|
+
"external-verifier-hook-required"
|
|
304
|
+
],
|
|
305
|
+
"failure_modes": [
|
|
306
|
+
"abstraction-refinement-unverified",
|
|
307
|
+
"domain-semantics-missing",
|
|
308
|
+
"ontology-extension-not-certified"
|
|
309
|
+
],
|
|
310
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
311
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
312
|
+
"implementation_refs": [
|
|
313
|
+
"core.ExternalProofObligation"
|
|
314
|
+
],
|
|
315
|
+
"item_id": "prop:abstraction-soundness",
|
|
316
|
+
"label": "Abstraction soundness",
|
|
317
|
+
"obligation_category": "ecpt-ecology-ontology",
|
|
318
|
+
"proof_obligation_ids": [
|
|
319
|
+
"obligation:prop:abstraction-soundness"
|
|
320
|
+
],
|
|
321
|
+
"residual_coordinates": [
|
|
322
|
+
"residual:prop:abstraction-soundness"
|
|
323
|
+
],
|
|
324
|
+
"residual_policy": "charge-abstraction-residual-until-domain-witness-accepted",
|
|
325
|
+
"safe_default": "diagnostic-with-abstraction-obligation",
|
|
326
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
327
|
+
"schema_refs": [
|
|
328
|
+
"core.ExternalProofObligation"
|
|
329
|
+
],
|
|
330
|
+
"verifier_contract": {
|
|
331
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
332
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
333
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
334
|
+
},
|
|
335
|
+
"verifier_route": "ecpt.adapters.ecology.verify_domain_abstraction"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"accepted_evidence_kind": [
|
|
339
|
+
"finite-bound-table",
|
|
340
|
+
"residual-envelope-proof",
|
|
341
|
+
"tail-bound-certificate"
|
|
342
|
+
],
|
|
343
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
344
|
+
"checker_ref": null,
|
|
345
|
+
"checker_refs": [],
|
|
346
|
+
"coverage_status": "external_obligation",
|
|
347
|
+
"external_failure_modes": [
|
|
348
|
+
"finite-envelope-proof-missing",
|
|
349
|
+
"residual-bound-not-certified",
|
|
350
|
+
"tail-bound-unverified",
|
|
351
|
+
"no-implicit-settled-promotion",
|
|
352
|
+
"external-verifier-hook-required"
|
|
353
|
+
],
|
|
354
|
+
"failure_modes": [
|
|
355
|
+
"finite-envelope-proof-missing",
|
|
356
|
+
"residual-bound-not-certified",
|
|
357
|
+
"tail-bound-unverified"
|
|
358
|
+
],
|
|
359
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
360
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
361
|
+
"implementation_refs": [
|
|
362
|
+
"core.ExternalProofObligation"
|
|
363
|
+
],
|
|
364
|
+
"item_id": "cor:light-tail-exponential-witness",
|
|
365
|
+
"label": "Light-tail exponential witness",
|
|
366
|
+
"obligation_category": "numerical-envelope",
|
|
367
|
+
"proof_obligation_ids": [
|
|
368
|
+
"obligation:cor:light-tail-exponential-witness"
|
|
369
|
+
],
|
|
370
|
+
"residual_coordinates": [
|
|
371
|
+
"residual:cor:light-tail-exponential-witness"
|
|
372
|
+
],
|
|
373
|
+
"residual_policy": "charge-envelope-residual-until-bound-certified",
|
|
374
|
+
"safe_default": "diagnostic-with-envelope-obligation",
|
|
375
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
376
|
+
"schema_refs": [
|
|
377
|
+
"core.ExternalProofObligation"
|
|
378
|
+
],
|
|
379
|
+
"verifier_contract": {
|
|
380
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
381
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
382
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
383
|
+
},
|
|
384
|
+
"verifier_route": "core.adapters.envelope.verify_finite_bound"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"accepted_evidence_kind": [
|
|
388
|
+
"execution-availability-audit",
|
|
389
|
+
"policy-counterfactual-report",
|
|
390
|
+
"value-bound"
|
|
391
|
+
],
|
|
392
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
393
|
+
"checker_ref": null,
|
|
394
|
+
"checker_refs": [],
|
|
395
|
+
"coverage_status": "external_obligation",
|
|
396
|
+
"external_failure_modes": [
|
|
397
|
+
"execution-availability-unverified",
|
|
398
|
+
"policy-counterfactual-missing",
|
|
399
|
+
"value-bound-not-certified",
|
|
400
|
+
"no-implicit-settled-promotion",
|
|
401
|
+
"external-verifier-hook-required"
|
|
402
|
+
],
|
|
403
|
+
"failure_modes": [
|
|
404
|
+
"execution-availability-unverified",
|
|
405
|
+
"policy-counterfactual-missing",
|
|
406
|
+
"value-bound-not-certified"
|
|
407
|
+
],
|
|
408
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
409
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
410
|
+
"implementation_refs": [
|
|
411
|
+
"core.ExternalProofObligation"
|
|
412
|
+
],
|
|
413
|
+
"item_id": "definition:48",
|
|
414
|
+
"label": "Natural accelerator policy",
|
|
415
|
+
"obligation_category": "ecpt-economics-policy",
|
|
416
|
+
"proof_obligation_ids": [
|
|
417
|
+
"obligation:definition:48"
|
|
418
|
+
],
|
|
419
|
+
"residual_coordinates": [
|
|
420
|
+
"residual:definition:48"
|
|
421
|
+
],
|
|
422
|
+
"residual_policy": "charge-policy-residual-until-counterfactual-accepted",
|
|
423
|
+
"safe_default": "diagnostic-with-policy-obligation",
|
|
424
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
425
|
+
"schema_refs": [
|
|
426
|
+
"core.ExternalProofObligation"
|
|
427
|
+
],
|
|
428
|
+
"verifier_contract": {
|
|
429
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
430
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
431
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
432
|
+
},
|
|
433
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"accepted_evidence_kind": [
|
|
437
|
+
"execution-availability-audit",
|
|
438
|
+
"policy-counterfactual-report",
|
|
439
|
+
"value-bound"
|
|
440
|
+
],
|
|
441
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
442
|
+
"checker_ref": null,
|
|
443
|
+
"checker_refs": [],
|
|
444
|
+
"coverage_status": "external_obligation",
|
|
445
|
+
"external_failure_modes": [
|
|
446
|
+
"execution-availability-unverified",
|
|
447
|
+
"policy-counterfactual-missing",
|
|
448
|
+
"value-bound-not-certified",
|
|
449
|
+
"no-implicit-settled-promotion",
|
|
450
|
+
"external-verifier-hook-required"
|
|
451
|
+
],
|
|
452
|
+
"failure_modes": [
|
|
453
|
+
"execution-availability-unverified",
|
|
454
|
+
"policy-counterfactual-missing",
|
|
455
|
+
"value-bound-not-certified"
|
|
456
|
+
],
|
|
457
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
458
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
459
|
+
"implementation_refs": [
|
|
460
|
+
"core.ExternalProofObligation"
|
|
461
|
+
],
|
|
462
|
+
"item_id": "definition:49",
|
|
463
|
+
"label": "Search-friction ledger",
|
|
464
|
+
"obligation_category": "ecpt-economics-policy",
|
|
465
|
+
"proof_obligation_ids": [
|
|
466
|
+
"obligation:definition:49"
|
|
467
|
+
],
|
|
468
|
+
"residual_coordinates": [
|
|
469
|
+
"residual:definition:49"
|
|
470
|
+
],
|
|
471
|
+
"residual_policy": "charge-policy-residual-until-counterfactual-accepted",
|
|
472
|
+
"safe_default": "diagnostic-with-policy-obligation",
|
|
473
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
474
|
+
"schema_refs": [
|
|
475
|
+
"core.ExternalProofObligation"
|
|
476
|
+
],
|
|
477
|
+
"verifier_contract": {
|
|
478
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
479
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
480
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
481
|
+
},
|
|
482
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"accepted_evidence_kind": [
|
|
486
|
+
"execution-availability-audit",
|
|
487
|
+
"policy-counterfactual-report",
|
|
488
|
+
"value-bound"
|
|
489
|
+
],
|
|
490
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
491
|
+
"checker_ref": null,
|
|
492
|
+
"checker_refs": [],
|
|
493
|
+
"coverage_status": "external_obligation",
|
|
494
|
+
"external_failure_modes": [
|
|
495
|
+
"execution-availability-unverified",
|
|
496
|
+
"policy-counterfactual-missing",
|
|
497
|
+
"value-bound-not-certified",
|
|
498
|
+
"no-implicit-settled-promotion",
|
|
499
|
+
"external-verifier-hook-required"
|
|
500
|
+
],
|
|
501
|
+
"failure_modes": [
|
|
502
|
+
"execution-availability-unverified",
|
|
503
|
+
"policy-counterfactual-missing",
|
|
504
|
+
"value-bound-not-certified"
|
|
505
|
+
],
|
|
506
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
507
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
508
|
+
"implementation_refs": [
|
|
509
|
+
"core.ExternalProofObligation"
|
|
510
|
+
],
|
|
511
|
+
"item_id": "definition:50",
|
|
512
|
+
"label": "Friction-adjusted action value",
|
|
513
|
+
"obligation_category": "ecpt-economics-policy",
|
|
514
|
+
"proof_obligation_ids": [
|
|
515
|
+
"obligation:definition:50"
|
|
516
|
+
],
|
|
517
|
+
"residual_coordinates": [
|
|
518
|
+
"residual:definition:50"
|
|
519
|
+
],
|
|
520
|
+
"residual_policy": "charge-policy-residual-until-counterfactual-accepted",
|
|
521
|
+
"safe_default": "diagnostic-with-policy-obligation",
|
|
522
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
523
|
+
"schema_refs": [
|
|
524
|
+
"core.ExternalProofObligation"
|
|
525
|
+
],
|
|
526
|
+
"verifier_contract": {
|
|
527
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
528
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
529
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
530
|
+
},
|
|
531
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"accepted_evidence_kind": [
|
|
535
|
+
"execution-availability-audit",
|
|
536
|
+
"policy-counterfactual-report",
|
|
537
|
+
"value-bound"
|
|
538
|
+
],
|
|
539
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
540
|
+
"checker_ref": null,
|
|
541
|
+
"checker_refs": [],
|
|
542
|
+
"coverage_status": "external_obligation",
|
|
543
|
+
"external_failure_modes": [
|
|
544
|
+
"execution-availability-unverified",
|
|
545
|
+
"policy-counterfactual-missing",
|
|
546
|
+
"value-bound-not-certified",
|
|
547
|
+
"no-implicit-settled-promotion",
|
|
548
|
+
"external-verifier-hook-required"
|
|
549
|
+
],
|
|
550
|
+
"failure_modes": [
|
|
551
|
+
"execution-availability-unverified",
|
|
552
|
+
"policy-counterfactual-missing",
|
|
553
|
+
"value-bound-not-certified"
|
|
554
|
+
],
|
|
555
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
556
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
557
|
+
"implementation_refs": [
|
|
558
|
+
"core.ExternalProofObligation"
|
|
559
|
+
],
|
|
560
|
+
"item_id": "lem:evsi-admission",
|
|
561
|
+
"label": "EVSI admission",
|
|
562
|
+
"obligation_category": "ecpt-economics-policy",
|
|
563
|
+
"proof_obligation_ids": [
|
|
564
|
+
"obligation:lem:evsi-admission"
|
|
565
|
+
],
|
|
566
|
+
"residual_coordinates": [
|
|
567
|
+
"residual:lem:evsi-admission"
|
|
568
|
+
],
|
|
569
|
+
"residual_policy": "charge-policy-residual-until-counterfactual-accepted",
|
|
570
|
+
"safe_default": "diagnostic-with-policy-obligation",
|
|
571
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
572
|
+
"schema_refs": [
|
|
573
|
+
"core.ExternalProofObligation"
|
|
574
|
+
],
|
|
575
|
+
"verifier_contract": {
|
|
576
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
577
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
578
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
579
|
+
},
|
|
580
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"accepted_evidence_kind": [
|
|
584
|
+
"protocol-comparison-certificate",
|
|
585
|
+
"proxy-grounding-report",
|
|
586
|
+
"target-contract"
|
|
587
|
+
],
|
|
588
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
589
|
+
"checker_ref": null,
|
|
590
|
+
"checker_refs": [],
|
|
591
|
+
"coverage_status": "external_obligation",
|
|
592
|
+
"external_failure_modes": [
|
|
593
|
+
"protocol-comparison-not-certified",
|
|
594
|
+
"proxy-grounding-missing",
|
|
595
|
+
"target-contract-unaccepted",
|
|
596
|
+
"no-implicit-settled-promotion",
|
|
597
|
+
"external-verifier-hook-required"
|
|
598
|
+
],
|
|
599
|
+
"failure_modes": [
|
|
600
|
+
"protocol-comparison-not-certified",
|
|
601
|
+
"proxy-grounding-missing",
|
|
602
|
+
"target-contract-unaccepted"
|
|
603
|
+
],
|
|
604
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
605
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
606
|
+
"implementation_refs": [
|
|
607
|
+
"core.ExternalProofObligation"
|
|
608
|
+
],
|
|
609
|
+
"item_id": "definition:51",
|
|
610
|
+
"label": "Proxy bundle",
|
|
611
|
+
"obligation_category": "ecpt-proxy-target",
|
|
612
|
+
"proof_obligation_ids": [
|
|
613
|
+
"obligation:definition:51"
|
|
614
|
+
],
|
|
615
|
+
"residual_coordinates": [
|
|
616
|
+
"residual:definition:51"
|
|
617
|
+
],
|
|
618
|
+
"residual_policy": "charge-proxy-target-residual-until-contract-accepted",
|
|
619
|
+
"safe_default": "diagnostic-with-proxy-obligation",
|
|
620
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
621
|
+
"schema_refs": [
|
|
622
|
+
"core.ExternalProofObligation"
|
|
623
|
+
],
|
|
624
|
+
"verifier_contract": {
|
|
625
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
626
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
627
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
628
|
+
},
|
|
629
|
+
"verifier_route": "ecpt.adapters.proxy.verify_target_contract"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"accepted_evidence_kind": [
|
|
633
|
+
"protocol-comparison-certificate",
|
|
634
|
+
"proxy-grounding-report",
|
|
635
|
+
"target-contract"
|
|
636
|
+
],
|
|
637
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
638
|
+
"checker_ref": null,
|
|
639
|
+
"checker_refs": [],
|
|
640
|
+
"coverage_status": "external_obligation",
|
|
641
|
+
"external_failure_modes": [
|
|
642
|
+
"protocol-comparison-not-certified",
|
|
643
|
+
"proxy-grounding-missing",
|
|
644
|
+
"target-contract-unaccepted",
|
|
645
|
+
"no-implicit-settled-promotion",
|
|
646
|
+
"external-verifier-hook-required"
|
|
647
|
+
],
|
|
648
|
+
"failure_modes": [
|
|
649
|
+
"protocol-comparison-not-certified",
|
|
650
|
+
"proxy-grounding-missing",
|
|
651
|
+
"target-contract-unaccepted"
|
|
652
|
+
],
|
|
653
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
654
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
655
|
+
"implementation_refs": [
|
|
656
|
+
"core.ExternalProofObligation"
|
|
657
|
+
],
|
|
658
|
+
"item_id": "definition:52",
|
|
659
|
+
"label": "ECPT target",
|
|
660
|
+
"obligation_category": "ecpt-proxy-target",
|
|
661
|
+
"proof_obligation_ids": [
|
|
662
|
+
"obligation:definition:52"
|
|
663
|
+
],
|
|
664
|
+
"residual_coordinates": [
|
|
665
|
+
"residual:definition:52"
|
|
666
|
+
],
|
|
667
|
+
"residual_policy": "charge-proxy-target-residual-until-contract-accepted",
|
|
668
|
+
"safe_default": "diagnostic-with-proxy-obligation",
|
|
669
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
670
|
+
"schema_refs": [
|
|
671
|
+
"core.ExternalProofObligation"
|
|
672
|
+
],
|
|
673
|
+
"verifier_contract": {
|
|
674
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
675
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
676
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
677
|
+
},
|
|
678
|
+
"verifier_route": "ecpt.adapters.proxy.verify_target_contract"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"accepted_evidence_kind": [
|
|
682
|
+
"protocol-comparison-certificate",
|
|
683
|
+
"proxy-grounding-report",
|
|
684
|
+
"target-contract"
|
|
685
|
+
],
|
|
686
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
687
|
+
"checker_ref": null,
|
|
688
|
+
"checker_refs": [],
|
|
689
|
+
"coverage_status": "external_obligation",
|
|
690
|
+
"external_failure_modes": [
|
|
691
|
+
"protocol-comparison-not-certified",
|
|
692
|
+
"proxy-grounding-missing",
|
|
693
|
+
"target-contract-unaccepted",
|
|
694
|
+
"no-implicit-settled-promotion",
|
|
695
|
+
"external-verifier-hook-required"
|
|
696
|
+
],
|
|
697
|
+
"failure_modes": [
|
|
698
|
+
"protocol-comparison-not-certified",
|
|
699
|
+
"proxy-grounding-missing",
|
|
700
|
+
"target-contract-unaccepted"
|
|
701
|
+
],
|
|
702
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
703
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
704
|
+
"implementation_refs": [
|
|
705
|
+
"core.ExternalProofObligation"
|
|
706
|
+
],
|
|
707
|
+
"item_id": "definition:54",
|
|
708
|
+
"label": "Protocol-competitive target acceleration",
|
|
709
|
+
"obligation_category": "ecpt-proxy-target",
|
|
710
|
+
"proof_obligation_ids": [
|
|
711
|
+
"obligation:definition:54"
|
|
712
|
+
],
|
|
713
|
+
"residual_coordinates": [
|
|
714
|
+
"residual:definition:54"
|
|
715
|
+
],
|
|
716
|
+
"residual_policy": "charge-proxy-target-residual-until-contract-accepted",
|
|
717
|
+
"safe_default": "diagnostic-with-proxy-obligation",
|
|
718
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
719
|
+
"schema_refs": [
|
|
720
|
+
"core.ExternalProofObligation"
|
|
721
|
+
],
|
|
722
|
+
"verifier_contract": {
|
|
723
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
724
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
725
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
726
|
+
},
|
|
727
|
+
"verifier_route": "ecpt.adapters.proxy.verify_target_contract"
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
"accepted_evidence_kind": [
|
|
731
|
+
"repair-route-certificate",
|
|
732
|
+
"speculative-channel-audit",
|
|
733
|
+
"synergy-lower-bound"
|
|
734
|
+
],
|
|
735
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
736
|
+
"checker_ref": null,
|
|
737
|
+
"checker_refs": [],
|
|
738
|
+
"coverage_status": "external_obligation",
|
|
739
|
+
"external_failure_modes": [
|
|
740
|
+
"repair-route-missing",
|
|
741
|
+
"speculative-channel-unverified",
|
|
742
|
+
"synergy-bound-not-certified",
|
|
743
|
+
"no-implicit-settled-promotion",
|
|
744
|
+
"external-verifier-hook-required"
|
|
745
|
+
],
|
|
746
|
+
"failure_modes": [
|
|
747
|
+
"repair-route-missing",
|
|
748
|
+
"speculative-channel-unverified",
|
|
749
|
+
"synergy-bound-not-certified"
|
|
750
|
+
],
|
|
751
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
752
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
753
|
+
"implementation_refs": [
|
|
754
|
+
"core.ExternalProofObligation"
|
|
755
|
+
],
|
|
756
|
+
"item_id": "definition:57",
|
|
757
|
+
"label": "Paralysis and repair route",
|
|
758
|
+
"obligation_category": "ecpt-speculative-channel",
|
|
759
|
+
"proof_obligation_ids": [
|
|
760
|
+
"obligation:definition:57"
|
|
761
|
+
],
|
|
762
|
+
"residual_coordinates": [
|
|
763
|
+
"residual:definition:57"
|
|
764
|
+
],
|
|
765
|
+
"residual_policy": "charge-speculative-residual-until-channel-certified",
|
|
766
|
+
"safe_default": "diagnostic-with-speculative-obligation",
|
|
767
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
768
|
+
"schema_refs": [
|
|
769
|
+
"core.ExternalProofObligation"
|
|
770
|
+
],
|
|
771
|
+
"verifier_contract": {
|
|
772
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
773
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
774
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
775
|
+
},
|
|
776
|
+
"verifier_route": "ecpt.adapters.speculative.verify_channel_and_repair"
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"accepted_evidence_kind": [
|
|
780
|
+
"finite-envelope",
|
|
781
|
+
"generator-identification-report",
|
|
782
|
+
"transition-kernel-audit"
|
|
783
|
+
],
|
|
784
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
785
|
+
"checker_ref": null,
|
|
786
|
+
"checker_refs": [],
|
|
787
|
+
"coverage_status": "external_obligation",
|
|
788
|
+
"external_failure_modes": [
|
|
789
|
+
"generator-calibration-missing",
|
|
790
|
+
"limit-envelope-unverified",
|
|
791
|
+
"transition-kernel-not-certified",
|
|
792
|
+
"no-implicit-settled-promotion",
|
|
793
|
+
"external-verifier-hook-required"
|
|
794
|
+
],
|
|
795
|
+
"failure_modes": [
|
|
796
|
+
"generator-calibration-missing",
|
|
797
|
+
"limit-envelope-unverified",
|
|
798
|
+
"transition-kernel-not-certified"
|
|
799
|
+
],
|
|
800
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
801
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
802
|
+
"implementation_refs": [
|
|
803
|
+
"core.ExternalProofObligation"
|
|
804
|
+
],
|
|
805
|
+
"item_id": "cor:scalar-bellman",
|
|
806
|
+
"label": "Scalar Bellman interface",
|
|
807
|
+
"obligation_category": "ecpt-generator-limit",
|
|
808
|
+
"proof_obligation_ids": [
|
|
809
|
+
"obligation:cor:scalar-bellman"
|
|
810
|
+
],
|
|
811
|
+
"residual_coordinates": [
|
|
812
|
+
"residual:cor:scalar-bellman"
|
|
813
|
+
],
|
|
814
|
+
"residual_policy": "charge-generator-limit-residual-until-calibration-accepted",
|
|
815
|
+
"safe_default": "diagnostic-with-generator-obligation",
|
|
816
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
817
|
+
"schema_refs": [
|
|
818
|
+
"core.ExternalProofObligation"
|
|
819
|
+
],
|
|
820
|
+
"verifier_contract": {
|
|
821
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
822
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
823
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
824
|
+
},
|
|
825
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"accepted_evidence_kind": [
|
|
829
|
+
"finite-envelope",
|
|
830
|
+
"generator-identification-report",
|
|
831
|
+
"transition-kernel-audit"
|
|
832
|
+
],
|
|
833
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
834
|
+
"checker_ref": null,
|
|
835
|
+
"checker_refs": [],
|
|
836
|
+
"coverage_status": "external_obligation",
|
|
837
|
+
"external_failure_modes": [
|
|
838
|
+
"generator-calibration-missing",
|
|
839
|
+
"limit-envelope-unverified",
|
|
840
|
+
"transition-kernel-not-certified",
|
|
841
|
+
"no-implicit-settled-promotion",
|
|
842
|
+
"external-verifier-hook-required"
|
|
843
|
+
],
|
|
844
|
+
"failure_modes": [
|
|
845
|
+
"generator-calibration-missing",
|
|
846
|
+
"limit-envelope-unverified",
|
|
847
|
+
"transition-kernel-not-certified"
|
|
848
|
+
],
|
|
849
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
850
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
851
|
+
"implementation_refs": [
|
|
852
|
+
"core.ExternalProofObligation"
|
|
853
|
+
],
|
|
854
|
+
"item_id": "def:markov-additive-raf",
|
|
855
|
+
"label": "Speculative RAF with Markov additive debt",
|
|
856
|
+
"obligation_category": "ecpt-generator-limit",
|
|
857
|
+
"proof_obligation_ids": [
|
|
858
|
+
"obligation:def:markov-additive-raf"
|
|
859
|
+
],
|
|
860
|
+
"residual_coordinates": [
|
|
861
|
+
"residual:def:markov-additive-raf"
|
|
862
|
+
],
|
|
863
|
+
"residual_policy": "charge-generator-limit-residual-until-calibration-accepted",
|
|
864
|
+
"safe_default": "diagnostic-with-generator-obligation",
|
|
865
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
866
|
+
"schema_refs": [
|
|
867
|
+
"core.ExternalProofObligation"
|
|
868
|
+
],
|
|
869
|
+
"verifier_contract": {
|
|
870
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
871
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
872
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
873
|
+
},
|
|
874
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"accepted_evidence_kind": [
|
|
878
|
+
"repair-route-certificate",
|
|
879
|
+
"speculative-channel-audit",
|
|
880
|
+
"synergy-lower-bound"
|
|
881
|
+
],
|
|
882
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
883
|
+
"checker_ref": null,
|
|
884
|
+
"checker_refs": [],
|
|
885
|
+
"coverage_status": "external_obligation",
|
|
886
|
+
"external_failure_modes": [
|
|
887
|
+
"repair-route-missing",
|
|
888
|
+
"speculative-channel-unverified",
|
|
889
|
+
"synergy-bound-not-certified",
|
|
890
|
+
"no-implicit-settled-promotion",
|
|
891
|
+
"external-verifier-hook-required"
|
|
892
|
+
],
|
|
893
|
+
"failure_modes": [
|
|
894
|
+
"repair-route-missing",
|
|
895
|
+
"speculative-channel-unverified",
|
|
896
|
+
"synergy-bound-not-certified"
|
|
897
|
+
],
|
|
898
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
899
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
900
|
+
"implementation_refs": [
|
|
901
|
+
"core.ExternalProofObligation"
|
|
902
|
+
],
|
|
903
|
+
"item_id": "definition:62",
|
|
904
|
+
"label": "Sparse synergy and residual certificate",
|
|
905
|
+
"obligation_category": "ecpt-speculative-channel",
|
|
906
|
+
"proof_obligation_ids": [
|
|
907
|
+
"obligation:definition:62"
|
|
908
|
+
],
|
|
909
|
+
"residual_coordinates": [
|
|
910
|
+
"residual:definition:62"
|
|
911
|
+
],
|
|
912
|
+
"residual_policy": "charge-speculative-residual-until-channel-certified",
|
|
913
|
+
"safe_default": "diagnostic-with-speculative-obligation",
|
|
914
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
915
|
+
"schema_refs": [
|
|
916
|
+
"core.ExternalProofObligation"
|
|
917
|
+
],
|
|
918
|
+
"verifier_contract": {
|
|
919
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
920
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
921
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
922
|
+
},
|
|
923
|
+
"verifier_route": "ecpt.adapters.speculative.verify_channel_and_repair"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"accepted_evidence_kind": [
|
|
927
|
+
"repair-route-certificate",
|
|
928
|
+
"speculative-channel-audit",
|
|
929
|
+
"synergy-lower-bound"
|
|
930
|
+
],
|
|
931
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
932
|
+
"checker_ref": null,
|
|
933
|
+
"checker_refs": [],
|
|
934
|
+
"coverage_status": "external_obligation",
|
|
935
|
+
"external_failure_modes": [
|
|
936
|
+
"repair-route-missing",
|
|
937
|
+
"speculative-channel-unverified",
|
|
938
|
+
"synergy-bound-not-certified",
|
|
939
|
+
"no-implicit-settled-promotion",
|
|
940
|
+
"external-verifier-hook-required"
|
|
941
|
+
],
|
|
942
|
+
"failure_modes": [
|
|
943
|
+
"repair-route-missing",
|
|
944
|
+
"speculative-channel-unverified",
|
|
945
|
+
"synergy-bound-not-certified"
|
|
946
|
+
],
|
|
947
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
948
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
949
|
+
"implementation_refs": [
|
|
950
|
+
"core.ExternalProofObligation"
|
|
951
|
+
],
|
|
952
|
+
"item_id": "prop:sparse-synergy-lower-bound",
|
|
953
|
+
"label": "Sparse synergy lower bound",
|
|
954
|
+
"obligation_category": "ecpt-speculative-channel",
|
|
955
|
+
"proof_obligation_ids": [
|
|
956
|
+
"obligation:prop:sparse-synergy-lower-bound"
|
|
957
|
+
],
|
|
958
|
+
"residual_coordinates": [
|
|
959
|
+
"residual:prop:sparse-synergy-lower-bound"
|
|
960
|
+
],
|
|
961
|
+
"residual_policy": "charge-speculative-residual-until-channel-certified",
|
|
962
|
+
"safe_default": "diagnostic-with-speculative-obligation",
|
|
963
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
964
|
+
"schema_refs": [
|
|
965
|
+
"core.ExternalProofObligation"
|
|
966
|
+
],
|
|
967
|
+
"verifier_contract": {
|
|
968
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
969
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
970
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
971
|
+
},
|
|
972
|
+
"verifier_route": "ecpt.adapters.speculative.verify_channel_and_repair"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"accepted_evidence_kind": [
|
|
976
|
+
"finite-bound-table",
|
|
977
|
+
"residual-envelope-proof",
|
|
978
|
+
"tail-bound-certificate"
|
|
979
|
+
],
|
|
980
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
981
|
+
"checker_ref": null,
|
|
982
|
+
"checker_refs": [],
|
|
983
|
+
"coverage_status": "external_obligation",
|
|
984
|
+
"external_failure_modes": [
|
|
985
|
+
"finite-envelope-proof-missing",
|
|
986
|
+
"residual-bound-not-certified",
|
|
987
|
+
"tail-bound-unverified",
|
|
988
|
+
"no-implicit-settled-promotion",
|
|
989
|
+
"external-verifier-hook-required"
|
|
990
|
+
],
|
|
991
|
+
"failure_modes": [
|
|
992
|
+
"finite-envelope-proof-missing",
|
|
993
|
+
"residual-bound-not-certified",
|
|
994
|
+
"tail-bound-unverified"
|
|
995
|
+
],
|
|
996
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
997
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
998
|
+
"implementation_refs": [
|
|
999
|
+
"core.ExternalProofObligation"
|
|
1000
|
+
],
|
|
1001
|
+
"item_id": "cor:linear-growth-lower-bound",
|
|
1002
|
+
"label": "Linear growth lower bound",
|
|
1003
|
+
"obligation_category": "numerical-envelope",
|
|
1004
|
+
"proof_obligation_ids": [
|
|
1005
|
+
"obligation:cor:linear-growth-lower-bound"
|
|
1006
|
+
],
|
|
1007
|
+
"residual_coordinates": [
|
|
1008
|
+
"residual:cor:linear-growth-lower-bound"
|
|
1009
|
+
],
|
|
1010
|
+
"residual_policy": "charge-envelope-residual-until-bound-certified",
|
|
1011
|
+
"safe_default": "diagnostic-with-envelope-obligation",
|
|
1012
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1013
|
+
"schema_refs": [
|
|
1014
|
+
"core.ExternalProofObligation"
|
|
1015
|
+
],
|
|
1016
|
+
"verifier_contract": {
|
|
1017
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1018
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1019
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1020
|
+
},
|
|
1021
|
+
"verifier_route": "core.adapters.envelope.verify_finite_bound"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"accepted_evidence_kind": [
|
|
1025
|
+
"finite-envelope",
|
|
1026
|
+
"generator-identification-report",
|
|
1027
|
+
"transition-kernel-audit"
|
|
1028
|
+
],
|
|
1029
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1030
|
+
"checker_ref": null,
|
|
1031
|
+
"checker_refs": [],
|
|
1032
|
+
"coverage_status": "external_obligation",
|
|
1033
|
+
"external_failure_modes": [
|
|
1034
|
+
"generator-calibration-missing",
|
|
1035
|
+
"limit-envelope-unverified",
|
|
1036
|
+
"transition-kernel-not-certified",
|
|
1037
|
+
"no-implicit-settled-promotion",
|
|
1038
|
+
"external-verifier-hook-required"
|
|
1039
|
+
],
|
|
1040
|
+
"failure_modes": [
|
|
1041
|
+
"generator-calibration-missing",
|
|
1042
|
+
"limit-envelope-unverified",
|
|
1043
|
+
"transition-kernel-not-certified"
|
|
1044
|
+
],
|
|
1045
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1046
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1047
|
+
"implementation_refs": [
|
|
1048
|
+
"core.ExternalProofObligation"
|
|
1049
|
+
],
|
|
1050
|
+
"item_id": "def:density-dependent-chain",
|
|
1051
|
+
"label": "Regularized density-dependent ECPT family",
|
|
1052
|
+
"obligation_category": "ecpt-generator-limit",
|
|
1053
|
+
"proof_obligation_ids": [
|
|
1054
|
+
"obligation:def:density-dependent-chain"
|
|
1055
|
+
],
|
|
1056
|
+
"residual_coordinates": [
|
|
1057
|
+
"residual:def:density-dependent-chain"
|
|
1058
|
+
],
|
|
1059
|
+
"residual_policy": "charge-generator-limit-residual-until-calibration-accepted",
|
|
1060
|
+
"safe_default": "diagnostic-with-generator-obligation",
|
|
1061
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1062
|
+
"schema_refs": [
|
|
1063
|
+
"core.ExternalProofObligation"
|
|
1064
|
+
],
|
|
1065
|
+
"verifier_contract": {
|
|
1066
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1067
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1068
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1069
|
+
},
|
|
1070
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"accepted_evidence_kind": [
|
|
1074
|
+
"finite-envelope",
|
|
1075
|
+
"generator-identification-report",
|
|
1076
|
+
"transition-kernel-audit"
|
|
1077
|
+
],
|
|
1078
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1079
|
+
"checker_ref": null,
|
|
1080
|
+
"checker_refs": [],
|
|
1081
|
+
"coverage_status": "external_obligation",
|
|
1082
|
+
"external_failure_modes": [
|
|
1083
|
+
"generator-calibration-missing",
|
|
1084
|
+
"limit-envelope-unverified",
|
|
1085
|
+
"transition-kernel-not-certified",
|
|
1086
|
+
"no-implicit-settled-promotion",
|
|
1087
|
+
"external-verifier-hook-required"
|
|
1088
|
+
],
|
|
1089
|
+
"failure_modes": [
|
|
1090
|
+
"generator-calibration-missing",
|
|
1091
|
+
"limit-envelope-unverified",
|
|
1092
|
+
"transition-kernel-not-certified"
|
|
1093
|
+
],
|
|
1094
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1095
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1096
|
+
"implementation_refs": [
|
|
1097
|
+
"core.ExternalProofObligation"
|
|
1098
|
+
],
|
|
1099
|
+
"item_id": "def:identified-generator-calibration",
|
|
1100
|
+
"label": "Intervention-identified generator calibration certificate",
|
|
1101
|
+
"obligation_category": "ecpt-generator-limit",
|
|
1102
|
+
"proof_obligation_ids": [
|
|
1103
|
+
"obligation:def:identified-generator-calibration"
|
|
1104
|
+
],
|
|
1105
|
+
"residual_coordinates": [
|
|
1106
|
+
"residual:def:identified-generator-calibration"
|
|
1107
|
+
],
|
|
1108
|
+
"residual_policy": "charge-generator-limit-residual-until-calibration-accepted",
|
|
1109
|
+
"safe_default": "diagnostic-with-generator-obligation",
|
|
1110
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1111
|
+
"schema_refs": [
|
|
1112
|
+
"core.ExternalProofObligation"
|
|
1113
|
+
],
|
|
1114
|
+
"verifier_contract": {
|
|
1115
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1116
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1117
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1118
|
+
},
|
|
1119
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"accepted_evidence_kind": [
|
|
1123
|
+
"finite-envelope",
|
|
1124
|
+
"generator-identification-report",
|
|
1125
|
+
"transition-kernel-audit"
|
|
1126
|
+
],
|
|
1127
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1128
|
+
"checker_ref": null,
|
|
1129
|
+
"checker_refs": [],
|
|
1130
|
+
"coverage_status": "external_obligation",
|
|
1131
|
+
"external_failure_modes": [
|
|
1132
|
+
"generator-calibration-missing",
|
|
1133
|
+
"limit-envelope-unverified",
|
|
1134
|
+
"transition-kernel-not-certified",
|
|
1135
|
+
"no-implicit-settled-promotion",
|
|
1136
|
+
"external-verifier-hook-required",
|
|
1137
|
+
"limit-envelope-or-generator-calibration-required"
|
|
1138
|
+
],
|
|
1139
|
+
"failure_modes": [
|
|
1140
|
+
"generator-calibration-missing",
|
|
1141
|
+
"limit-envelope-unverified",
|
|
1142
|
+
"transition-kernel-not-certified"
|
|
1143
|
+
],
|
|
1144
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1145
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1146
|
+
"implementation_refs": [
|
|
1147
|
+
"core.ExternalProofObligation"
|
|
1148
|
+
],
|
|
1149
|
+
"item_id": "definition:70",
|
|
1150
|
+
"label": "Regularized macroscopic percolation envelope",
|
|
1151
|
+
"obligation_category": "ecpt-generator-limit",
|
|
1152
|
+
"proof_obligation_ids": [
|
|
1153
|
+
"obligation:definition:70"
|
|
1154
|
+
],
|
|
1155
|
+
"residual_coordinates": [
|
|
1156
|
+
"residual:definition:70"
|
|
1157
|
+
],
|
|
1158
|
+
"residual_policy": "charge-generator-limit-residual-until-calibration-accepted",
|
|
1159
|
+
"safe_default": "diagnostic-with-generator-obligation",
|
|
1160
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1161
|
+
"schema_refs": [
|
|
1162
|
+
"core.ExternalProofObligation"
|
|
1163
|
+
],
|
|
1164
|
+
"verifier_contract": {
|
|
1165
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1166
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1167
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1168
|
+
},
|
|
1169
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"accepted_evidence_kind": [
|
|
1173
|
+
"bridge-map",
|
|
1174
|
+
"machine-readable-capsule-audit",
|
|
1175
|
+
"reserve-invariance-proof"
|
|
1176
|
+
],
|
|
1177
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1178
|
+
"checker_ref": null,
|
|
1179
|
+
"checker_refs": [],
|
|
1180
|
+
"coverage_status": "external_obligation",
|
|
1181
|
+
"external_failure_modes": [
|
|
1182
|
+
"bridge-map-unverified",
|
|
1183
|
+
"capsule-projection-not-certified",
|
|
1184
|
+
"reserve-invariance-unaccepted",
|
|
1185
|
+
"no-implicit-settled-promotion",
|
|
1186
|
+
"external-verifier-hook-required"
|
|
1187
|
+
],
|
|
1188
|
+
"failure_modes": [
|
|
1189
|
+
"bridge-map-unverified",
|
|
1190
|
+
"capsule-projection-not-certified",
|
|
1191
|
+
"reserve-invariance-unaccepted"
|
|
1192
|
+
],
|
|
1193
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1194
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1195
|
+
"implementation_refs": [
|
|
1196
|
+
"core.ExternalProofObligation"
|
|
1197
|
+
],
|
|
1198
|
+
"item_id": "definition:71",
|
|
1199
|
+
"label": "ALT-compatible packet",
|
|
1200
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
1201
|
+
"proof_obligation_ids": [
|
|
1202
|
+
"obligation:definition:71"
|
|
1203
|
+
],
|
|
1204
|
+
"residual_coordinates": [
|
|
1205
|
+
"residual:definition:71"
|
|
1206
|
+
],
|
|
1207
|
+
"residual_policy": "charge-bridge-residual-until-cross-theory-proof-accepted",
|
|
1208
|
+
"safe_default": "diagnostic-with-bridge-obligation",
|
|
1209
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1210
|
+
"schema_refs": [
|
|
1211
|
+
"core.ExternalProofObligation"
|
|
1212
|
+
],
|
|
1213
|
+
"verifier_contract": {
|
|
1214
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1215
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1216
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1217
|
+
},
|
|
1218
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"accepted_evidence_kind": [
|
|
1222
|
+
"execution-availability-audit",
|
|
1223
|
+
"policy-counterfactual-report",
|
|
1224
|
+
"value-bound"
|
|
1225
|
+
],
|
|
1226
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1227
|
+
"checker_ref": null,
|
|
1228
|
+
"checker_refs": [],
|
|
1229
|
+
"coverage_status": "external_obligation",
|
|
1230
|
+
"external_failure_modes": [
|
|
1231
|
+
"execution-availability-unverified",
|
|
1232
|
+
"policy-counterfactual-missing",
|
|
1233
|
+
"value-bound-not-certified",
|
|
1234
|
+
"no-implicit-settled-promotion",
|
|
1235
|
+
"external-verifier-hook-required"
|
|
1236
|
+
],
|
|
1237
|
+
"failure_modes": [
|
|
1238
|
+
"execution-availability-unverified",
|
|
1239
|
+
"policy-counterfactual-missing",
|
|
1240
|
+
"value-bound-not-certified"
|
|
1241
|
+
],
|
|
1242
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1243
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1244
|
+
"implementation_refs": [
|
|
1245
|
+
"core.ExternalProofObligation"
|
|
1246
|
+
],
|
|
1247
|
+
"item_id": "definition:72",
|
|
1248
|
+
"label": "Liquidity bridge",
|
|
1249
|
+
"obligation_category": "ecpt-economics-policy",
|
|
1250
|
+
"proof_obligation_ids": [
|
|
1251
|
+
"obligation:definition:72"
|
|
1252
|
+
],
|
|
1253
|
+
"residual_coordinates": [
|
|
1254
|
+
"residual:definition:72"
|
|
1255
|
+
],
|
|
1256
|
+
"residual_policy": "charge-policy-residual-until-counterfactual-accepted",
|
|
1257
|
+
"safe_default": "diagnostic-with-policy-obligation",
|
|
1258
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1259
|
+
"schema_refs": [
|
|
1260
|
+
"core.ExternalProofObligation"
|
|
1261
|
+
],
|
|
1262
|
+
"verifier_contract": {
|
|
1263
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1264
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1265
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1266
|
+
},
|
|
1267
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"accepted_evidence_kind": [
|
|
1271
|
+
"bridge-map",
|
|
1272
|
+
"machine-readable-capsule-audit",
|
|
1273
|
+
"reserve-invariance-proof"
|
|
1274
|
+
],
|
|
1275
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1276
|
+
"checker_ref": null,
|
|
1277
|
+
"checker_refs": [],
|
|
1278
|
+
"coverage_status": "external_obligation",
|
|
1279
|
+
"external_failure_modes": [
|
|
1280
|
+
"bridge-map-unverified",
|
|
1281
|
+
"capsule-projection-not-certified",
|
|
1282
|
+
"reserve-invariance-unaccepted",
|
|
1283
|
+
"no-implicit-settled-promotion",
|
|
1284
|
+
"external-verifier-hook-required"
|
|
1285
|
+
],
|
|
1286
|
+
"failure_modes": [
|
|
1287
|
+
"bridge-map-unverified",
|
|
1288
|
+
"capsule-projection-not-certified",
|
|
1289
|
+
"reserve-invariance-unaccepted"
|
|
1290
|
+
],
|
|
1291
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1292
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1293
|
+
"implementation_refs": [
|
|
1294
|
+
"core.ExternalProofObligation"
|
|
1295
|
+
],
|
|
1296
|
+
"item_id": "prop:alt-lift",
|
|
1297
|
+
"label": "ALT lift",
|
|
1298
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
1299
|
+
"proof_obligation_ids": [
|
|
1300
|
+
"obligation:prop:alt-lift"
|
|
1301
|
+
],
|
|
1302
|
+
"residual_coordinates": [
|
|
1303
|
+
"residual:prop:alt-lift"
|
|
1304
|
+
],
|
|
1305
|
+
"residual_policy": "charge-bridge-residual-until-cross-theory-proof-accepted",
|
|
1306
|
+
"safe_default": "diagnostic-with-bridge-obligation",
|
|
1307
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1308
|
+
"schema_refs": [
|
|
1309
|
+
"core.ExternalProofObligation"
|
|
1310
|
+
],
|
|
1311
|
+
"verifier_contract": {
|
|
1312
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1313
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1314
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1315
|
+
},
|
|
1316
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"accepted_evidence_kind": [
|
|
1320
|
+
"bridge-map",
|
|
1321
|
+
"machine-readable-capsule-audit",
|
|
1322
|
+
"reserve-invariance-proof"
|
|
1323
|
+
],
|
|
1324
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1325
|
+
"checker_ref": null,
|
|
1326
|
+
"checker_refs": [],
|
|
1327
|
+
"coverage_status": "external_obligation",
|
|
1328
|
+
"external_failure_modes": [
|
|
1329
|
+
"bridge-map-unverified",
|
|
1330
|
+
"capsule-projection-not-certified",
|
|
1331
|
+
"reserve-invariance-unaccepted",
|
|
1332
|
+
"no-implicit-settled-promotion",
|
|
1333
|
+
"external-verifier-hook-required"
|
|
1334
|
+
],
|
|
1335
|
+
"failure_modes": [
|
|
1336
|
+
"bridge-map-unverified",
|
|
1337
|
+
"capsule-projection-not-certified",
|
|
1338
|
+
"reserve-invariance-unaccepted"
|
|
1339
|
+
],
|
|
1340
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1341
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1342
|
+
"implementation_refs": [
|
|
1343
|
+
"core.ExternalProofObligation"
|
|
1344
|
+
],
|
|
1345
|
+
"item_id": "definition:73",
|
|
1346
|
+
"label": "SQOT-compatible reserve certificate",
|
|
1347
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
1348
|
+
"proof_obligation_ids": [
|
|
1349
|
+
"obligation:definition:73"
|
|
1350
|
+
],
|
|
1351
|
+
"residual_coordinates": [
|
|
1352
|
+
"residual:definition:73"
|
|
1353
|
+
],
|
|
1354
|
+
"residual_policy": "charge-bridge-residual-until-cross-theory-proof-accepted",
|
|
1355
|
+
"safe_default": "diagnostic-with-bridge-obligation",
|
|
1356
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1357
|
+
"schema_refs": [
|
|
1358
|
+
"core.ExternalProofObligation"
|
|
1359
|
+
],
|
|
1360
|
+
"verifier_contract": {
|
|
1361
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1362
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1363
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1364
|
+
},
|
|
1365
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"accepted_evidence_kind": [
|
|
1369
|
+
"bridge-map",
|
|
1370
|
+
"machine-readable-capsule-audit",
|
|
1371
|
+
"reserve-invariance-proof"
|
|
1372
|
+
],
|
|
1373
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1374
|
+
"checker_ref": null,
|
|
1375
|
+
"checker_refs": [],
|
|
1376
|
+
"coverage_status": "external_obligation",
|
|
1377
|
+
"external_failure_modes": [
|
|
1378
|
+
"bridge-map-unverified",
|
|
1379
|
+
"capsule-projection-not-certified",
|
|
1380
|
+
"reserve-invariance-unaccepted",
|
|
1381
|
+
"no-implicit-settled-promotion",
|
|
1382
|
+
"external-verifier-hook-required"
|
|
1383
|
+
],
|
|
1384
|
+
"failure_modes": [
|
|
1385
|
+
"bridge-map-unverified",
|
|
1386
|
+
"capsule-projection-not-certified",
|
|
1387
|
+
"reserve-invariance-unaccepted"
|
|
1388
|
+
],
|
|
1389
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1390
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1391
|
+
"implementation_refs": [
|
|
1392
|
+
"core.ExternalProofObligation"
|
|
1393
|
+
],
|
|
1394
|
+
"item_id": "prop:sqot-reserve-invariance",
|
|
1395
|
+
"label": "SQOT reserve invariance",
|
|
1396
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
1397
|
+
"proof_obligation_ids": [
|
|
1398
|
+
"obligation:prop:sqot-reserve-invariance"
|
|
1399
|
+
],
|
|
1400
|
+
"residual_coordinates": [
|
|
1401
|
+
"residual:prop:sqot-reserve-invariance"
|
|
1402
|
+
],
|
|
1403
|
+
"residual_policy": "charge-bridge-residual-until-cross-theory-proof-accepted",
|
|
1404
|
+
"safe_default": "diagnostic-with-bridge-obligation",
|
|
1405
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1406
|
+
"schema_refs": [
|
|
1407
|
+
"core.ExternalProofObligation"
|
|
1408
|
+
],
|
|
1409
|
+
"verifier_contract": {
|
|
1410
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1411
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1412
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1413
|
+
},
|
|
1414
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"accepted_evidence_kind": [
|
|
1418
|
+
"bridge-map",
|
|
1419
|
+
"machine-readable-capsule-audit",
|
|
1420
|
+
"reserve-invariance-proof"
|
|
1421
|
+
],
|
|
1422
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1423
|
+
"checker_ref": null,
|
|
1424
|
+
"checker_refs": [],
|
|
1425
|
+
"coverage_status": "external_obligation",
|
|
1426
|
+
"external_failure_modes": [
|
|
1427
|
+
"bridge-map-unverified",
|
|
1428
|
+
"capsule-projection-not-certified",
|
|
1429
|
+
"reserve-invariance-unaccepted",
|
|
1430
|
+
"no-implicit-settled-promotion",
|
|
1431
|
+
"external-verifier-hook-required"
|
|
1432
|
+
],
|
|
1433
|
+
"failure_modes": [
|
|
1434
|
+
"bridge-map-unverified",
|
|
1435
|
+
"capsule-projection-not-certified",
|
|
1436
|
+
"reserve-invariance-unaccepted"
|
|
1437
|
+
],
|
|
1438
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1439
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1440
|
+
"implementation_refs": [
|
|
1441
|
+
"core.ExternalProofObligation"
|
|
1442
|
+
],
|
|
1443
|
+
"item_id": "def:publication-capsule",
|
|
1444
|
+
"label": "Publication and machine-readable capsule",
|
|
1445
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
1446
|
+
"proof_obligation_ids": [
|
|
1447
|
+
"obligation:def:publication-capsule"
|
|
1448
|
+
],
|
|
1449
|
+
"residual_coordinates": [
|
|
1450
|
+
"residual:def:publication-capsule"
|
|
1451
|
+
],
|
|
1452
|
+
"residual_policy": "charge-bridge-residual-until-cross-theory-proof-accepted",
|
|
1453
|
+
"safe_default": "diagnostic-with-bridge-obligation",
|
|
1454
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1455
|
+
"schema_refs": [
|
|
1456
|
+
"core.ExternalProofObligation"
|
|
1457
|
+
],
|
|
1458
|
+
"verifier_contract": {
|
|
1459
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1460
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1461
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1462
|
+
},
|
|
1463
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"accepted_evidence_kind": [
|
|
1467
|
+
"bridge-map",
|
|
1468
|
+
"machine-readable-capsule-audit",
|
|
1469
|
+
"reserve-invariance-proof"
|
|
1470
|
+
],
|
|
1471
|
+
"artifact": "Executable Capability Percolation Theory.tex",
|
|
1472
|
+
"checker_ref": null,
|
|
1473
|
+
"checker_refs": [],
|
|
1474
|
+
"coverage_status": "external_obligation",
|
|
1475
|
+
"external_failure_modes": [
|
|
1476
|
+
"bridge-map-unverified",
|
|
1477
|
+
"capsule-projection-not-certified",
|
|
1478
|
+
"reserve-invariance-unaccepted",
|
|
1479
|
+
"no-implicit-settled-promotion",
|
|
1480
|
+
"external-verifier-hook-required"
|
|
1481
|
+
],
|
|
1482
|
+
"failure_modes": [
|
|
1483
|
+
"bridge-map-unverified",
|
|
1484
|
+
"capsule-projection-not-certified",
|
|
1485
|
+
"reserve-invariance-unaccepted"
|
|
1486
|
+
],
|
|
1487
|
+
"implementation_maturity": "unsupported_no_interface",
|
|
1488
|
+
"implementation_ref": "core.ExternalProofObligation",
|
|
1489
|
+
"implementation_refs": [
|
|
1490
|
+
"core.ExternalProofObligation"
|
|
1491
|
+
],
|
|
1492
|
+
"item_id": "thm:protocol-relative-soundness",
|
|
1493
|
+
"label": "Protocol-relative soundness",
|
|
1494
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
1495
|
+
"proof_obligation_ids": [
|
|
1496
|
+
"obligation:thm:protocol-relative-soundness"
|
|
1497
|
+
],
|
|
1498
|
+
"residual_coordinates": [
|
|
1499
|
+
"residual:thm:protocol-relative-soundness"
|
|
1500
|
+
],
|
|
1501
|
+
"residual_policy": "charge-bridge-residual-until-cross-theory-proof-accepted",
|
|
1502
|
+
"safe_default": "diagnostic-with-bridge-obligation",
|
|
1503
|
+
"schema_ref": "core.ExternalProofObligation",
|
|
1504
|
+
"schema_refs": [
|
|
1505
|
+
"core.ExternalProofObligation"
|
|
1506
|
+
],
|
|
1507
|
+
"verifier_contract": {
|
|
1508
|
+
"input": "ExternalProofObligation plus domain evidence matching accepted_evidence_kind",
|
|
1509
|
+
"output": "ExternalVerifierHook with accepted/rejected obligation ids",
|
|
1510
|
+
"promotion_rule": "accepted hooks may discharge obligations but cannot bypass finite checker status derivation"
|
|
1511
|
+
},
|
|
1512
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
1513
|
+
}
|
|
1514
|
+
],
|
|
1515
|
+
"verifier_route_summary": {
|
|
1516
|
+
"core.adapters.envelope.verify_finite_bound": 2,
|
|
1517
|
+
"ecpt.adapters.bridge.verify_cross_theory_bridge": 6,
|
|
1518
|
+
"ecpt.adapters.ecology.verify_domain_abstraction": 3,
|
|
1519
|
+
"ecpt.adapters.generators.verify_limit_envelope": 5,
|
|
1520
|
+
"ecpt.adapters.policy.verify_execution_policy": 6,
|
|
1521
|
+
"ecpt.adapters.proxy.verify_target_contract": 3,
|
|
1522
|
+
"ecpt.adapters.speculative.verify_channel_and_repair": 4,
|
|
1523
|
+
"ecpt.adapters.trace_complex.verify_diagnostic_projection": 1
|
|
1524
|
+
}
|
|
1525
|
+
},
|
|
1526
|
+
"external_obligation_category_summary": {
|
|
1527
|
+
"ecpt-bridge-reserve": 6,
|
|
1528
|
+
"ecpt-ecology-ontology": 3,
|
|
1529
|
+
"ecpt-economics-policy": 6,
|
|
1530
|
+
"ecpt-generator-limit": 5,
|
|
1531
|
+
"ecpt-proxy-target": 3,
|
|
1532
|
+
"ecpt-speculative-channel": 4,
|
|
1533
|
+
"ecpt-trace-diagnostic": 1,
|
|
1534
|
+
"numerical-envelope": 2
|
|
1535
|
+
},
|
|
1536
|
+
"external_verifier_route_summary": {
|
|
1537
|
+
"core.adapters.envelope.verify_finite_bound": 2,
|
|
1538
|
+
"ecpt.adapters.bridge.verify_cross_theory_bridge": 6,
|
|
1539
|
+
"ecpt.adapters.ecology.verify_domain_abstraction": 3,
|
|
1540
|
+
"ecpt.adapters.generators.verify_limit_envelope": 5,
|
|
1541
|
+
"ecpt.adapters.policy.verify_execution_policy": 6,
|
|
1542
|
+
"ecpt.adapters.proxy.verify_target_contract": 3,
|
|
1543
|
+
"ecpt.adapters.speculative.verify_channel_and_repair": 4,
|
|
1544
|
+
"ecpt.adapters.trace_complex.verify_diagnostic_projection": 1
|
|
1545
|
+
},
|
|
1546
|
+
"item_mappings": [
|
|
1547
|
+
{
|
|
1548
|
+
"coverage_status": "implemented_schema",
|
|
1549
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1550
|
+
"implementation_refs": [
|
|
1551
|
+
"ecpt.ObservationProtocol"
|
|
1552
|
+
],
|
|
1553
|
+
"item_id": "definition:1",
|
|
1554
|
+
"label": "Observation protocol",
|
|
1555
|
+
"obligation_category": null,
|
|
1556
|
+
"verifier_route": null
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
"coverage_status": "implemented_checker",
|
|
1560
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1561
|
+
"implementation_refs": [
|
|
1562
|
+
"ecpt.ConstraintFrame"
|
|
1563
|
+
],
|
|
1564
|
+
"item_id": "definition:2",
|
|
1565
|
+
"label": "Constraint frame",
|
|
1566
|
+
"obligation_category": null,
|
|
1567
|
+
"verifier_route": null
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"coverage_status": "implemented_schema",
|
|
1571
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1572
|
+
"implementation_refs": [
|
|
1573
|
+
"ecpt.DiagnosticOrder"
|
|
1574
|
+
],
|
|
1575
|
+
"item_id": "definition:3",
|
|
1576
|
+
"label": "Diagnostic order",
|
|
1577
|
+
"obligation_category": null,
|
|
1578
|
+
"verifier_route": null
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"coverage_status": "implemented_checker",
|
|
1582
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1583
|
+
"implementation_refs": [
|
|
1584
|
+
"ecpt.check_admissibility_grade"
|
|
1585
|
+
],
|
|
1586
|
+
"item_id": "definition:4",
|
|
1587
|
+
"label": "Admissibility grade",
|
|
1588
|
+
"obligation_category": null,
|
|
1589
|
+
"verifier_route": null
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"coverage_status": "implemented_schema",
|
|
1593
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1594
|
+
"implementation_refs": [
|
|
1595
|
+
"core.CertificateShell"
|
|
1596
|
+
],
|
|
1597
|
+
"item_id": "definition:5",
|
|
1598
|
+
"label": "Operable certificate shell",
|
|
1599
|
+
"obligation_category": null,
|
|
1600
|
+
"verifier_route": null
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
"coverage_status": "implemented_schema",
|
|
1604
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1605
|
+
"implementation_refs": [
|
|
1606
|
+
"ecpt.TargetValidityStatus"
|
|
1607
|
+
],
|
|
1608
|
+
"item_id": "definition:6",
|
|
1609
|
+
"label": "Target-validity status",
|
|
1610
|
+
"obligation_category": null,
|
|
1611
|
+
"verifier_route": null
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
"coverage_status": "implemented_schema",
|
|
1615
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1616
|
+
"implementation_refs": [
|
|
1617
|
+
"ecpt.ObservationProtocol"
|
|
1618
|
+
],
|
|
1619
|
+
"item_id": "definition:7",
|
|
1620
|
+
"label": "Baseline protocol",
|
|
1621
|
+
"obligation_category": null,
|
|
1622
|
+
"verifier_route": null
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"coverage_status": "implemented_checker",
|
|
1626
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1627
|
+
"implementation_refs": [
|
|
1628
|
+
"ecpt.check_protocol_functor_certificate"
|
|
1629
|
+
],
|
|
1630
|
+
"item_id": "definition:8",
|
|
1631
|
+
"label": "Protocol functor and ontology-extension certificate",
|
|
1632
|
+
"obligation_category": null,
|
|
1633
|
+
"verifier_route": null
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"coverage_status": "implemented_checker",
|
|
1637
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1638
|
+
"implementation_refs": [
|
|
1639
|
+
"ecpt.check_protocol_functor_certificate"
|
|
1640
|
+
],
|
|
1641
|
+
"item_id": "prop:protocol-functor-soundness",
|
|
1642
|
+
"label": "Protocol-functor soundness",
|
|
1643
|
+
"obligation_category": null,
|
|
1644
|
+
"verifier_route": null
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
"coverage_status": "implemented_checker",
|
|
1648
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1649
|
+
"implementation_refs": [
|
|
1650
|
+
"ecpt.check_finite_phase_control_certificate"
|
|
1651
|
+
],
|
|
1652
|
+
"item_id": "def:phase-control-system",
|
|
1653
|
+
"label": "Finite and thermodynamic phase-control system",
|
|
1654
|
+
"obligation_category": null,
|
|
1655
|
+
"verifier_route": null
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
"coverage_status": "implemented_checker",
|
|
1659
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1660
|
+
"implementation_refs": [
|
|
1661
|
+
"ecpt.check_phase_control_envelope"
|
|
1662
|
+
],
|
|
1663
|
+
"item_id": "definition:10",
|
|
1664
|
+
"label": "Control surface and phase response",
|
|
1665
|
+
"obligation_category": null,
|
|
1666
|
+
"verifier_route": null
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"coverage_status": "implemented_schema",
|
|
1670
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1671
|
+
"implementation_refs": [
|
|
1672
|
+
"ecpt.CapabilityPacket"
|
|
1673
|
+
],
|
|
1674
|
+
"item_id": "definition:11",
|
|
1675
|
+
"label": "Capability packet",
|
|
1676
|
+
"obligation_category": null,
|
|
1677
|
+
"verifier_route": null
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
"coverage_status": "implemented_checker",
|
|
1681
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1682
|
+
"implementation_refs": [
|
|
1683
|
+
"ecpt.check_capability_state_vector"
|
|
1684
|
+
],
|
|
1685
|
+
"item_id": "definition:12",
|
|
1686
|
+
"label": "Capability-state vector",
|
|
1687
|
+
"obligation_category": null,
|
|
1688
|
+
"verifier_route": null
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
"coverage_status": "implemented_schema",
|
|
1692
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1693
|
+
"implementation_refs": [
|
|
1694
|
+
"ecpt.FiniteTraceLaw"
|
|
1695
|
+
],
|
|
1696
|
+
"item_id": "definition:13",
|
|
1697
|
+
"label": "Finite trace law",
|
|
1698
|
+
"obligation_category": null,
|
|
1699
|
+
"verifier_route": null
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"coverage_status": "implemented_constructive",
|
|
1703
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1704
|
+
"implementation_refs": [
|
|
1705
|
+
"ecpt.split_certified_quotient_error"
|
|
1706
|
+
],
|
|
1707
|
+
"item_id": "def:variational-relaxation-quotient",
|
|
1708
|
+
"label": "Split-certified empirical quotient",
|
|
1709
|
+
"obligation_category": null,
|
|
1710
|
+
"verifier_route": null
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"coverage_status": "implemented_constructive",
|
|
1714
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1715
|
+
"implementation_refs": [
|
|
1716
|
+
"ecpt.split_certified_quotient_error"
|
|
1717
|
+
],
|
|
1718
|
+
"item_id": "proposition:2",
|
|
1719
|
+
"label": "Finite quotient construction interface",
|
|
1720
|
+
"obligation_category": null,
|
|
1721
|
+
"verifier_route": null
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"coverage_status": "external_obligation",
|
|
1725
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1726
|
+
"implementation_refs": [
|
|
1727
|
+
"core.ExternalProofObligation"
|
|
1728
|
+
],
|
|
1729
|
+
"item_id": "definition:15",
|
|
1730
|
+
"label": "Auxiliary trace-complex diagnostic",
|
|
1731
|
+
"obligation_category": "ecpt-trace-diagnostic",
|
|
1732
|
+
"verifier_route": "ecpt.adapters.trace_complex.verify_diagnostic_projection"
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
"coverage_status": "implemented_checker",
|
|
1736
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1737
|
+
"implementation_refs": [
|
|
1738
|
+
"ecpt.check_capability_state_vector"
|
|
1739
|
+
],
|
|
1740
|
+
"item_id": "definition:16",
|
|
1741
|
+
"label": "Empirical relaxed density and duplicate mass",
|
|
1742
|
+
"obligation_category": null,
|
|
1743
|
+
"verifier_route": null
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"coverage_status": "implemented_constructive",
|
|
1747
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1748
|
+
"implementation_refs": [
|
|
1749
|
+
"ecpt.split_certified_quotient_error"
|
|
1750
|
+
],
|
|
1751
|
+
"item_id": "def:boundary-aware-quotient",
|
|
1752
|
+
"label": "Split-certified boundary-aware quotient witness",
|
|
1753
|
+
"obligation_category": null,
|
|
1754
|
+
"verifier_route": null
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"coverage_status": "external_obligation",
|
|
1758
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1759
|
+
"implementation_refs": [
|
|
1760
|
+
"core.ExternalProofObligation"
|
|
1761
|
+
],
|
|
1762
|
+
"item_id": "definition:18",
|
|
1763
|
+
"label": "Accumulation, availability, liquidity, and execution availability",
|
|
1764
|
+
"obligation_category": "ecpt-economics-policy",
|
|
1765
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"coverage_status": "implemented_constructive",
|
|
1769
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1770
|
+
"implementation_refs": [
|
|
1771
|
+
"ecpt.split_certified_quotient_error"
|
|
1772
|
+
],
|
|
1773
|
+
"item_id": "thm:boundary-aware-quotient",
|
|
1774
|
+
"label": "Split-certified boundary-aware quotient error",
|
|
1775
|
+
"obligation_category": null,
|
|
1776
|
+
"verifier_route": null
|
|
1777
|
+
},
|
|
1778
|
+
{
|
|
1779
|
+
"coverage_status": "implemented_checker",
|
|
1780
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1781
|
+
"implementation_refs": [
|
|
1782
|
+
"ecpt.check_capability_state_vector"
|
|
1783
|
+
],
|
|
1784
|
+
"item_id": "lem:no-probabilistic-duplicate-inflation",
|
|
1785
|
+
"label": "No probabilistic duplicate inflation",
|
|
1786
|
+
"obligation_category": null,
|
|
1787
|
+
"verifier_route": null
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"coverage_status": "implemented_checker",
|
|
1791
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1792
|
+
"implementation_refs": [
|
|
1793
|
+
"ecpt.check_packet_atlas"
|
|
1794
|
+
],
|
|
1795
|
+
"item_id": "definition:19",
|
|
1796
|
+
"label": "Stratified statistical packet atlas",
|
|
1797
|
+
"obligation_category": null,
|
|
1798
|
+
"verifier_route": null
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
"coverage_status": "implemented_checker",
|
|
1802
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1803
|
+
"implementation_refs": [
|
|
1804
|
+
"ecpt.check_information_projection_quotient"
|
|
1805
|
+
],
|
|
1806
|
+
"item_id": "definition:20",
|
|
1807
|
+
"label": "Stratified information-projection quotient",
|
|
1808
|
+
"obligation_category": null,
|
|
1809
|
+
"verifier_route": null
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"coverage_status": "implemented_checker",
|
|
1813
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1814
|
+
"implementation_refs": [
|
|
1815
|
+
"ecpt.check_information_projection_quotient"
|
|
1816
|
+
],
|
|
1817
|
+
"item_id": "prop:information-projection-distortion",
|
|
1818
|
+
"label": "Stratified information-projection distortion",
|
|
1819
|
+
"obligation_category": null,
|
|
1820
|
+
"verifier_route": null
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"coverage_status": "implemented_schema",
|
|
1824
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1825
|
+
"implementation_refs": [
|
|
1826
|
+
"ecpt.CapabilityPacket"
|
|
1827
|
+
],
|
|
1828
|
+
"item_id": "definition:21",
|
|
1829
|
+
"label": "Capability packet hypergraph",
|
|
1830
|
+
"obligation_category": null,
|
|
1831
|
+
"verifier_route": null
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
"coverage_status": "implemented_schema",
|
|
1835
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1836
|
+
"implementation_refs": [
|
|
1837
|
+
"ecpt.CapabilityEdge"
|
|
1838
|
+
],
|
|
1839
|
+
"item_id": "definition:22",
|
|
1840
|
+
"label": "Edge types",
|
|
1841
|
+
"obligation_category": null,
|
|
1842
|
+
"verifier_route": null
|
|
1843
|
+
},
|
|
1844
|
+
{
|
|
1845
|
+
"coverage_status": "implemented_checker",
|
|
1846
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1847
|
+
"implementation_refs": [
|
|
1848
|
+
"ecpt.check_constraint_frame"
|
|
1849
|
+
],
|
|
1850
|
+
"item_id": "definition:23",
|
|
1851
|
+
"label": "Hard-domain edge",
|
|
1852
|
+
"obligation_category": null,
|
|
1853
|
+
"verifier_route": null
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"coverage_status": "implemented_checker",
|
|
1857
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1858
|
+
"implementation_refs": [
|
|
1859
|
+
"ecpt.check_activation_threshold_certificate"
|
|
1860
|
+
],
|
|
1861
|
+
"item_id": "def:free-energy-activation",
|
|
1862
|
+
"label": "Global free-energy activation problem",
|
|
1863
|
+
"obligation_category": null,
|
|
1864
|
+
"verifier_route": null
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
"coverage_status": "implemented_checker",
|
|
1868
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1869
|
+
"implementation_refs": [
|
|
1870
|
+
"ecpt.check_activation_threshold_certificate"
|
|
1871
|
+
],
|
|
1872
|
+
"item_id": "prop:free-energy-activation-optimality",
|
|
1873
|
+
"label": "Global free-energy activation optimality",
|
|
1874
|
+
"obligation_category": null,
|
|
1875
|
+
"verifier_route": null
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
"coverage_status": "implemented_checker",
|
|
1879
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1880
|
+
"implementation_refs": [
|
|
1881
|
+
"ecpt.check_activation_construction"
|
|
1882
|
+
],
|
|
1883
|
+
"item_id": "def:activation-construction",
|
|
1884
|
+
"label": "Activation construction certificate",
|
|
1885
|
+
"obligation_category": null,
|
|
1886
|
+
"verifier_route": null
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
"coverage_status": "implemented_constructive",
|
|
1890
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1891
|
+
"implementation_refs": [
|
|
1892
|
+
"ecpt.finite_gibbs_phase_response"
|
|
1893
|
+
],
|
|
1894
|
+
"item_id": "thm:finite-gibbs-phase-response",
|
|
1895
|
+
"label": "Finite Gibbs phase-response",
|
|
1896
|
+
"obligation_category": null,
|
|
1897
|
+
"verifier_route": null
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"coverage_status": "implemented_checker",
|
|
1901
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1902
|
+
"implementation_refs": [
|
|
1903
|
+
"ecpt.check_phase_control_envelope"
|
|
1904
|
+
],
|
|
1905
|
+
"item_id": "def:phase-response-control-step",
|
|
1906
|
+
"label": "Certified phase-response control step",
|
|
1907
|
+
"obligation_category": null,
|
|
1908
|
+
"verifier_route": null
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
"coverage_status": "implemented_constructive",
|
|
1912
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1913
|
+
"implementation_refs": [
|
|
1914
|
+
"ecpt.finite_gibbs_phase_response"
|
|
1915
|
+
],
|
|
1916
|
+
"item_id": "thm:finite-gibbs-response-control",
|
|
1917
|
+
"label": "Finite Gibbs response-control improvement",
|
|
1918
|
+
"obligation_category": null,
|
|
1919
|
+
"verifier_route": null
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"coverage_status": "implemented_checker",
|
|
1923
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1924
|
+
"implementation_refs": [
|
|
1925
|
+
"ecpt.check_path_law_policy"
|
|
1926
|
+
],
|
|
1927
|
+
"item_id": "def:response-policy-certificate",
|
|
1928
|
+
"label": "Constructed path-law response policy certificate",
|
|
1929
|
+
"obligation_category": null,
|
|
1930
|
+
"verifier_route": null
|
|
1931
|
+
},
|
|
1932
|
+
{
|
|
1933
|
+
"coverage_status": "implemented_checker",
|
|
1934
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1935
|
+
"implementation_refs": [
|
|
1936
|
+
"ecpt.check_path_law_policy"
|
|
1937
|
+
],
|
|
1938
|
+
"item_id": "thm:response-policy-improvement",
|
|
1939
|
+
"label": "Constructed path-law response-policy improvement",
|
|
1940
|
+
"obligation_category": null,
|
|
1941
|
+
"verifier_route": null
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
"coverage_status": "implemented_checker",
|
|
1945
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1946
|
+
"implementation_refs": [
|
|
1947
|
+
"ecpt.check_activation_threshold_certificate"
|
|
1948
|
+
],
|
|
1949
|
+
"item_id": "definition:28",
|
|
1950
|
+
"label": "Activation field",
|
|
1951
|
+
"obligation_category": null,
|
|
1952
|
+
"verifier_route": null
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
"coverage_status": "implemented_constructive",
|
|
1956
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1957
|
+
"implementation_refs": [
|
|
1958
|
+
"ecpt.reachable_mass"
|
|
1959
|
+
],
|
|
1960
|
+
"item_id": "definition:29",
|
|
1961
|
+
"label": "Activated closure law",
|
|
1962
|
+
"obligation_category": null,
|
|
1963
|
+
"verifier_route": null
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"coverage_status": "implemented_constructive",
|
|
1967
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1968
|
+
"implementation_refs": [
|
|
1969
|
+
"ecpt.reachable_mass"
|
|
1970
|
+
],
|
|
1971
|
+
"item_id": "definition:30",
|
|
1972
|
+
"label": "Execution-available hyperpath",
|
|
1973
|
+
"obligation_category": null,
|
|
1974
|
+
"verifier_route": null
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
"coverage_status": "external_obligation",
|
|
1978
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1979
|
+
"implementation_refs": [
|
|
1980
|
+
"core.ExternalProofObligation"
|
|
1981
|
+
],
|
|
1982
|
+
"item_id": "definition:31",
|
|
1983
|
+
"label": "Speculative execution channel",
|
|
1984
|
+
"obligation_category": "ecpt-speculative-channel",
|
|
1985
|
+
"verifier_route": "ecpt.adapters.speculative.verify_channel_and_repair"
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"coverage_status": "implemented_checker",
|
|
1989
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
1990
|
+
"implementation_refs": [
|
|
1991
|
+
"ecpt.check_cycle_monitor"
|
|
1992
|
+
],
|
|
1993
|
+
"item_id": "definition:32",
|
|
1994
|
+
"label": "Seed and cyclic support",
|
|
1995
|
+
"obligation_category": null,
|
|
1996
|
+
"verifier_route": null
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
"coverage_status": "implemented_checker",
|
|
2000
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2001
|
+
"implementation_refs": [
|
|
2002
|
+
"ecpt.check_queue_certificate"
|
|
2003
|
+
],
|
|
2004
|
+
"item_id": "definition:33",
|
|
2005
|
+
"label": "Queue layer",
|
|
2006
|
+
"obligation_category": null,
|
|
2007
|
+
"verifier_route": null
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
"coverage_status": "implemented_schema",
|
|
2011
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2012
|
+
"implementation_refs": [
|
|
2013
|
+
"ecpt.CapabilityHypergraph"
|
|
2014
|
+
],
|
|
2015
|
+
"item_id": "definition:34",
|
|
2016
|
+
"label": "Effective packet hypergraph",
|
|
2017
|
+
"obligation_category": null,
|
|
2018
|
+
"verifier_route": null
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
"coverage_status": "implemented_schema",
|
|
2022
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2023
|
+
"implementation_refs": [
|
|
2024
|
+
"ecpt.DiagnosticOrder"
|
|
2025
|
+
],
|
|
2026
|
+
"item_id": "definition:35",
|
|
2027
|
+
"label": "Waste, false liquidity, obstruction, and paralysis",
|
|
2028
|
+
"obligation_category": null,
|
|
2029
|
+
"verifier_route": null
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"coverage_status": "implemented_checker",
|
|
2033
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2034
|
+
"implementation_refs": [
|
|
2035
|
+
"ecpt.check_inner_viability_kernel"
|
|
2036
|
+
],
|
|
2037
|
+
"item_id": "definition:36",
|
|
2038
|
+
"label": "Constraint viability band",
|
|
2039
|
+
"obligation_category": null,
|
|
2040
|
+
"verifier_route": null
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"coverage_status": "implemented_checker",
|
|
2044
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2045
|
+
"implementation_refs": [
|
|
2046
|
+
"ecpt.check_constraint_frame"
|
|
2047
|
+
],
|
|
2048
|
+
"item_id": "prop:constraint-band-requirement",
|
|
2049
|
+
"label": "Constraint-band requirement",
|
|
2050
|
+
"obligation_category": null,
|
|
2051
|
+
"verifier_route": null
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"coverage_status": "external_obligation",
|
|
2055
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2056
|
+
"implementation_refs": [
|
|
2057
|
+
"core.ExternalProofObligation"
|
|
2058
|
+
],
|
|
2059
|
+
"item_id": "definition:37",
|
|
2060
|
+
"label": "Concrete ecology semantics",
|
|
2061
|
+
"obligation_category": "ecpt-ecology-ontology",
|
|
2062
|
+
"verifier_route": "ecpt.adapters.ecology.verify_domain_abstraction"
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
"coverage_status": "external_obligation",
|
|
2066
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2067
|
+
"implementation_refs": [
|
|
2068
|
+
"core.ExternalProofObligation"
|
|
2069
|
+
],
|
|
2070
|
+
"item_id": "definition:38",
|
|
2071
|
+
"label": "Sound finite abstraction",
|
|
2072
|
+
"obligation_category": "ecpt-ecology-ontology",
|
|
2073
|
+
"verifier_route": "ecpt.adapters.ecology.verify_domain_abstraction"
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"coverage_status": "external_obligation",
|
|
2077
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2078
|
+
"implementation_refs": [
|
|
2079
|
+
"core.ExternalProofObligation"
|
|
2080
|
+
],
|
|
2081
|
+
"item_id": "prop:abstraction-soundness",
|
|
2082
|
+
"label": "Abstraction soundness",
|
|
2083
|
+
"obligation_category": "ecpt-ecology-ontology",
|
|
2084
|
+
"verifier_route": "ecpt.adapters.ecology.verify_domain_abstraction"
|
|
2085
|
+
},
|
|
2086
|
+
{
|
|
2087
|
+
"coverage_status": "implemented_checker",
|
|
2088
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2089
|
+
"implementation_refs": [
|
|
2090
|
+
"ecpt.check_capability_state_vector"
|
|
2091
|
+
],
|
|
2092
|
+
"item_id": "definition:39",
|
|
2093
|
+
"label": "ECPT state",
|
|
2094
|
+
"obligation_category": null,
|
|
2095
|
+
"verifier_route": null
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
"coverage_status": "implemented_checker",
|
|
2099
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2100
|
+
"implementation_refs": [
|
|
2101
|
+
"ecpt.check_inner_viability_kernel"
|
|
2102
|
+
],
|
|
2103
|
+
"item_id": "definition:40",
|
|
2104
|
+
"label": "Local viability set",
|
|
2105
|
+
"obligation_category": null,
|
|
2106
|
+
"verifier_route": null
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
"coverage_status": "implemented_schema",
|
|
2110
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2111
|
+
"implementation_refs": [
|
|
2112
|
+
"ecpt.ActionGrammar"
|
|
2113
|
+
],
|
|
2114
|
+
"item_id": "definition:41",
|
|
2115
|
+
"label": "Action grammar",
|
|
2116
|
+
"obligation_category": null,
|
|
2117
|
+
"verifier_route": null
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
"coverage_status": "implemented_schema",
|
|
2121
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2122
|
+
"implementation_refs": [
|
|
2123
|
+
"ecpt.PostconditionObligation"
|
|
2124
|
+
],
|
|
2125
|
+
"item_id": "definition:42",
|
|
2126
|
+
"label": "Postcondition obligations",
|
|
2127
|
+
"obligation_category": null,
|
|
2128
|
+
"verifier_route": null
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"coverage_status": "implemented_checker",
|
|
2132
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2133
|
+
"implementation_refs": [
|
|
2134
|
+
"ecpt.check_controlled_transition"
|
|
2135
|
+
],
|
|
2136
|
+
"item_id": "definition:43",
|
|
2137
|
+
"label": "Operable action correspondence",
|
|
2138
|
+
"obligation_category": null,
|
|
2139
|
+
"verifier_route": null
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"coverage_status": "implemented_checker",
|
|
2143
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2144
|
+
"implementation_refs": [
|
|
2145
|
+
"ecpt.check_controlled_transition"
|
|
2146
|
+
],
|
|
2147
|
+
"item_id": "definition:44",
|
|
2148
|
+
"label": "Controlled transition",
|
|
2149
|
+
"obligation_category": null,
|
|
2150
|
+
"verifier_route": null
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
"coverage_status": "implemented_checker",
|
|
2154
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2155
|
+
"implementation_refs": [
|
|
2156
|
+
"ecpt.check_inner_viability_kernel"
|
|
2157
|
+
],
|
|
2158
|
+
"item_id": "definition:45",
|
|
2159
|
+
"label": "Exact and inner viability kernels",
|
|
2160
|
+
"obligation_category": null,
|
|
2161
|
+
"verifier_route": null
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"coverage_status": "implemented_checker",
|
|
2165
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2166
|
+
"implementation_refs": [
|
|
2167
|
+
"ecpt.check_inner_viability_kernel"
|
|
2168
|
+
],
|
|
2169
|
+
"item_id": "prop:inner-kernel-invariance",
|
|
2170
|
+
"label": "Inner-kernel invariance",
|
|
2171
|
+
"obligation_category": null,
|
|
2172
|
+
"verifier_route": null
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
"coverage_status": "implemented_constructive",
|
|
2176
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2177
|
+
"implementation_refs": [
|
|
2178
|
+
"ecpt.self_normalized_margin_risk"
|
|
2179
|
+
],
|
|
2180
|
+
"item_id": "definition:46",
|
|
2181
|
+
"label": "Self-normalized margin witness",
|
|
2182
|
+
"obligation_category": null,
|
|
2183
|
+
"verifier_route": null
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
"coverage_status": "implemented_checker",
|
|
2187
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2188
|
+
"implementation_refs": [
|
|
2189
|
+
"trc.check_risk_gate"
|
|
2190
|
+
],
|
|
2191
|
+
"item_id": "definition:47",
|
|
2192
|
+
"label": "Risk margin process",
|
|
2193
|
+
"obligation_category": null,
|
|
2194
|
+
"verifier_route": null
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
"coverage_status": "implemented_checker",
|
|
2198
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2199
|
+
"implementation_refs": [
|
|
2200
|
+
"trc.check_risk_gate"
|
|
2201
|
+
],
|
|
2202
|
+
"item_id": "thm:self-normalized-margin-risk",
|
|
2203
|
+
"label": "Self-normalized margin risk",
|
|
2204
|
+
"obligation_category": null,
|
|
2205
|
+
"verifier_route": null
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"coverage_status": "external_obligation",
|
|
2209
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2210
|
+
"implementation_refs": [
|
|
2211
|
+
"core.ExternalProofObligation"
|
|
2212
|
+
],
|
|
2213
|
+
"item_id": "cor:light-tail-exponential-witness",
|
|
2214
|
+
"label": "Light-tail exponential witness",
|
|
2215
|
+
"obligation_category": "numerical-envelope",
|
|
2216
|
+
"verifier_route": "core.adapters.envelope.verify_finite_bound"
|
|
2217
|
+
},
|
|
2218
|
+
{
|
|
2219
|
+
"coverage_status": "external_obligation",
|
|
2220
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2221
|
+
"implementation_refs": [
|
|
2222
|
+
"core.ExternalProofObligation"
|
|
2223
|
+
],
|
|
2224
|
+
"item_id": "definition:48",
|
|
2225
|
+
"label": "Natural accelerator policy",
|
|
2226
|
+
"obligation_category": "ecpt-economics-policy",
|
|
2227
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
"coverage_status": "implemented_schema",
|
|
2231
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2232
|
+
"implementation_refs": [
|
|
2233
|
+
"trc.ExecutableTraceNormalForm"
|
|
2234
|
+
],
|
|
2235
|
+
"item_id": "prop:typed-trace-accounting",
|
|
2236
|
+
"label": "Typed trace accounting",
|
|
2237
|
+
"obligation_category": null,
|
|
2238
|
+
"verifier_route": null
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"coverage_status": "external_obligation",
|
|
2242
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2243
|
+
"implementation_refs": [
|
|
2244
|
+
"core.ExternalProofObligation"
|
|
2245
|
+
],
|
|
2246
|
+
"item_id": "definition:49",
|
|
2247
|
+
"label": "Search-friction ledger",
|
|
2248
|
+
"obligation_category": "ecpt-economics-policy",
|
|
2249
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
2250
|
+
},
|
|
2251
|
+
{
|
|
2252
|
+
"coverage_status": "external_obligation",
|
|
2253
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2254
|
+
"implementation_refs": [
|
|
2255
|
+
"core.ExternalProofObligation"
|
|
2256
|
+
],
|
|
2257
|
+
"item_id": "definition:50",
|
|
2258
|
+
"label": "Friction-adjusted action value",
|
|
2259
|
+
"obligation_category": "ecpt-economics-policy",
|
|
2260
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
"coverage_status": "external_obligation",
|
|
2264
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2265
|
+
"implementation_refs": [
|
|
2266
|
+
"core.ExternalProofObligation"
|
|
2267
|
+
],
|
|
2268
|
+
"item_id": "lem:evsi-admission",
|
|
2269
|
+
"label": "EVSI admission",
|
|
2270
|
+
"obligation_category": "ecpt-economics-policy",
|
|
2271
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"coverage_status": "external_obligation",
|
|
2275
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2276
|
+
"implementation_refs": [
|
|
2277
|
+
"core.ExternalProofObligation"
|
|
2278
|
+
],
|
|
2279
|
+
"item_id": "definition:51",
|
|
2280
|
+
"label": "Proxy bundle",
|
|
2281
|
+
"obligation_category": "ecpt-proxy-target",
|
|
2282
|
+
"verifier_route": "ecpt.adapters.proxy.verify_target_contract"
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"coverage_status": "external_obligation",
|
|
2286
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2287
|
+
"implementation_refs": [
|
|
2288
|
+
"core.ExternalProofObligation"
|
|
2289
|
+
],
|
|
2290
|
+
"item_id": "definition:52",
|
|
2291
|
+
"label": "ECPT target",
|
|
2292
|
+
"obligation_category": "ecpt-proxy-target",
|
|
2293
|
+
"verifier_route": "ecpt.adapters.proxy.verify_target_contract"
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"coverage_status": "implemented_constructive",
|
|
2297
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2298
|
+
"implementation_refs": [
|
|
2299
|
+
"ecpt.hitting_time_acceleration"
|
|
2300
|
+
],
|
|
2301
|
+
"item_id": "definition:53",
|
|
2302
|
+
"label": "Target hitting time",
|
|
2303
|
+
"obligation_category": null,
|
|
2304
|
+
"verifier_route": null
|
|
2305
|
+
},
|
|
2306
|
+
{
|
|
2307
|
+
"coverage_status": "external_obligation",
|
|
2308
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2309
|
+
"implementation_refs": [
|
|
2310
|
+
"core.ExternalProofObligation"
|
|
2311
|
+
],
|
|
2312
|
+
"item_id": "definition:54",
|
|
2313
|
+
"label": "Protocol-competitive target acceleration",
|
|
2314
|
+
"obligation_category": "ecpt-proxy-target",
|
|
2315
|
+
"verifier_route": "ecpt.adapters.proxy.verify_target_contract"
|
|
2316
|
+
},
|
|
2317
|
+
{
|
|
2318
|
+
"coverage_status": "implemented_constructive",
|
|
2319
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2320
|
+
"implementation_refs": [
|
|
2321
|
+
"ecpt.hitting_time_acceleration"
|
|
2322
|
+
],
|
|
2323
|
+
"item_id": "prop:hitting-time-acceleration",
|
|
2324
|
+
"label": "Hitting-time acceleration certificate",
|
|
2325
|
+
"obligation_category": null,
|
|
2326
|
+
"verifier_route": null
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"coverage_status": "implemented_schema",
|
|
2330
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2331
|
+
"implementation_refs": [
|
|
2332
|
+
"core.FrontierRecord"
|
|
2333
|
+
],
|
|
2334
|
+
"item_id": "definition:55",
|
|
2335
|
+
"label": "Certified value vector",
|
|
2336
|
+
"obligation_category": null,
|
|
2337
|
+
"verifier_route": null
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"coverage_status": "implemented_constructive",
|
|
2341
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2342
|
+
"implementation_refs": [
|
|
2343
|
+
"core.pareto_frontier"
|
|
2344
|
+
],
|
|
2345
|
+
"item_id": "definition:56",
|
|
2346
|
+
"label": "Pareto frontier recursion",
|
|
2347
|
+
"obligation_category": null,
|
|
2348
|
+
"verifier_route": null
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
"coverage_status": "implemented_constructive",
|
|
2352
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2353
|
+
"implementation_refs": [
|
|
2354
|
+
"core.pareto_frontier"
|
|
2355
|
+
],
|
|
2356
|
+
"item_id": "prop:pareto-operability",
|
|
2357
|
+
"label": "Pareto operability",
|
|
2358
|
+
"obligation_category": null,
|
|
2359
|
+
"verifier_route": null
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
"coverage_status": "external_obligation",
|
|
2363
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2364
|
+
"implementation_refs": [
|
|
2365
|
+
"core.ExternalProofObligation"
|
|
2366
|
+
],
|
|
2367
|
+
"item_id": "definition:57",
|
|
2368
|
+
"label": "Paralysis and repair route",
|
|
2369
|
+
"obligation_category": "ecpt-speculative-channel",
|
|
2370
|
+
"verifier_route": "ecpt.adapters.speculative.verify_channel_and_repair"
|
|
2371
|
+
},
|
|
2372
|
+
{
|
|
2373
|
+
"coverage_status": "implemented_constructive",
|
|
2374
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2375
|
+
"implementation_refs": [
|
|
2376
|
+
"core.pareto_frontier"
|
|
2377
|
+
],
|
|
2378
|
+
"item_id": "prop:pareto-empty-suspension",
|
|
2379
|
+
"label": "Pareto-empty suspension",
|
|
2380
|
+
"obligation_category": null,
|
|
2381
|
+
"verifier_route": null
|
|
2382
|
+
},
|
|
2383
|
+
{
|
|
2384
|
+
"coverage_status": "external_obligation",
|
|
2385
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2386
|
+
"implementation_refs": [
|
|
2387
|
+
"core.ExternalProofObligation"
|
|
2388
|
+
],
|
|
2389
|
+
"item_id": "cor:scalar-bellman",
|
|
2390
|
+
"label": "Scalar Bellman interface",
|
|
2391
|
+
"obligation_category": "ecpt-generator-limit",
|
|
2392
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
"coverage_status": "implemented_checker",
|
|
2396
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2397
|
+
"implementation_refs": [
|
|
2398
|
+
"core.ProjectionAudit"
|
|
2399
|
+
],
|
|
2400
|
+
"item_id": "prop:raw-relaxed-separation",
|
|
2401
|
+
"label": "Raw-relaxed separation",
|
|
2402
|
+
"obligation_category": null,
|
|
2403
|
+
"verifier_route": null
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
"coverage_status": "implemented_checker",
|
|
2407
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2408
|
+
"implementation_refs": [
|
|
2409
|
+
"core.MonotoneMap"
|
|
2410
|
+
],
|
|
2411
|
+
"item_id": "prop:friction-charged-monotone-intervention",
|
|
2412
|
+
"label": "Friction-charged monotone intervention",
|
|
2413
|
+
"obligation_category": null,
|
|
2414
|
+
"verifier_route": null
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
"coverage_status": "external_obligation",
|
|
2418
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2419
|
+
"implementation_refs": [
|
|
2420
|
+
"core.ExternalProofObligation"
|
|
2421
|
+
],
|
|
2422
|
+
"item_id": "def:markov-additive-raf",
|
|
2423
|
+
"label": "Speculative RAF with Markov additive debt",
|
|
2424
|
+
"obligation_category": "ecpt-generator-limit",
|
|
2425
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
"coverage_status": "implemented_checker",
|
|
2429
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2430
|
+
"implementation_refs": [
|
|
2431
|
+
"ecpt.check_cycle_monitor"
|
|
2432
|
+
],
|
|
2433
|
+
"item_id": "definition:59",
|
|
2434
|
+
"label": "Cycle monitor and stopped runtime certificate",
|
|
2435
|
+
"obligation_category": null,
|
|
2436
|
+
"verifier_route": null
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
"coverage_status": "implemented_checker",
|
|
2440
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2441
|
+
"implementation_refs": [
|
|
2442
|
+
"ecpt.check_settlement_return_raf_certificate"
|
|
2443
|
+
],
|
|
2444
|
+
"item_id": "def:debt-solvency-kernel",
|
|
2445
|
+
"label": "Settlement-return kernel",
|
|
2446
|
+
"obligation_category": null,
|
|
2447
|
+
"verifier_route": null
|
|
2448
|
+
},
|
|
2449
|
+
{
|
|
2450
|
+
"coverage_status": "implemented_checker",
|
|
2451
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2452
|
+
"implementation_refs": [
|
|
2453
|
+
"ecpt.check_settlement_return_raf_certificate"
|
|
2454
|
+
],
|
|
2455
|
+
"item_id": "def:settlement-event-algebra",
|
|
2456
|
+
"label": "Settlement-return event algebra",
|
|
2457
|
+
"obligation_category": null,
|
|
2458
|
+
"verifier_route": null
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
"coverage_status": "implemented_checker",
|
|
2462
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2463
|
+
"implementation_refs": [
|
|
2464
|
+
"ecpt.check_settlement_return_raf_certificate"
|
|
2465
|
+
],
|
|
2466
|
+
"item_id": "thm:debt-solvency-speculative-raf-emergence",
|
|
2467
|
+
"label": "Settlement-return speculative RAF emergence",
|
|
2468
|
+
"obligation_category": null,
|
|
2469
|
+
"verifier_route": null
|
|
2470
|
+
},
|
|
2471
|
+
{
|
|
2472
|
+
"coverage_status": "external_obligation",
|
|
2473
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2474
|
+
"implementation_refs": [
|
|
2475
|
+
"core.ExternalProofObligation"
|
|
2476
|
+
],
|
|
2477
|
+
"item_id": "definition:62",
|
|
2478
|
+
"label": "Sparse synergy and residual certificate",
|
|
2479
|
+
"obligation_category": "ecpt-speculative-channel",
|
|
2480
|
+
"verifier_route": "ecpt.adapters.speculative.verify_channel_and_repair"
|
|
2481
|
+
},
|
|
2482
|
+
{
|
|
2483
|
+
"coverage_status": "external_obligation",
|
|
2484
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2485
|
+
"implementation_refs": [
|
|
2486
|
+
"core.ExternalProofObligation"
|
|
2487
|
+
],
|
|
2488
|
+
"item_id": "prop:sparse-synergy-lower-bound",
|
|
2489
|
+
"label": "Sparse synergy lower bound",
|
|
2490
|
+
"obligation_category": "ecpt-speculative-channel",
|
|
2491
|
+
"verifier_route": "ecpt.adapters.speculative.verify_channel_and_repair"
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
"coverage_status": "implemented_checker",
|
|
2495
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2496
|
+
"implementation_refs": [
|
|
2497
|
+
"ecpt.check_resource_normalized_cut"
|
|
2498
|
+
],
|
|
2499
|
+
"item_id": "definition:63",
|
|
2500
|
+
"label": "Resource normalization ledger",
|
|
2501
|
+
"obligation_category": null,
|
|
2502
|
+
"verifier_route": null
|
|
2503
|
+
},
|
|
2504
|
+
{
|
|
2505
|
+
"coverage_status": "implemented_checker",
|
|
2506
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2507
|
+
"implementation_refs": [
|
|
2508
|
+
"ecpt.check_resource_normalized_cut"
|
|
2509
|
+
],
|
|
2510
|
+
"item_id": "thm:resource-cut",
|
|
2511
|
+
"label": "Resource-normalized cut bound",
|
|
2512
|
+
"obligation_category": null,
|
|
2513
|
+
"verifier_route": null
|
|
2514
|
+
},
|
|
2515
|
+
{
|
|
2516
|
+
"coverage_status": "implemented_checker",
|
|
2517
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2518
|
+
"implementation_refs": [
|
|
2519
|
+
"ecpt.check_activation_threshold_certificate"
|
|
2520
|
+
],
|
|
2521
|
+
"item_id": "definition:64",
|
|
2522
|
+
"label": "AND-support finite-size and thermodynamic activation certificate",
|
|
2523
|
+
"obligation_category": null,
|
|
2524
|
+
"verifier_route": null
|
|
2525
|
+
},
|
|
2526
|
+
{
|
|
2527
|
+
"coverage_status": "implemented_checker",
|
|
2528
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2529
|
+
"implementation_refs": [
|
|
2530
|
+
"ecpt.check_activation_threshold_certificate"
|
|
2531
|
+
],
|
|
2532
|
+
"item_id": "thm:finite-size-activation-threshold",
|
|
2533
|
+
"label": "AND-support finite-size activation threshold",
|
|
2534
|
+
"obligation_category": null,
|
|
2535
|
+
"verifier_route": null
|
|
2536
|
+
},
|
|
2537
|
+
{
|
|
2538
|
+
"coverage_status": "implemented_constructive",
|
|
2539
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2540
|
+
"implementation_refs": [
|
|
2541
|
+
"ecpt.backpressure_reserve_loss"
|
|
2542
|
+
],
|
|
2543
|
+
"item_id": "definition:65",
|
|
2544
|
+
"label": "Verification backpressure",
|
|
2545
|
+
"obligation_category": null,
|
|
2546
|
+
"verifier_route": null
|
|
2547
|
+
},
|
|
2548
|
+
{
|
|
2549
|
+
"coverage_status": "implemented_constructive",
|
|
2550
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2551
|
+
"implementation_refs": [
|
|
2552
|
+
"ecpt.backpressure_reserve_loss"
|
|
2553
|
+
],
|
|
2554
|
+
"item_id": "prop:backpressure-reserve-loss",
|
|
2555
|
+
"label": "Backpressure reserve loss",
|
|
2556
|
+
"obligation_category": null,
|
|
2557
|
+
"verifier_route": null
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
"coverage_status": "implemented_constructive",
|
|
2561
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2562
|
+
"implementation_refs": [
|
|
2563
|
+
"ecpt.bottleneck_shadow_price"
|
|
2564
|
+
],
|
|
2565
|
+
"item_id": "prop:bottleneck-shadow-price",
|
|
2566
|
+
"label": "Bottleneck shadow price",
|
|
2567
|
+
"obligation_category": null,
|
|
2568
|
+
"verifier_route": null
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
"coverage_status": "implemented_schema",
|
|
2572
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2573
|
+
"implementation_refs": [
|
|
2574
|
+
"bit.SelectivePotentialResult"
|
|
2575
|
+
],
|
|
2576
|
+
"item_id": "definition:66",
|
|
2577
|
+
"label": "Linear lower-bound abstraction",
|
|
2578
|
+
"obligation_category": null,
|
|
2579
|
+
"verifier_route": null
|
|
2580
|
+
},
|
|
2581
|
+
{
|
|
2582
|
+
"coverage_status": "external_obligation",
|
|
2583
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2584
|
+
"implementation_refs": [
|
|
2585
|
+
"core.ExternalProofObligation"
|
|
2586
|
+
],
|
|
2587
|
+
"item_id": "cor:linear-growth-lower-bound",
|
|
2588
|
+
"label": "Linear growth lower bound",
|
|
2589
|
+
"obligation_category": "numerical-envelope",
|
|
2590
|
+
"verifier_route": "core.adapters.envelope.verify_finite_bound"
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
"coverage_status": "external_obligation",
|
|
2594
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2595
|
+
"implementation_refs": [
|
|
2596
|
+
"core.ExternalProofObligation"
|
|
2597
|
+
],
|
|
2598
|
+
"item_id": "def:density-dependent-chain",
|
|
2599
|
+
"label": "Regularized density-dependent ECPT family",
|
|
2600
|
+
"obligation_category": "ecpt-generator-limit",
|
|
2601
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"coverage_status": "external_obligation",
|
|
2605
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2606
|
+
"implementation_refs": [
|
|
2607
|
+
"core.ExternalProofObligation"
|
|
2608
|
+
],
|
|
2609
|
+
"item_id": "def:identified-generator-calibration",
|
|
2610
|
+
"label": "Intervention-identified generator calibration certificate",
|
|
2611
|
+
"obligation_category": "ecpt-generator-limit",
|
|
2612
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
2613
|
+
},
|
|
2614
|
+
{
|
|
2615
|
+
"coverage_status": "implemented_constructive",
|
|
2616
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2617
|
+
"implementation_refs": [
|
|
2618
|
+
"ecpt.reachable_mass"
|
|
2619
|
+
],
|
|
2620
|
+
"item_id": "def:attainable-inclusion-response",
|
|
2621
|
+
"label": "Reachable mass recursion certificate",
|
|
2622
|
+
"obligation_category": null,
|
|
2623
|
+
"verifier_route": null
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
"coverage_status": "external_obligation",
|
|
2627
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2628
|
+
"implementation_refs": [
|
|
2629
|
+
"core.ExternalProofObligation"
|
|
2630
|
+
],
|
|
2631
|
+
"item_id": "definition:70",
|
|
2632
|
+
"label": "Regularized macroscopic percolation envelope",
|
|
2633
|
+
"obligation_category": "ecpt-generator-limit",
|
|
2634
|
+
"verifier_route": "ecpt.adapters.generators.verify_limit_envelope"
|
|
2635
|
+
},
|
|
2636
|
+
{
|
|
2637
|
+
"coverage_status": "implemented_checker",
|
|
2638
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2639
|
+
"implementation_refs": [
|
|
2640
|
+
"ecpt.check_mean_field_envelope"
|
|
2641
|
+
],
|
|
2642
|
+
"item_id": "thm:mean-field-envelope-soundness",
|
|
2643
|
+
"label": "Intervention-identified generator-to-mean-field envelope soundness",
|
|
2644
|
+
"obligation_category": null,
|
|
2645
|
+
"verifier_route": null
|
|
2646
|
+
},
|
|
2647
|
+
{
|
|
2648
|
+
"coverage_status": "external_obligation",
|
|
2649
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2650
|
+
"implementation_refs": [
|
|
2651
|
+
"core.ExternalProofObligation"
|
|
2652
|
+
],
|
|
2653
|
+
"item_id": "definition:71",
|
|
2654
|
+
"label": "ALT-compatible packet",
|
|
2655
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
2656
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
2657
|
+
},
|
|
2658
|
+
{
|
|
2659
|
+
"coverage_status": "external_obligation",
|
|
2660
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2661
|
+
"implementation_refs": [
|
|
2662
|
+
"core.ExternalProofObligation"
|
|
2663
|
+
],
|
|
2664
|
+
"item_id": "definition:72",
|
|
2665
|
+
"label": "Liquidity bridge",
|
|
2666
|
+
"obligation_category": "ecpt-economics-policy",
|
|
2667
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
"coverage_status": "external_obligation",
|
|
2671
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2672
|
+
"implementation_refs": [
|
|
2673
|
+
"core.ExternalProofObligation"
|
|
2674
|
+
],
|
|
2675
|
+
"item_id": "prop:alt-lift",
|
|
2676
|
+
"label": "ALT lift",
|
|
2677
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
2678
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
2679
|
+
},
|
|
2680
|
+
{
|
|
2681
|
+
"coverage_status": "external_obligation",
|
|
2682
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2683
|
+
"implementation_refs": [
|
|
2684
|
+
"core.ExternalProofObligation"
|
|
2685
|
+
],
|
|
2686
|
+
"item_id": "definition:73",
|
|
2687
|
+
"label": "SQOT-compatible reserve certificate",
|
|
2688
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
2689
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
2690
|
+
},
|
|
2691
|
+
{
|
|
2692
|
+
"coverage_status": "implemented_checker",
|
|
2693
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2694
|
+
"implementation_refs": [
|
|
2695
|
+
"ecpt.check_queue_certificate"
|
|
2696
|
+
],
|
|
2697
|
+
"item_id": "definition:74",
|
|
2698
|
+
"label": "Queue morphism",
|
|
2699
|
+
"obligation_category": null,
|
|
2700
|
+
"verifier_route": null
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
"coverage_status": "external_obligation",
|
|
2704
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2705
|
+
"implementation_refs": [
|
|
2706
|
+
"core.ExternalProofObligation"
|
|
2707
|
+
],
|
|
2708
|
+
"item_id": "prop:sqot-reserve-invariance",
|
|
2709
|
+
"label": "SQOT reserve invariance",
|
|
2710
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
2711
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
2712
|
+
},
|
|
2713
|
+
{
|
|
2714
|
+
"coverage_status": "implemented_checker",
|
|
2715
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2716
|
+
"implementation_refs": [
|
|
2717
|
+
"core.ExtractorOutput"
|
|
2718
|
+
],
|
|
2719
|
+
"item_id": "definition:75",
|
|
2720
|
+
"label": "Claim extractor",
|
|
2721
|
+
"obligation_category": null,
|
|
2722
|
+
"verifier_route": null
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"coverage_status": "implemented_schema",
|
|
2726
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2727
|
+
"implementation_refs": [
|
|
2728
|
+
"core.ClaimRecord"
|
|
2729
|
+
],
|
|
2730
|
+
"item_id": "def:machine-readable-claim-record",
|
|
2731
|
+
"label": "Machine-readable claim record",
|
|
2732
|
+
"obligation_category": null,
|
|
2733
|
+
"verifier_route": null
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"coverage_status": "external_obligation",
|
|
2737
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2738
|
+
"implementation_refs": [
|
|
2739
|
+
"core.ExternalProofObligation"
|
|
2740
|
+
],
|
|
2741
|
+
"item_id": "def:publication-capsule",
|
|
2742
|
+
"label": "Publication and machine-readable capsule",
|
|
2743
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
2744
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
"coverage_status": "implemented_checker",
|
|
2748
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2749
|
+
"implementation_refs": [
|
|
2750
|
+
"core.ProjectionAudit"
|
|
2751
|
+
],
|
|
2752
|
+
"item_id": "prop:capsule-projection",
|
|
2753
|
+
"label": "Capsule projection",
|
|
2754
|
+
"obligation_category": null,
|
|
2755
|
+
"verifier_route": null
|
|
2756
|
+
},
|
|
2757
|
+
{
|
|
2758
|
+
"coverage_status": "implemented_schema",
|
|
2759
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2760
|
+
"implementation_refs": [
|
|
2761
|
+
"core.Certificate"
|
|
2762
|
+
],
|
|
2763
|
+
"item_id": "definition:78",
|
|
2764
|
+
"label": "ECPT certificate",
|
|
2765
|
+
"obligation_category": null,
|
|
2766
|
+
"verifier_route": null
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
"coverage_status": "implemented_checker",
|
|
2770
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2771
|
+
"implementation_refs": [
|
|
2772
|
+
"core.CheckerContext"
|
|
2773
|
+
],
|
|
2774
|
+
"item_id": "definition:79",
|
|
2775
|
+
"label": "Checker",
|
|
2776
|
+
"obligation_category": null,
|
|
2777
|
+
"verifier_route": null
|
|
2778
|
+
},
|
|
2779
|
+
{
|
|
2780
|
+
"coverage_status": "implemented_checker",
|
|
2781
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2782
|
+
"implementation_refs": [
|
|
2783
|
+
"core.StatusRule"
|
|
2784
|
+
],
|
|
2785
|
+
"item_id": "prop:no-status-promotion",
|
|
2786
|
+
"label": "No status promotion",
|
|
2787
|
+
"obligation_category": null,
|
|
2788
|
+
"verifier_route": null
|
|
2789
|
+
},
|
|
2790
|
+
{
|
|
2791
|
+
"coverage_status": "external_obligation",
|
|
2792
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2793
|
+
"implementation_refs": [
|
|
2794
|
+
"core.ExternalProofObligation"
|
|
2795
|
+
],
|
|
2796
|
+
"item_id": "thm:protocol-relative-soundness",
|
|
2797
|
+
"label": "Protocol-relative soundness",
|
|
2798
|
+
"obligation_category": "ecpt-bridge-reserve",
|
|
2799
|
+
"verifier_route": "ecpt.adapters.bridge.verify_cross_theory_bridge"
|
|
2800
|
+
}
|
|
2801
|
+
],
|
|
2802
|
+
"mr_records": 0,
|
|
2803
|
+
"representative_items": [
|
|
2804
|
+
{
|
|
2805
|
+
"coverage_status": "external_obligation",
|
|
2806
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2807
|
+
"implementation_refs": [
|
|
2808
|
+
"core.ExternalProofObligation"
|
|
2809
|
+
],
|
|
2810
|
+
"item_id": "definition:15",
|
|
2811
|
+
"label": "Auxiliary trace-complex diagnostic",
|
|
2812
|
+
"obligation_category": "ecpt-trace-diagnostic",
|
|
2813
|
+
"verifier_route": "ecpt.adapters.trace_complex.verify_diagnostic_projection"
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
"coverage_status": "external_obligation",
|
|
2817
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2818
|
+
"implementation_refs": [
|
|
2819
|
+
"core.ExternalProofObligation"
|
|
2820
|
+
],
|
|
2821
|
+
"item_id": "definition:18",
|
|
2822
|
+
"label": "Accumulation, availability, liquidity, and execution availability",
|
|
2823
|
+
"obligation_category": "ecpt-economics-policy",
|
|
2824
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
2825
|
+
},
|
|
2826
|
+
{
|
|
2827
|
+
"coverage_status": "external_obligation",
|
|
2828
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2829
|
+
"implementation_refs": [
|
|
2830
|
+
"core.ExternalProofObligation"
|
|
2831
|
+
],
|
|
2832
|
+
"item_id": "definition:31",
|
|
2833
|
+
"label": "Speculative execution channel",
|
|
2834
|
+
"obligation_category": "ecpt-speculative-channel",
|
|
2835
|
+
"verifier_route": "ecpt.adapters.speculative.verify_channel_and_repair"
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
"coverage_status": "external_obligation",
|
|
2839
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2840
|
+
"implementation_refs": [
|
|
2841
|
+
"core.ExternalProofObligation"
|
|
2842
|
+
],
|
|
2843
|
+
"item_id": "definition:37",
|
|
2844
|
+
"label": "Concrete ecology semantics",
|
|
2845
|
+
"obligation_category": "ecpt-ecology-ontology",
|
|
2846
|
+
"verifier_route": "ecpt.adapters.ecology.verify_domain_abstraction"
|
|
2847
|
+
},
|
|
2848
|
+
{
|
|
2849
|
+
"coverage_status": "external_obligation",
|
|
2850
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2851
|
+
"implementation_refs": [
|
|
2852
|
+
"core.ExternalProofObligation"
|
|
2853
|
+
],
|
|
2854
|
+
"item_id": "definition:38",
|
|
2855
|
+
"label": "Sound finite abstraction",
|
|
2856
|
+
"obligation_category": "ecpt-ecology-ontology",
|
|
2857
|
+
"verifier_route": "ecpt.adapters.ecology.verify_domain_abstraction"
|
|
2858
|
+
},
|
|
2859
|
+
{
|
|
2860
|
+
"coverage_status": "external_obligation",
|
|
2861
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2862
|
+
"implementation_refs": [
|
|
2863
|
+
"core.ExternalProofObligation"
|
|
2864
|
+
],
|
|
2865
|
+
"item_id": "prop:abstraction-soundness",
|
|
2866
|
+
"label": "Abstraction soundness",
|
|
2867
|
+
"obligation_category": "ecpt-ecology-ontology",
|
|
2868
|
+
"verifier_route": "ecpt.adapters.ecology.verify_domain_abstraction"
|
|
2869
|
+
},
|
|
2870
|
+
{
|
|
2871
|
+
"coverage_status": "external_obligation",
|
|
2872
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2873
|
+
"implementation_refs": [
|
|
2874
|
+
"core.ExternalProofObligation"
|
|
2875
|
+
],
|
|
2876
|
+
"item_id": "cor:light-tail-exponential-witness",
|
|
2877
|
+
"label": "Light-tail exponential witness",
|
|
2878
|
+
"obligation_category": "numerical-envelope",
|
|
2879
|
+
"verifier_route": "core.adapters.envelope.verify_finite_bound"
|
|
2880
|
+
},
|
|
2881
|
+
{
|
|
2882
|
+
"coverage_status": "external_obligation",
|
|
2883
|
+
"implementation_maturity": "snapshot_metadata_only",
|
|
2884
|
+
"implementation_refs": [
|
|
2885
|
+
"core.ExternalProofObligation"
|
|
2886
|
+
],
|
|
2887
|
+
"item_id": "definition:48",
|
|
2888
|
+
"label": "Natural accelerator policy",
|
|
2889
|
+
"obligation_category": "ecpt-economics-policy",
|
|
2890
|
+
"verifier_route": "ecpt.adapters.policy.verify_execution_policy"
|
|
2891
|
+
}
|
|
2892
|
+
],
|
|
2893
|
+
"schema_version": "theory-snapshot-1.0"
|
|
2894
|
+
}
|