blob: 3212a8f0083043e21959a90cf7f29528867b68d0 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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;
// void seed(result_type s = default_seed);
#include <random>
#include <cassert>
#include "test_macros.h"
void
test1()
{
for (int s = 0; s < 20; ++s)
{
typedef std::mt19937 E;
E e1(s);
E e2;
e2.seed(s);
assert(e1 == e2);
}
}
void
test2()
{
for (int s = 0; s < 20; ++s)
{
typedef std::mt19937_64 E;
E e1(s);
E e2;
e2.seed(s);
assert(e1 == e2);
}
}
int main(int, char**)
{
test1();
test2();
return 0;
}