[lld] BPSectionOrderer: stabilize iteration order with MapVector
[llvm-project.git] / libcxx / test / std / numerics / rand / rand.dist / rand.dist.norm / rand.dist.norm.t / eq.pass.cpp
blob9a79491d7b0f8cb7967aedb33a731b643478c2e6
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 student_t_distribution
14 // bool operator=(const student_t_distribution& x,
15 // const student_t_distribution& y);
16 // bool operator!(const student_t_distribution& x,
17 // const student_t_distribution& y);
19 #include <random>
20 #include <cassert>
22 #include "test_macros.h"
24 int main(int, char**)
27 typedef std::student_t_distribution<> D;
28 D d1(2.5);
29 D d2(2.5);
30 assert(d1 == d2);
33 typedef std::student_t_distribution<> D;
34 D d1(4);
35 D d2(4.5);
36 assert(d1 != d2);
39 return 0;