-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
35 lines (32 loc) · 1.28 KB
/
Copy pathlib.rs
File metadata and controls
35 lines (32 loc) · 1.28 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
// 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 event;
pub mod graph;
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 event::{Event, EventKind};
pub use graph::{build as build_graph, ImportGraph};
pub use lint::{default_rules, rules_with_config, run_lints, LintRule, RuleConfig};
pub use prover::{default_backend, Agda, Backend, BackendKind, Idris2, Outcome, Smt, Verdict};
pub use reason::{build as build_reason, Junct, ReasonDocument, ReasonEdge, ReasonNode};
pub use workspace::{StaleEntry, State, Workspace};