forked from OSchip/llvm-project
27 lines
670 B
C++
27 lines
670 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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 geometric_distribution
|
|
|
|
// result_type max() const;
|
|
|
|
#include <random>
|
|
#include <cassert>
|
|
|
|
int main()
|
|
{
|
|
{
|
|
typedef std::geometric_distribution<> D;
|
|
D d(.25);
|
|
assert(d.max() == std::numeric_limits<int>::max());
|
|
}
|
|
}
|