Skip to main content

forge_reasoning/verification/
mod.rs

1//! Verification execution system
2//!
3//! This module provides async verification execution with parallel execution,
4//! configurable timeouts, retry logic with exponential backoff, and automatic
5//! evidence attachment to hypotheses.
6
7pub mod check;
8pub mod retry;
9pub mod runner;
10
11// Public API exports
12pub use check::{
13    CheckId, CheckResult, CheckStatus, FailAction, PassAction, VerificationCheck,
14    VerificationCommand,
15};
16pub use retry::RetryConfig;
17pub use runner::VerificationRunner;