AudibleT 0.0.1
A real-time A/B/X audio testing tool for subjective assessment of various audio parameters, compatible for general purpose computer as well as embedded systems.
Loading...
Searching...
No Matches
BenchmarkBinomialHelper.h
1#ifndef BENCHMARK_BINOMIAL_HELPER_H
2#define BENCHMARK_BINOMIAL_HELPER_H
3
4#include <QtTest>
5#include <chrono>
6
7class BenchmarkBinomialHelper : public QObject {
8 Q_OBJECT
9
10private slots:
11 void benchmarkLogFactorial();
12 void benchmarkLogCombination();
13 void benchmarkCombination();
14 void benchmarkBinomialProbability();
15 void benchmarkBinomialCDF();
16 void benchmarkInverseBinomialCDF();
17};
18
19#endif // BENCHMARK_BINOMIAL_HELPER_H
Definition: BenchmarkBinomialHelper.h:7