Skip to main content

entrenar/efficiency/benchmark/
mod.rs

1//! Cost-Performance Benchmarking (ENT-011)
2//!
3//! Provides benchmarking infrastructure with Pareto frontier analysis
4//! for cost-performance optimization.
5
6mod collection;
7mod entry;
8mod statistics;
9
10pub use collection::CostPerformanceBenchmark;
11pub use entry::BenchmarkEntry;
12pub use statistics::BenchmarkStatistics;
13
14// Re-export types needed by this module's public API
15
16#[cfg(test)]
17mod tests;