-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
44 lines (41 loc) · 1.47 KB
/
Copy pathlib.rs
File metadata and controls
44 lines (41 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// SPDX-License-Identifier: MPL-2.0
// Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
//! arghda-core: proof-workspace manager for provers and solvers.
//!
//! Agda is the first (v0.1 reference) backend; every prover-specific seam
//! lives behind the [`prover::Backend`] trait, so the four-state workspace,
//! DAG builder and content-hash invalidation are backend-neutral. Public
//! surface is intentionally small: `Workspace`, the `Backend` trait, the
//! lint traits, and the diagnostic types. The CLI in `main.rs` is a thin
//! consumer.
pub mod config;
pub mod dag;
pub mod diagnostic;
pub mod dispatch;
pub mod event;
pub mod graph;
pub mod groove;
pub mod hash;
pub mod lint;
pub mod proven;
pub mod prover;
pub mod reason;
pub mod timestamp;
pub mod unused;
pub mod watcher;
pub mod workspace;
pub use dag::{build as build_dag, DagDocument};
pub use diagnostic::{Diagnostic, LintReport, Severity};
pub use dispatch::Dispatch;
pub use event::{Event, EventKind};
pub use graph::{build as build_graph, ImportGraph};
pub use groove::{manifest as groove_manifest, GrooveManifest};
pub use lint::{default_rules, rules_with_config, run_lints, LintRule, RuleConfig};
pub use prover::{
default_backend, Agda, AgdaCubical, Backend, BackendKind, Coq, Idris2, Lean, Outcome, Probe,
Smt, Verdict,
};
pub use reason::{
build as build_reason, workspace_verdicts, Junct, ReasonDocument, ReasonEdge, ReasonNode,
};
pub use workspace::{StaleEntry, State, Workspace};