temporal_neural_solver/benchmarks/mod.rs
1//! Comprehensive benchmarking and validation framework
2//!
3//! This module provides:
4//! - Statistical performance analysis
5//! - Hardware capability verification
6//! - Cryptographic integrity checks
7//! - Reproducible benchmark protocols
8
9pub mod comparison;
10pub mod statistical_validation;
11pub mod hardware_verification;
12pub mod cryptographic_validation;
13pub mod reproducible_benchmarks;
14
15pub use comparison::{ComparisonBenchmark, BenchmarkStats};
16pub use statistical_validation::StatisticalValidator;
17pub use hardware_verification::HardwareValidator;
18pub use cryptographic_validation::CryptographicValidator;
19pub use reproducible_benchmarks::ReproducibleBenchmark;