blob: 03abc5362108ee1423ce7a1c34623ba71b45443b [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 RealType = double>
// class uniform_real_distribution
// explicit uniform_real_distribution(RealType a = 0,
// RealType b = 1);
#include <random>
#include <cassert>
int main()
{
{
typedef std::uniform_real_distribution<> D;
D d;
assert(d.a() == 0);
assert(d.b() == 1);
}
{
typedef std::uniform_real_distribution<> D;
D d(-6);
assert(d.a() == -6);
assert(d.b() == 1);
}
{
typedef std::uniform_real_distribution<> D;
D d(-6, 106);
assert(d.a() == -6);
assert(d.b() == 106);
}
}