-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.rs
More file actions
29 lines (26 loc) · 1022 Bytes
/
Copy pathmod.rs
File metadata and controls
29 lines (26 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// SPDX-License-Identifier: MPL-2.0
// SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
//! Cross-prover proof exchange module
//!
//! Supports importing and exporting proofs in universal formats:
//! - OpenTheory (HOL family cross-checking)
//! - Dedukti/Lambdapi (universal proof format)
//! - SMTCoq bridge (SMT proofs replayed in Coq)
//!
//! ## Saturation campaign 2026-06-01
//!
//! Four new bridges added: `tptp`, `smtlib`, `smtcoq`, `lambdapi`.
//! Each defines a local `ExchangeError` enum (isomorphic across the
//! four). Consolidation to a single shared error type is deferred —
//! the four enums share an identical variant set, so cross-bridge
//! interop just needs a small `From` impl wherever a downstream call
//! converts between them. See
//! `docs/decisions/2026-06-01-saturation-campaign.md`.
pub mod dedukti;
pub mod lambdapi;
pub mod opentheory;
pub mod smtcoq;
pub mod smtlib;
pub mod tptp;
pub use dedukti::DeduktiExporter;
pub use opentheory::OpenTheoryExporter;