mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-10 16:19:54 +01:00
f1084fb309
The license file was renamed with 6a502cc2f5
31 lines
884 B
C++
31 lines
884 B
C++
|
|
// Copyright Catch2 Authors
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE.txt or copy at
|
|
// https://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
// Adapted from donated nonius code.
|
|
|
|
#ifndef CATCH_ESTIMATE_HPP_INCLUDED
|
|
#define CATCH_ESTIMATE_HPP_INCLUDED
|
|
|
|
namespace Catch {
|
|
namespace Benchmark {
|
|
template <typename Duration>
|
|
struct Estimate {
|
|
Duration point;
|
|
Duration lower_bound;
|
|
Duration upper_bound;
|
|
double confidence_interval;
|
|
|
|
template <typename Duration2>
|
|
operator Estimate<Duration2>() const {
|
|
return { point, lower_bound, upper_bound, confidence_interval };
|
|
}
|
|
};
|
|
} // namespace Benchmark
|
|
} // namespace Catch
|
|
|
|
#endif // CATCH_ESTIMATE_HPP_INCLUDED
|