File indexing completed on 2025-09-18 09:08:49
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef CATCH_SAMPLE_ANALYSIS_HPP_INCLUDED
0011 #define CATCH_SAMPLE_ANALYSIS_HPP_INCLUDED
0012
0013 #include <catch2/benchmark/catch_estimate.hpp>
0014 #include <catch2/benchmark/catch_outlier_classification.hpp>
0015 #include <catch2/benchmark/catch_clock.hpp>
0016
0017 #include <vector>
0018
0019 namespace Catch {
0020 namespace Benchmark {
0021 struct SampleAnalysis {
0022 std::vector<FDuration> samples;
0023 Estimate<FDuration> mean;
0024 Estimate<FDuration> standard_deviation;
0025 OutlierClassification outliers;
0026 double outlier_variance;
0027 };
0028 }
0029 }
0030
0031 #endif