blob: fd5e61582efffa3ad6242795b4e5ac787a00bb9e [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 lognormal_distribution
// {
// class param_type;
#include <random>
#include <limits>
#include <cassert>
#include "test_macros.h"
int main(int, char**)
{
{
typedef std::lognormal_distribution<> D;
typedef D::param_type param_type;
param_type p;
assert(p.m() == 0);
assert(p.s() == 1);
}
{
typedef std::lognormal_distribution<> D;
typedef D::param_type param_type;
param_type p(10);
assert(p.m() == 10);
assert(p.s() == 1);
}
{
typedef std::lognormal_distribution<> D;
typedef D::param_type param_type;
param_type p(10, 5);
assert(p.m() == 10);
assert(p.s() == 5);
}
return 0;
}