1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // <random>
11 
12 // template<class RealType = double>
13 // class extreme_value_distribution
14 
15 // bool operator=(const extreme_value_distribution& x,
16 //                const extreme_value_distribution& y);
17 // bool operator!(const extreme_value_distribution& x,
18 //                const extreme_value_distribution& y);
19 
20 #include <random>
21 #include <cassert>
22 
main()23 int main()
24 {
25     {
26         typedef std::extreme_value_distribution<> D;
27         D d1(2.5, 4);
28         D d2(2.5, 4);
29         assert(d1 == d2);
30     }
31     {
32         typedef std::extreme_value_distribution<> D;
33         D d1(2.5, 4);
34         D d2(2.5, 4.5);
35         assert(d1 != d2);
36     }
37 }
38