[rand.dist.samp.discrete]

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@104103 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2010-05-19 01:53:57 +00:00
parent 76fdaa7c70
commit 551d8e4ddb
25 changed files with 1602 additions and 3 deletions

View File

@@ -0,0 +1,35 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <random>
// template<class IntType = int>
// class discrete_distribution
// discrete_distribution& operator=(const discrete_distribution&);
#include <random>
#include <cassert>
void
test1()
{
typedef std::discrete_distribution<> D;
double p[] = {2, 4, 1, 8};
D d1(p, p+4);
D d2;
assert(d1 != d2);
d2 = d1;
assert(d1 == d2);
}
int main()
{
test1();
}