From f13045453e10c1ca0801da6f018a0e6be39deec7 Mon Sep 17 00:00:00 2001 From: subcrip Date: Sat, 27 Jul 2024 14:42:51 +0800 Subject: [PATCH] Update template.cc Signed-off-by: subcrip --- template.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template.cc b/template.cc index 19806a7..8fe208b 100644 --- a/template.cc +++ b/template.cc @@ -59,7 +59,7 @@ constexpr uint128 UINT128_MIN = numeric_limits::min(); /* random */ -mt19937 rd(chrono::duration_cast(chrono::system_clock::now().time_since_epoch()).count()); +mt19937_64 rd(chrono::duration_cast(chrono::system_clock::now().time_since_epoch()).count()); /* bit-wise operations */ #define lowbit(x) ((x) & -(x))