From 3c4f99420e2a8143b88209f6a2f2b65f56ea3981 Mon Sep 17 00:00:00 2001 From: qicosmos Date: Mon, 24 Jul 2023 17:41:06 +0800 Subject: [PATCH] update --- include/frozen/random.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/frozen/random.h b/include/frozen/random.h index d35fb91f..fb3060dd 100644 --- a/include/frozen/random.h +++ b/include/frozen/random.h @@ -69,8 +69,8 @@ class linear_congruential_engine { // constexpr void discard(unsigned long long n) { // while (n--) operator()(); // } - static constexpr result_type min() { return increment == 0u ? 1u : 0u; } - static constexpr result_type max() { return modulus - 1u; } + // static constexpr result_type min() { return increment == 0u ? 1u : 0u; } + // static constexpr result_type max() { return modulus - 1u; } friend constexpr bool operator==(linear_congruential_engine const &self, linear_congruential_engine const &other) { return self.state_ == other.state_;