1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! The proof engine — algebraic law verification.
//!
//! This module is the core of vyre-conform's claim to be a proof system.
//! It verifies that a CPU reference function (or GPU backend) satisfies
//! the algebraic laws declared for each operation.
//!
//! Three verification levels:
//! - **Exhaustive:** All inputs in a small domain (u8). Proof within domain.
//! - **Witnessed:** N random inputs from the full domain (u32). Statistical.
//! - **Combined:** Both. Practical proof.
/// Coverage audit: detect missing laws and undeclared properties.
/// Law verification engine: exhaustive u8 and witnessed u32.
/// Composition theorem proofs for multi-op chains.
/// Law coverage matrix — T03/T04/T05 defense.
/// File-backed formal law catalog and export hooks.
/// Machine-readable formal algebraic law specifications.
/// GPU-side law verification through backend dispatch.
/// Law inference from CPU reference behavior.
/// Per-op law dispatch tables.
/// Mandatory law inference for registering ops.
/// Counterexample minimization.
/// Construction-time proof tokens for chain composition.
/// Construction-time proof tokens for chain composition.
pub use crate;
/// Law verification engine entry points and result types.
pub use ;
/// Composition theorem types and queries.
pub use ;
/// Machine-readable formal specification types.
pub use ;
/// GPU-backed witnessed law verification.
pub use verify_gpu_laws_witnessed;
/// Law inference entry points and report types.
pub use ;
/// Cross-operation law inference.
pub use infer_cross_op_laws;