[lld] BPSectionOrderer: stabilize iteration order with MapVector
[llvm-project.git] / libcxx / test / std / numerics / rand / rand.dist / rand.dist.pois / rand.dist.pois.extreme / max.pass.cpp
blob48a3a92c5a730f5507d20f725c9e946370c6bbfd
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <random>
11 // template<class RealType = double>
12 // class extreme_value_distribution
14 // result_type max() const;
16 #include <random>
18 #include <cassert>
19 #include <cmath>
21 #include "test_macros.h"
23 int main(int, char**)
26 typedef std::extreme_value_distribution<> D;
27 D d(5, .25);
28 D::result_type m = d.max();
29 assert(m == INFINITY);
32 return 0;