blob: 47e56b1463dc53593beec1e7df720eb0cf41264b [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 IntType = int>
// class binomial_distribution
// explicit binomial_distribution(IntType t = 1, double p = 0.5); // before C++20
// binomial_distribution() : binomial_distribution(1) {} // C++20
// explicit binomial_distribution(IntType t, double p = 0.5); // C++20
#include <random>
#include <cassert>
#include "test_macros.h"
#if TEST_STD_VER >= 11
#include "make_implicit.h"
#include "test_convertible.h"
#endif
template <class T>
void test_implicit() {
#if TEST_STD_VER >= 11
typedef std::binomial_distribution<T> D;
static_assert(test_convertible<D>(), "");
assert(D(1) == make_implicit<D>());
static_assert(!test_convertible<D, T>(), "");
static_assert(!test_convertible<D, T, double>(), "");
#endif
}
int main(int, char**)
{
{
typedef std::binomial_distribution<> D;
D d;
assert(d.t() == 1);
assert(d.p() == 0.5);
}
{
typedef std::binomial_distribution<> D;
D d(3);
assert(d.t() == 3);
assert(d.p() == 0.5);
}
{
typedef std::binomial_distribution<> D;
D d(3, 0.75);
assert(d.t() == 3);
assert(d.p() == 0.75);
}
test_implicit<int>();
test_implicit<long>();
return 0;
}