blob: 9d1558c941424e65741b1322f0b00ec157d55e16 [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 RealType = double>
// class weibull_distribution
// explicit weibull_distribution(RealType a = 1.0, RealType b = 1.0); // before C++20
// weibull_distribution() : weibull_distribution(1.0) {} // C++20
// explicit weibull_distribution(RealType a, RealType b = 1.0); // 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::weibull_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, T>(), "");
#endif
}
int main(int, char**)
{
{
typedef std::weibull_distribution<> D;
D d;
assert(d.a() == 1);
assert(d.b() == 1);
}
{
typedef std::weibull_distribution<> D;
D d(14.5);
assert(d.a() == 14.5);
assert(d.b() == 1);
}
{
typedef std::weibull_distribution<> D;
D d(14.5, 5.25);
assert(d.a() == 14.5);
assert(d.b() == 5.25);
}
test_implicit<float>();
test_implicit<double>();
return 0;
}