#include "benchmark/benchmark.h"
#include <algorithm>
#include <cmath>
#include "check.h"
#include "complexity.h"
#include "stat.h"
Go to the source code of this file.
Namespaces | |
benchmark | |
Functions | |
std::vector< BenchmarkReporter::Run > | benchmark::ComputeBigO (const std::vector< BenchmarkReporter::Run > &reports) |
std::vector< BenchmarkReporter::Run > | benchmark::ComputeStats (const std::vector< BenchmarkReporter::Run > &reports) |
BigOFunc * | benchmark::FittingCurve (BigO complexity) |
std::string | benchmark::GetBigOString (BigO complexity) |
LeastSq | benchmark::MinimalLeastSq (const std::vector< int > &n, const std::vector< double > &time, BigOFunc *fitting_curve) |
LeastSq | benchmark::MinimalLeastSq (const std::vector< int > &n, const std::vector< double > &time, const BigO complexity) |