blob: a6f1eadb08841617c8efc5254a1636850ce9be10 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <random>
// template<class Engine, size_t k>
// class shuffle_order_engine
// {
// public:
// // types
// typedef typename Engine::result_type result_type;
#include <random>
#include <type_traits>
#include "test_macros.h"
template <class UIntType, UIntType Min, UIntType Max>
class rand1
{
public:
// types
typedef UIntType result_type;
private:
result_type x_;
static_assert(Min < Max, "rand1 invalid parameters");
public:
#if TEST_STD_VER < 11 && defined(_LIBCPP_VERSION)
// Workaround for lack of constexpr in C++03
static const result_type _Min = Min;
static const result_type _Max = Max;
#endif
static TEST_CONSTEXPR result_type min() {return Min;}
static TEST_CONSTEXPR result_type max() {return Max;}
explicit rand1(result_type sd = Min) : x_(sd)
{
if (x_ < Min)
x_ = Min;
if (x_ > Max)
x_ = Max;
}
result_type operator()()
{
result_type r = x_;
if (x_ < Max)
++x_;
else
x_ = Min;
return r;
}
};
void
test1()
{
static_assert((std::is_same<
std::shuffle_order_engine<rand1<unsigned long, 0, 10>, 16>::result_type,
unsigned long>::value), "");
}
void
test2()
{
static_assert((std::is_same<
std::shuffle_order_engine<rand1<unsigned long long, 0, 10>, 16>::result_type,
unsigned long long>::value), "");
}
int main()
{
test1();
test2();
}