1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <random>
// template <class UIntType, size_t w, size_t n, size_t m, size_t r,
// UIntType a, size_t u, UIntType d, size_t s,
// UIntType b, size_t t, UIntType c, size_t l, UIntType f>
// class mersenne_twister_engine
// {
// public:
// // types
// typedef UIntType result_type;
//
// // engine characteristics
// static constexpr size_t word_size = w;
// static constexpr size_t state_size = n;
// static constexpr size_t shift_size = m;
// static constexpr size_t mask_bits = r;
// static constexpr result_type xor_mask = a;
// static constexpr size_t tempering_u = u;
// static constexpr result_type tempering_d = d;
// static constexpr size_t tempering_s = s;
// static constexpr result_type tempering_b = b;
// static constexpr size_t tempering_t = t;
// static constexpr result_type tempering_c = c;
// static constexpr size_t tempering_l = l;
// static constexpr result_type initialization_multiplier = f;
// static constexpr result_type min () { return 0; }
// static constexpr result_type max() { return 2^w - 1; }
// static constexpr result_type default_seed = 5489u;
#include <random>
#include <type_traits>
#include <cassert>
#include "test_macros.h"
template <class T>
void where(const T &) {}
void
test1()
{
typedef std::mt19937 E;
static_assert((E::word_size == 32), "");
static_assert((E::state_size == 624), "");
static_assert((E::shift_size == 397), "");
static_assert((E::mask_bits == 31), "");
static_assert((E::xor_mask == 0x9908b0df), "");
static_assert((E::tempering_u == 11), "");
static_assert((E::tempering_d == 0xffffffff), "");
static_assert((E::tempering_s == 7), "");
static_assert((E::tempering_b == 0x9d2c5680), "");
static_assert((E::tempering_t == 15), "");
static_assert((E::tempering_c == 0xefc60000), "");
static_assert((E::tempering_l == 18), "");
static_assert((E::initialization_multiplier == 1812433253), "");
#if TEST_STD_VER >= 11
static_assert((E::min() == 0), "");
static_assert((E::max() == 0xFFFFFFFF), "");
#else
assert((E::min() == 0));
assert((E::max() == 0xFFFFFFFF));
#endif
static_assert((E::default_seed == 5489u), "");
where(E::word_size);
where(E::state_size);
where(E::shift_size);
where(E::mask_bits);
where(E::xor_mask);
where(E::tempering_u);
where(E::tempering_d);
where(E::tempering_s);
where(E::tempering_b);
where(E::tempering_t);
where(E::tempering_c);
where(E::tempering_l);
where(E::initialization_multiplier);
where(E::default_seed);
}
void
test2()
{
typedef std::mt19937_64 E;
static_assert((E::word_size == 64), "");
static_assert((E::state_size == 312), "");
static_assert((E::shift_size == 156), "");
static_assert((E::mask_bits == 31), "");
static_assert((E::xor_mask == 0xb5026f5aa96619e9ull), "");
static_assert((E::tempering_u == 29), "");
static_assert((E::tempering_d == 0x5555555555555555ull), "");
static_assert((E::tempering_s == 17), "");
static_assert((E::tempering_b == 0x71d67fffeda60000ull), "");
static_assert((E::tempering_t == 37), "");
static_assert((E::tempering_c == 0xfff7eee000000000ull), "");
static_assert((E::tempering_l == 43), "");
static_assert((E::initialization_multiplier == 6364136223846793005ull), "");
#if TEST_STD_VER >= 11
static_assert((E::min() == 0), "");
static_assert((E::max() == 0xFFFFFFFFFFFFFFFFull), "");
#else
assert((E::min() == 0));
assert((E::max() == 0xFFFFFFFFFFFFFFFFull));
#endif
static_assert((E::default_seed == 5489u), "");
where(E::word_size);
where(E::state_size);
where(E::shift_size);
where(E::mask_bits);
where(E::xor_mask);
where(E::tempering_u);
where(E::tempering_d);
where(E::tempering_s);
where(E::tempering_b);
where(E::tempering_t);
where(E::tempering_c);
where(E::tempering_l);
where(E::initialization_multiplier);
where(E::default_seed);
}
int main(int, char**)
{
test1();
test2();
return 0;
}
|