Configuration
| 24 | |
| 25 | // Configuration |
| 26 | struct BenchmarkConfig |
| 27 | { |
| 28 | size_t total_events = 50'000'000; // Default 50 million events |
| 29 | size_t thread_count = std::thread::hardware_concurrency(); |
| 30 | bool record_baseline = false; |
| 31 | bool compare_baseline = false; |
| 32 | std::string baseline_file = "ctrack_baseline.json"; |
| 33 | bool verbose = false; |
| 34 | }; |
| 35 | |
| 36 | // Baseline data structure |
| 37 | struct BaselineData |
nothing calls this directly
no outgoing calls
no test coverage detected