From ab9282948afd15997677000e62a9f3cbad6fb499 Mon Sep 17 00:00:00 2001 From: Heiko Bauke Date: Sun, 28 Apr 2024 19:57:18 +0200 Subject: [PATCH] add count128_lcg_shift to benchmark --- examples/time.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/time.cc b/examples/time.cc index 72c5f74..3d9cfa1 100644 --- a/examples/time.cc +++ b/examples/time.cc @@ -41,6 +41,7 @@ #include #include #include +#include #include #include #include @@ -229,6 +230,10 @@ int main() { trng::lcg64_count_shift r; time_main(r, "trng::lcg64_count_shift"); } + { + trng::count128_lcg_shift r; + time_main(r, "trng::count128_lcg_shift"); + } { trng::mrg2 r; time_main(r, "trng::mrg2");