From bb29b5e10ee2b4ba2527e7b468800f023ea3d542 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 15 Dec 2020 23:03:10 -0500 Subject: Use better names than Benchmark1, Benchmark2, etc --- bench.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bench.h') diff --git a/bench.h b/bench.h index 31a0d69a..2c30e971 100644 --- a/bench.h +++ b/bench.h @@ -76,13 +76,13 @@ void BenchmarkWithCommand(int argc, const char* const argv[]); // Top level, prints preamble and postamble void Benchmark(Test::TestClass suites, double t, double hertz); // Unkeyed systems -void Benchmark1(double t, double hertz); +void BenchmarkUnkeyedAlgorithms(double t, double hertz); // Shared key systems -void Benchmark2(double t, double hertz); +void BenchmarkSharedKeyedAlgorithms(double t, double hertz); // Public key systems over integers -void Benchmark3(double t, double hertz); +void BenchmarkPublicKeyAlgorithms(double t, double hertz); // Public key systems over elliptic curves -void Benchmark4(double t, double hertz); +void BenchmarkEllipticCurveAlgorithms(double t, double hertz); // These are defined in bench1.cpp extern void OutputResultKeying(double iterations, double timeTaken); -- cgit v1.2.1