blob: 4bbd68d8c5f65c8e62865c65fdda743da3138827 [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 gamma_distribution
// explicit gamma_distribution(result_type alpha = 0, result_type beta = 1);
#include <random>
#include <cassert>
#include "test_macros.h"
int main(int, char**)
{
{
typedef std::gamma_distribution<> D;
D d;
assert(d.alpha() == 1);
assert(d.beta() == 1);
}
{
typedef std::gamma_distribution<> D;
D d(14.5);
assert(d.alpha() == 14.5);
assert(d.beta() == 1);
}
{
typedef std::gamma_distribution<> D;
D d(14.5, 5.25);
assert(d.alpha() == 14.5);
assert(d.beta() == 5.25);
}
return 0;
}