blob: e14425dff9828237262688b37e08849a16f04077 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- random -----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_RANDOM
12#define _LIBCPP_RANDOM
13
14/*
15 random synopsis
16
17#include <initializer_list>
18
19namespace std
20{
21
22// Engines
23
24template <class UIntType, UIntType a, UIntType c, UIntType m>
25class linear_congruential_engine
26{
27public:
28 // types
29 typedef UIntType result_type;
30
31 // engine characteristics
32 static constexpr result_type multiplier = a;
33 static constexpr result_type increment = c;
34 static constexpr result_type modulus = m;
35 static constexpr result_type min() { return c == 0u ? 1u: 0u;}
36 static constexpr result_type max() { return m - 1u;}
37 static constexpr result_type default_seed = 1u;
38
39 // constructors and seeding functions
40 explicit linear_congruential_engine(result_type s = default_seed);
41 template<class Sseq> explicit linear_congruential_engine(Sseq& q);
42 void seed(result_type s = default_seed);
43 template<class Sseq> void seed(Sseq& q);
44
45 // generating functions
46 result_type operator()();
47 void discard(unsigned long long z);
48};
49
50template <class UIntType, UIntType a, UIntType c, UIntType m>
51bool
52operator==(const linear_congruential_engine<UIntType, a, c, m>& x,
53 const linear_congruential_engine<UIntType, a, c, m>& y);
54
55template <class UIntType, UIntType a, UIntType c, UIntType m>
56bool
57operator!=(const linear_congruential_engine<UIntType, a, c, m>& x,
58 const linear_congruential_engine<UIntType, a, c, m>& y);
59
60template <class charT, class traits,
61 class UIntType, UIntType a, UIntType c, UIntType m>
62basic_ostream<charT, traits>&
63operator<<(basic_ostream<charT, traits>& os,
64 const linear_congruential_engine<UIntType, a, c, m>& x);
65
66template <class charT, class traits,
67 class UIntType, UIntType a, UIntType c, UIntType m>
68basic_istream<charT, traits>&
69operator>>(basic_istream<charT, traits>& is,
70 linear_congruential_engine<UIntType, a, c, m>& x);
71
72template <class UIntType, size_t w, size_t n, size_t m, size_t r,
73 UIntType a, size_t u, UIntType d, size_t s,
74 UIntType b, size_t t, UIntType c, size_t l, UIntType f>
75class mersenne_twister_engine
76{
77public:
78 // types
79 typedef UIntType result_type;
80
81 // engine characteristics
82 static constexpr size_t word_size = w;
83 static constexpr size_t state_size = n;
84 static constexpr size_t shift_size = m;
85 static constexpr size_t mask_bits = r;
86 static constexpr result_type xor_mask = a;
87 static constexpr size_t tempering_u = u;
88 static constexpr result_type tempering_d = d;
89 static constexpr size_t tempering_s = s;
90 static constexpr result_type tempering_b = b;
91 static constexpr size_t tempering_t = t;
92 static constexpr result_type tempering_c = c;
93 static constexpr size_t tempering_l = l;
94 static constexpr result_type initialization_multiplier = f;
95 static constexpr result_type min () { return 0; }
96 static constexpr result_type max() { return 2^w - 1; }
97 static constexpr result_type default_seed = 5489u;
98
99 // constructors and seeding functions
100 explicit mersenne_twister_engine(result_type value = default_seed);
101 template<class Sseq> explicit mersenne_twister_engine(Sseq& q);
102 void seed(result_type value = default_seed);
103 template<class Sseq> void seed(Sseq& q);
104
105 // generating functions
106 result_type operator()();
107 void discard(unsigned long long z);
108};
109
110template <class UIntType, size_t w, size_t n, size_t m, size_t r,
111 UIntType a, size_t u, UIntType d, size_t s,
112 UIntType b, size_t t, UIntType c, size_t l, UIntType f>
113bool
114operator==(
115 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x,
116 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& y);
117
118template <class UIntType, size_t w, size_t n, size_t m, size_t r,
119 UIntType a, size_t u, UIntType d, size_t s,
120 UIntType b, size_t t, UIntType c, size_t l, UIntType f>
121bool
122operator!=(
123 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x,
124 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& y);
125
126template <class charT, class traits,
127 class UIntType, size_t w, size_t n, size_t m, size_t r,
128 UIntType a, size_t u, UIntType d, size_t s,
129 UIntType b, size_t t, UIntType c, size_t l, UIntType f>
130basic_ostream<charT, traits>&
131operator<<(basic_ostream<charT, traits>& os,
132 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x);
133
134template <class charT, class traits,
135 class UIntType, size_t w, size_t n, size_t m, size_t r,
136 UIntType a, size_t u, UIntType d, size_t s,
137 UIntType b, size_t t, UIntType c, size_t l, UIntType f>
138basic_istream<charT, traits>&
139operator>>(basic_istream<charT, traits>& is,
140 mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x);
141
142template<class UIntType, size_t w, size_t s, size_t r>
143class subtract_with_carry_engine
144{
145public:
146 // types
147 typedef UIntType result_type;
148
149 // engine characteristics
150 static constexpr size_t word_size = w;
151 static constexpr size_t short_lag = s;
152 static constexpr size_t long_lag = r;
153 static constexpr result_type min() { return 0; }
154 static constexpr result_type max() { return m-1; }
155 static constexpr result_type default_seed = 19780503u;
156
157 // constructors and seeding functions
158 explicit subtract_with_carry_engine(result_type value = default_seed);
159 template<class Sseq> explicit subtract_with_carry_engine(Sseq& q);
160 void seed(result_type value = default_seed);
161 template<class Sseq> void seed(Sseq& q);
162
163 // generating functions
164 result_type operator()();
165 void discard(unsigned long long z);
166};
167
168template<class UIntType, size_t w, size_t s, size_t r>
169bool
170operator==(
171 const subtract_with_carry_engine<UIntType, w, s, r>& x,
172 const subtract_with_carry_engine<UIntType, w, s, r>& y);
173
174template<class UIntType, size_t w, size_t s, size_t r>
175bool
176operator!=(
177 const subtract_with_carry_engine<UIntType, w, s, r>& x,
178 const subtract_with_carry_engine<UIntType, w, s, r>& y);
179
180template <class charT, class traits,
181 class UIntType, size_t w, size_t s, size_t r>
182basic_ostream<charT, traits>&
183operator<<(basic_ostream<charT, traits>& os,
184 const subtract_with_carry_engine<UIntType, w, s, r>& x);
185
186template <class charT, class traits,
187 class UIntType, size_t w, size_t s, size_t r>
188basic_istream<charT, traits>&
189operator>>(basic_istream<charT, traits>& is,
190 subtract_with_carry_engine<UIntType, w, s, r>& x);
191
192template<class Engine, size_t p, size_t r>
193class discard_block_engine
194{
195public:
196 // types
197 typedef typename Engine::result_type result_type;
198
199 // engine characteristics
200 static constexpr size_t block_size = p;
201 static constexpr size_t used_block = r;
202 static constexpr result_type min() { return Engine::min(); }
203 static constexpr result_type max() { return Engine::max(); }
204
205 // constructors and seeding functions
206 discard_block_engine();
207 explicit discard_block_engine(const Engine& e);
208 explicit discard_block_engine(Engine&& e);
209 explicit discard_block_engine(result_type s);
210 template<class Sseq> explicit discard_block_engine(Sseq& q);
211 void seed();
212 void seed(result_type s);
213 template<class Sseq> void seed(Sseq& q);
214
215 // generating functions
216 result_type operator()();
217 void discard(unsigned long long z);
218
219 // property functions
220 const Engine& base() const;
221};
222
223template<class Engine, size_t p, size_t r>
224bool
225operator==(
226 const discard_block_engine<Engine, p, r>& x,
227 const discard_block_engine<Engine, p, r>& y);
228
229template<class Engine, size_t p, size_t r>
230bool
231operator!=(
232 const discard_block_engine<Engine, p, r>& x,
233 const discard_block_engine<Engine, p, r>& y);
234
235template <class charT, class traits,
236 class Engine, size_t p, size_t r>
237basic_ostream<charT, traits>&
238operator<<(basic_ostream<charT, traits>& os,
239 const discard_block_engine<Engine, p, r>& x);
240
241template <class charT, class traits,
242 class Engine, size_t p, size_t r>
243basic_istream<charT, traits>&
244operator>>(basic_istream<charT, traits>& is,
245 discard_block_engine<Engine, p, r>& x);
246
247template<class Engine, size_t w, class UIntType>
248class independent_bits_engine
249{
250public:
251 // types
252 typedef UIntType result_type;
253
254 // engine characteristics
255 static constexpr result_type min() { return 0; }
256 static constexpr result_type max() { return 2^w - 1; }
257
258 // constructors and seeding functions
259 independent_bits_engine();
260 explicit independent_bits_engine(const Engine& e);
261 explicit independent_bits_engine(Engine&& e);
262 explicit independent_bits_engine(result_type s);
263 template<class Sseq> explicit independent_bits_engine(Sseq& q);
264 void seed();
265 void seed(result_type s);
266 template<class Sseq> void seed(Sseq& q);
267
268 // generating functions
269 result_type operator()(); void discard(unsigned long long z);
270
271 // property functions
272 const Engine& base() const;
273};
274
275template<class Engine, size_t w, class UIntType>
276bool
277operator==(
278 const independent_bits_engine<Engine, w, UIntType>& x,
279 const independent_bits_engine<Engine, w, UIntType>& y);
280
281template<class Engine, size_t w, class UIntType>
282bool
283operator!=(
284 const independent_bits_engine<Engine, w, UIntType>& x,
285 const independent_bits_engine<Engine, w, UIntType>& y);
286
287template <class charT, class traits,
288 class Engine, size_t w, class UIntType>
289basic_ostream<charT, traits>&
290operator<<(basic_ostream<charT, traits>& os,
291 const independent_bits_engine<Engine, w, UIntType>& x);
292
293template <class charT, class traits,
294 class Engine, size_t w, class UIntType>
295basic_istream<charT, traits>&
296operator>>(basic_istream<charT, traits>& is,
297 independent_bits_engine<Engine, w, UIntType>& x);
298
299template<class Engine, size_t k>
300class shuffle_order_engine
301{
302public:
303 // types
304 typedef typename Engine::result_type result_type;
305
306 // engine characteristics
307 static constexpr size_t table_size = k;
308 static constexpr result_type min() { return Engine::min; }
309 static constexpr result_type max() { return Engine::max; }
310
311 // constructors and seeding functions
312 shuffle_order_engine();
313 explicit shuffle_order_engine(const Engine& e);
314 explicit shuffle_order_engine(Engine&& e);
315 explicit shuffle_order_engine(result_type s);
316 template<class Sseq> explicit shuffle_order_engine(Sseq& q);
317 void seed();
318 void seed(result_type s);
319 template<class Sseq> void seed(Sseq& q);
320
321 // generating functions
322 result_type operator()();
323 void discard(unsigned long long z);
324
325 // property functions
326 const Engine& base() const;
327};
328
329template<class Engine, size_t k>
330bool
331operator==(
332 const shuffle_order_engine<Engine, k>& x,
333 const shuffle_order_engine<Engine, k>& y);
334
335template<class Engine, size_t k>
336bool
337operator!=(
338 const shuffle_order_engine<Engine, k>& x,
339 const shuffle_order_engine<Engine, k>& y);
340
341template <class charT, class traits,
342 class Engine, size_t k>
343basic_ostream<charT, traits>&
344operator<<(basic_ostream<charT, traits>& os,
345 const shuffle_order_engine<Engine, k>& x);
346
347template <class charT, class traits,
348 class Engine, size_t k>
349basic_istream<charT, traits>&
350operator>>(basic_istream<charT, traits>& is,
351 shuffle_order_engine<Engine, k>& x);
352
353typedef linear_congruential_engine<uint_fast32_t, 16807, 0, 2147483647>
354 minstd_rand0;
355typedef linear_congruential_engine<uint_fast32_t, 48271, 0, 2147483647>
356 minstd_rand;
357typedef mersenne_twister_engine<uint_fast32_t, 32, 624, 397, 31,
358 0x9908b0df,
359 11, 0xffffffff,
360 7, 0x9d2c5680,
361 15, 0xefc60000,
362 18, 1812433253> mt19937;
363typedef mersenne_twister_engine<uint_fast64_t, 64, 312, 156, 31,
364 0xb5026f5aa96619e9,
365 29, 0x5555555555555555,
366 17, 0x71d67fffeda60000,
367 37, 0xfff7eee000000000,
368 43, 6364136223846793005> mt19937_64;
369typedef subtract_with_carry_engine<uint_fast32_t, 24, 10, 24> ranlux24_base;
370typedef subtract_with_carry_engine<uint_fast64_t, 48, 5, 12> ranlux48_base;
371typedef discard_block_engine<ranlux24_base, 223, 23> ranlux24;
372typedef discard_block_engine<ranlux48_base, 389, 11> ranlux48;
373typedef shuffle_order_engine<minstd_rand0, 256> knuth_b;
Howard Hinnantd6d11712010-05-20 15:11:46 +0000374typedef minstd_rand default_random_engine;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000375
376// Generators
377
378class random_device
379{
380public:
381 // types
382 typedef unsigned int result_type;
383
384 // generator characteristics
385 static constexpr result_type min() { return numeric_limits<result_type>::min(); }
386 static constexpr result_type max() { return numeric_limits<result_type>::max(); }
387
388 // constructors
389 explicit random_device(const string& token = "/dev/urandom");
390
391 // generating functions
392 result_type operator()();
393
394 // property functions
395 double entropy() const;
396
397 // no copy functions
398 random_device(const random_device& ) = delete;
399 void operator=(const random_device& ) = delete;
400};
401
402// Utilities
403
404class seed_seq
405{
406public:
407 // types
408 typedef uint_least32_t result_type;
409
410 // constructors
411 seed_seq();
412 template<class T>
413 seed_seq(initializer_list<T> il);
414 template<class InputIterator>
415 seed_seq(InputIterator begin, InputIterator end);
416
417 // generating functions
418 template<class RandomAccessIterator>
419 void generate(RandomAccessIterator begin, RandomAccessIterator end);
420
421 // property functions
422 size_t size() const;
423 template<class OutputIterator>
424 void param(OutputIterator dest) const;
425
426 // no copy functions
427 seed_seq(const seed_seq&) = delete;
428 void operator=(const seed_seq& ) = delete;
429};
430
431template<class RealType, size_t bits, class URNG>
432 RealType generate_canonical(URNG& g);
433
434// Distributions
435
436template<class IntType = int>
437class uniform_int_distribution
438{
439public:
440 // types
441 typedef IntType result_type;
442
443 class param_type
444 {
445 public:
446 typedef uniform_int_distribution distribution_type;
447
448 explicit param_type(IntType a = 0,
449 IntType b = numeric_limits<IntType>::max());
450
451 result_type a() const;
452 result_type b() const;
453
454 friend bool operator==(const param_type& x, const param_type& y);
455 friend bool operator!=(const param_type& x, const param_type& y);
456 };
457
458 // constructors and reset functions
459 explicit uniform_int_distribution(IntType a = 0,
460 IntType b = numeric_limits<IntType>::max());
461 explicit uniform_int_distribution(const param_type& parm);
462 void reset();
463
464 // generating functions
465 template<class URNG> result_type operator()(URNG& g);
466 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
467
468 // property functions
469 result_type a() const;
470 result_type b() const;
471
472 param_type param() const;
473 void param(const param_type& parm);
474
475 result_type min() const;
476 result_type max() const;
477
478 friend bool operator==(const uniform_int_distribution& x,
479 const uniform_int_distribution& y);
480 friend bool operator!=(const uniform_int_distribution& x,
481 const uniform_int_distribution& y);
482
483 template <class charT, class traits>
484 friend
485 basic_ostream<charT, traits>&
486 operator<<(basic_ostream<charT, traits>& os,
487 const uniform_int_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +0000488
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000489 template <class charT, class traits>
490 friend
491 basic_istream<charT, traits>&
492 operator>>(basic_istream<charT, traits>& is,
493 uniform_int_distribution& x);
494};
495
496template<class RealType = double>
497class uniform_real_distribution
498{
499public:
500 // types
501 typedef RealType result_type;
502
503 class param_type
504 {
505 public:
506 typedef uniform_real_distribution distribution_type;
507
508 explicit param_type(RealType a = 0,
509 RealType b = 1);
510
511 result_type a() const;
512 result_type b() const;
513
514 friend bool operator==(const param_type& x, const param_type& y);
515 friend bool operator!=(const param_type& x, const param_type& y);
516 };
517
518 // constructors and reset functions
519 explicit uniform_real_distribution(RealType a = 0.0, RealType b = 1.0);
520 explicit uniform_real_distribution(const param_type& parm);
521 void reset();
522
523 // generating functions
524 template<class URNG> result_type operator()(URNG& g);
525 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
526
527 // property functions
528 result_type a() const;
529 result_type b() const;
530
531 param_type param() const;
532 void param(const param_type& parm);
533
534 result_type min() const;
535 result_type max() const;
536
537 friend bool operator==(const uniform_real_distribution& x,
538 const uniform_real_distribution& y);
539 friend bool operator!=(const uniform_real_distribution& x,
540 const uniform_real_distribution& y);
541
542 template <class charT, class traits>
543 friend
544 basic_ostream<charT, traits>&
545 operator<<(basic_ostream<charT, traits>& os,
546 const uniform_real_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +0000547
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000548 template <class charT, class traits>
549 friend
550 basic_istream<charT, traits>&
551 operator>>(basic_istream<charT, traits>& is,
552 uniform_real_distribution& x);
553};
554
555class bernoulli_distribution
556{
557public:
558 // types
559 typedef bool result_type;
560
561 class param_type
562 {
563 public:
564 typedef bernoulli_distribution distribution_type;
565
566 explicit param_type(double p = 0.5);
567
568 double p() const;
569
570 friend bool operator==(const param_type& x, const param_type& y);
571 friend bool operator!=(const param_type& x, const param_type& y);
572 };
573
574 // constructors and reset functions
575 explicit bernoulli_distribution(double p = 0.5);
576 explicit bernoulli_distribution(const param_type& parm);
577 void reset();
578
579 // generating functions
580 template<class URNG> result_type operator()(URNG& g);
581 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
582
583 // property functions
584 double p() const;
585
586 param_type param() const;
587 void param(const param_type& parm);
588
589 result_type min() const;
590 result_type max() const;
591
592 friend bool operator==(const bernoulli_distribution& x,
593 const bernoulli_distribution& y);
594 friend bool operator!=(const bernoulli_distribution& x,
595 const bernoulli_distribution& y);
596
597 template <class charT, class traits>
598 friend
599 basic_ostream<charT, traits>&
600 operator<<(basic_ostream<charT, traits>& os,
601 const bernoulli_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +0000602
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000603 template <class charT, class traits>
604 friend
605 basic_istream<charT, traits>&
606 operator>>(basic_istream<charT, traits>& is,
607 bernoulli_distribution& x);
608};
609
610template<class IntType = int>
Howard Hinnant03aad812010-05-11 23:26:59 +0000611class binomial_distribution
612{
613public:
614 // types
615 typedef IntType result_type;
616
617 class param_type
618 {
619 public:
620 typedef binomial_distribution distribution_type;
621
622 explicit param_type(IntType t = 1, double p = 0.5);
623
624 IntType t() const;
625 double p() const;
626
627 friend bool operator==(const param_type& x, const param_type& y);
628 friend bool operator!=(const param_type& x, const param_type& y);
629 };
630
631 // constructors and reset functions
632 explicit binomial_distribution(IntType t = 1, double p = 0.5);
633 explicit binomial_distribution(const param_type& parm);
634 void reset();
635
636 // generating functions
637 template<class URNG> result_type operator()(URNG& g);
638 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
639
640 // property functions
641 IntType t() const;
642 double p() const;
643
644 param_type param() const;
645 void param(const param_type& parm);
646
647 result_type min() const;
648 result_type max() const;
649
650 friend bool operator==(const binomial_distribution& x,
651 const binomial_distribution& y);
652 friend bool operator!=(const binomial_distribution& x,
653 const binomial_distribution& y);
654
655 template <class charT, class traits>
656 friend
657 basic_ostream<charT, traits>&
658 operator<<(basic_ostream<charT, traits>& os,
659 const binomial_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +0000660
Howard Hinnant03aad812010-05-11 23:26:59 +0000661 template <class charT, class traits>
662 friend
663 basic_istream<charT, traits>&
664 operator>>(basic_istream<charT, traits>& is,
665 binomial_distribution& x);
666};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000667
668template<class IntType = int>
Howard Hinnant34e8a572010-05-17 13:44:27 +0000669class geometric_distribution
670{
671public:
672 // types
673 typedef IntType result_type;
674
675 class param_type
676 {
677 public:
678 typedef geometric_distribution distribution_type;
679
680 explicit param_type(double p = 0.5);
681
682 double p() const;
683
684 friend bool operator==(const param_type& x, const param_type& y);
685 friend bool operator!=(const param_type& x, const param_type& y);
686 };
687
688 // constructors and reset functions
689 explicit geometric_distribution(double p = 0.5);
690 explicit geometric_distribution(const param_type& parm);
691 void reset();
692
693 // generating functions
694 template<class URNG> result_type operator()(URNG& g);
695 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
696
697 // property functions
698 double p() const;
699
700 param_type param() const;
701 void param(const param_type& parm);
702
703 result_type min() const;
704 result_type max() const;
705
706 friend bool operator==(const geometric_distribution& x,
707 const geometric_distribution& y);
708 friend bool operator!=(const geometric_distribution& x,
709 const geometric_distribution& y);
710
711 template <class charT, class traits>
712 friend
713 basic_ostream<charT, traits>&
714 operator<<(basic_ostream<charT, traits>& os,
715 const geometric_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +0000716
Howard Hinnant34e8a572010-05-17 13:44:27 +0000717 template <class charT, class traits>
718 friend
719 basic_istream<charT, traits>&
720 operator>>(basic_istream<charT, traits>& is,
721 geometric_distribution& x);
722};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000723
724template<class IntType = int>
Howard Hinnantf2fe5d52010-05-17 00:09:38 +0000725class negative_binomial_distribution
726{
727public:
728 // types
729 typedef IntType result_type;
730
731 class param_type
732 {
733 public:
734 typedef negative_binomial_distribution distribution_type;
735
736 explicit param_type(result_type k = 1, double p = 0.5);
737
738 result_type k() const;
739 double p() const;
740
741 friend bool operator==(const param_type& x, const param_type& y);
742 friend bool operator!=(const param_type& x, const param_type& y);
743 };
744
745 // constructor and reset functions
746 explicit negative_binomial_distribution(result_type k = 1, double p = 0.5);
747 explicit negative_binomial_distribution(const param_type& parm);
748 void reset();
749
750 // generating functions
751 template<class URNG> result_type operator()(URNG& g);
752 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
753
754 // property functions
755 result_type k() const;
756 double p() const;
757
758 param_type param() const;
759 void param(const param_type& parm);
760
761 result_type min() const;
762 result_type max() const;
763
764 friend bool operator==(const negative_binomial_distribution& x,
765 const negative_binomial_distribution& y);
766 friend bool operator!=(const negative_binomial_distribution& x,
767 const negative_binomial_distribution& y);
768
769 template <class charT, class traits>
770 friend
771 basic_ostream<charT, traits>&
772 operator<<(basic_ostream<charT, traits>& os,
773 const negative_binomial_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +0000774
Howard Hinnantf2fe5d52010-05-17 00:09:38 +0000775 template <class charT, class traits>
776 friend
777 basic_istream<charT, traits>&
778 operator>>(basic_istream<charT, traits>& is,
779 negative_binomial_distribution& x);
780};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000781
782template<class IntType = int>
Howard Hinnant4ff556c2010-05-14 21:38:54 +0000783class poisson_distribution
784{
785public:
786 // types
787 typedef IntType result_type;
788
789 class param_type
790 {
791 public:
792 typedef poisson_distribution distribution_type;
793
794 explicit param_type(double mean = 1.0);
795
796 double mean() const;
797
798 friend bool operator==(const param_type& x, const param_type& y);
799 friend bool operator!=(const param_type& x, const param_type& y);
800 };
801
802 // constructors and reset functions
803 explicit poisson_distribution(double mean = 1.0);
804 explicit poisson_distribution(const param_type& parm);
805 void reset();
806
807 // generating functions
808 template<class URNG> result_type operator()(URNG& g);
809 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
810
811 // property functions
812 double mean() const;
813
814 param_type param() const;
815 void param(const param_type& parm);
816
817 result_type min() const;
818 result_type max() const;
819
820 friend bool operator==(const poisson_distribution& x,
821 const poisson_distribution& y);
822 friend bool operator!=(const poisson_distribution& x,
823 const poisson_distribution& y);
824
825 template <class charT, class traits>
826 friend
827 basic_ostream<charT, traits>&
828 operator<<(basic_ostream<charT, traits>& os,
829 const poisson_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +0000830
Howard Hinnant4ff556c2010-05-14 21:38:54 +0000831 template <class charT, class traits>
832 friend
833 basic_istream<charT, traits>&
834 operator>>(basic_istream<charT, traits>& is,
835 poisson_distribution& x);
836};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000837
838template<class RealType = double>
Howard Hinnant30a840f2010-05-12 17:08:57 +0000839class exponential_distribution
840{
841public:
842 // types
843 typedef RealType result_type;
844
845 class param_type
846 {
847 public:
848 typedef exponential_distribution distribution_type;
849
Howard Hinnanta64111c2010-05-12 21:02:31 +0000850 explicit param_type(result_type lambda = 1.0);
Howard Hinnant30a840f2010-05-12 17:08:57 +0000851
Howard Hinnanta64111c2010-05-12 21:02:31 +0000852 result_type lambda() const;
Howard Hinnant30a840f2010-05-12 17:08:57 +0000853
854 friend bool operator==(const param_type& x, const param_type& y);
855 friend bool operator!=(const param_type& x, const param_type& y);
856 };
857
858 // constructors and reset functions
Howard Hinnanta64111c2010-05-12 21:02:31 +0000859 explicit exponential_distribution(result_type lambda = 1.0);
Howard Hinnant30a840f2010-05-12 17:08:57 +0000860 explicit exponential_distribution(const param_type& parm);
861 void reset();
862
863 // generating functions
864 template<class URNG> result_type operator()(URNG& g);
865 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
866
867 // property functions
Howard Hinnanta64111c2010-05-12 21:02:31 +0000868 result_type lambda() const;
Howard Hinnant30a840f2010-05-12 17:08:57 +0000869
870 param_type param() const;
871 void param(const param_type& parm);
872
873 result_type min() const;
874 result_type max() const;
875
876 friend bool operator==(const exponential_distribution& x,
877 const exponential_distribution& y);
878 friend bool operator!=(const exponential_distribution& x,
879 const exponential_distribution& y);
880
881 template <class charT, class traits>
882 friend
883 basic_ostream<charT, traits>&
884 operator<<(basic_ostream<charT, traits>& os,
885 const exponential_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +0000886
Howard Hinnant30a840f2010-05-12 17:08:57 +0000887 template <class charT, class traits>
888 friend
889 basic_istream<charT, traits>&
890 operator>>(basic_istream<charT, traits>& is,
891 exponential_distribution& x);
892};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000893
894template<class RealType = double>
Howard Hinnantc7c49132010-05-13 17:58:28 +0000895class gamma_distribution
896{
897public:
898 // types
899 typedef RealType result_type;
900
901 class param_type
902 {
903 public:
904 typedef gamma_distribution distribution_type;
905
906 explicit param_type(result_type alpha = 1, result_type beta = 1);
907
908 result_type alpha() const;
909 result_type beta() const;
910
911 friend bool operator==(const param_type& x, const param_type& y);
912 friend bool operator!=(const param_type& x, const param_type& y);
913 };
914
915 // constructors and reset functions
916 explicit gamma_distribution(result_type alpha = 1, result_type beta = 1);
917 explicit gamma_distribution(const param_type& parm);
918 void reset();
919
920 // generating functions
921 template<class URNG> result_type operator()(URNG& g);
922 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
923
924 // property functions
925 result_type alpha() const;
926 result_type beta() const;
927
928 param_type param() const;
929 void param(const param_type& parm);
930
931 result_type min() const;
932 result_type max() const;
933
934 friend bool operator==(const gamma_distribution& x,
935 const gamma_distribution& y);
936 friend bool operator!=(const gamma_distribution& x,
937 const gamma_distribution& y);
938
939 template <class charT, class traits>
940 friend
941 basic_ostream<charT, traits>&
942 operator<<(basic_ostream<charT, traits>& os,
943 const gamma_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +0000944
Howard Hinnantc7c49132010-05-13 17:58:28 +0000945 template <class charT, class traits>
946 friend
947 basic_istream<charT, traits>&
948 operator>>(basic_istream<charT, traits>& is,
949 gamma_distribution& x);
950};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000951
952template<class RealType = double>
Howard Hinnant9de6e302010-05-16 01:09:02 +0000953class weibull_distribution
954{
955public:
956 // types
957 typedef RealType result_type;
958
959 class param_type
960 {
961 public:
962 typedef weibull_distribution distribution_type;
963
964 explicit param_type(result_type alpha = 1, result_type beta = 1);
965
966 result_type a() const;
967 result_type b() const;
968
969 friend bool operator==(const param_type& x, const param_type& y);
970 friend bool operator!=(const param_type& x, const param_type& y);
971 };
972
973 // constructor and reset functions
974 explicit weibull_distribution(result_type a = 1, result_type b = 1);
975 explicit weibull_distribution(const param_type& parm);
976 void reset();
977
978 // generating functions
979 template<class URNG> result_type operator()(URNG& g);
980 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
981
982 // property functions
983 result_type a() const;
984 result_type b() const;
985
986 param_type param() const;
987 void param(const param_type& parm);
988
989 result_type min() const;
990 result_type max() const;
991
Howard Hinnant9de6e302010-05-16 01:09:02 +0000992 friend bool operator==(const weibull_distribution& x,
993 const weibull_distribution& y);
994 friend bool operator!=(const weibull_distribution& x,
995 const weibull_distribution& y);
996
997 template <class charT, class traits>
998 friend
999 basic_ostream<charT, traits>&
1000 operator<<(basic_ostream<charT, traits>& os,
1001 const weibull_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001002
Howard Hinnant9de6e302010-05-16 01:09:02 +00001003 template <class charT, class traits>
1004 friend
1005 basic_istream<charT, traits>&
1006 operator>>(basic_istream<charT, traits>& is,
1007 weibull_distribution& x);
1008};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001009
1010template<class RealType = double>
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00001011class extreme_value_distribution
1012{
1013public:
1014 // types
1015 typedef RealType result_type;
1016
1017 class param_type
1018 {
1019 public:
1020 typedef extreme_value_distribution distribution_type;
1021
1022 explicit param_type(result_type a = 0, result_type b = 1);
1023
1024 result_type a() const;
1025 result_type b() const;
1026
1027 friend bool operator==(const param_type& x, const param_type& y);
1028 friend bool operator!=(const param_type& x, const param_type& y);
1029 };
1030
1031 // constructor and reset functions
1032 explicit extreme_value_distribution(result_type a = 0, result_type b = 1);
1033 explicit extreme_value_distribution(const param_type& parm);
1034 void reset();
1035
1036 // generating functions
1037 template<class URNG> result_type operator()(URNG& g);
1038 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1039
1040 // property functions
1041 result_type a() const;
1042 result_type b() const;
1043
1044 param_type param() const;
1045 void param(const param_type& parm);
1046
1047 result_type min() const;
1048 result_type max() const;
1049
1050 friend bool operator==(const extreme_value_distribution& x,
1051 const extreme_value_distribution& y);
1052 friend bool operator!=(const extreme_value_distribution& x,
1053 const extreme_value_distribution& y);
1054
1055 template <class charT, class traits>
1056 friend
1057 basic_ostream<charT, traits>&
1058 operator<<(basic_ostream<charT, traits>& os,
1059 const extreme_value_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001060
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00001061 template <class charT, class traits>
1062 friend
1063 basic_istream<charT, traits>&
1064 operator>>(basic_istream<charT, traits>& is,
1065 extreme_value_distribution& x);
1066};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001067
1068template<class RealType = double>
Howard Hinnanta64111c2010-05-12 21:02:31 +00001069class normal_distribution
1070{
1071public:
1072 // types
1073 typedef RealType result_type;
1074
1075 class param_type
1076 {
1077 public:
1078 typedef normal_distribution distribution_type;
1079
1080 explicit param_type(result_type mean = 0, result_type stddev = 1);
1081
1082 result_type mean() const;
1083 result_type stddev() const;
1084
1085 friend bool operator==(const param_type& x, const param_type& y);
1086 friend bool operator!=(const param_type& x, const param_type& y);
1087 };
1088
1089 // constructors and reset functions
1090 explicit normal_distribution(result_type mean = 0, result_type stddev = 1);
1091 explicit normal_distribution(const param_type& parm);
1092 void reset();
1093
1094 // generating functions
1095 template<class URNG> result_type operator()(URNG& g);
1096 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1097
1098 // property functions
1099 result_type mean() const;
1100 result_type stddev() const;
1101
1102 param_type param() const;
1103 void param(const param_type& parm);
1104
1105 result_type min() const;
1106 result_type max() const;
1107
1108 friend bool operator==(const normal_distribution& x,
1109 const normal_distribution& y);
1110 friend bool operator!=(const normal_distribution& x,
1111 const normal_distribution& y);
1112
1113 template <class charT, class traits>
1114 friend
1115 basic_ostream<charT, traits>&
1116 operator<<(basic_ostream<charT, traits>& os,
1117 const normal_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001118
Howard Hinnanta64111c2010-05-12 21:02:31 +00001119 template <class charT, class traits>
1120 friend
1121 basic_istream<charT, traits>&
1122 operator>>(basic_istream<charT, traits>& is,
1123 normal_distribution& x);
1124};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001125
1126template<class RealType = double>
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00001127class lognormal_distribution
1128{
1129public:
1130 // types
1131 typedef RealType result_type;
1132
1133 class param_type
1134 {
1135 public:
1136 typedef lognormal_distribution distribution_type;
1137
1138 explicit param_type(result_type m = 0, result_type s = 1);
1139
1140 result_type m() const;
1141 result_type s() const;
1142
1143 friend bool operator==(const param_type& x, const param_type& y);
1144 friend bool operator!=(const param_type& x, const param_type& y);
1145 };
1146
1147 // constructor and reset functions
1148 explicit lognormal_distribution(result_type m = 0, result_type s = 1);
1149 explicit lognormal_distribution(const param_type& parm);
1150 void reset();
1151
1152 // generating functions
1153 template<class URNG> result_type operator()(URNG& g);
1154 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1155
1156 // property functions
1157 result_type m() const;
1158 result_type s() const;
1159
1160 param_type param() const;
1161 void param(const param_type& parm);
1162
1163 result_type min() const;
1164 result_type max() const;
1165
1166 friend bool operator==(const lognormal_distribution& x,
1167 const lognormal_distribution& y);
1168 friend bool operator!=(const lognormal_distribution& x,
1169 const lognormal_distribution& y);
1170
1171 template <class charT, class traits>
1172 friend
1173 basic_ostream<charT, traits>&
1174 operator<<(basic_ostream<charT, traits>& os,
1175 const lognormal_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001176
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00001177 template <class charT, class traits>
1178 friend
1179 basic_istream<charT, traits>&
1180 operator>>(basic_istream<charT, traits>& is,
1181 lognormal_distribution& x);
1182};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001183
1184template<class RealType = double>
Howard Hinnant97dc2f32010-05-15 23:36:00 +00001185class chi_squared_distribution
1186{
1187public:
1188 // types
1189 typedef RealType result_type;
1190
1191 class param_type
1192 {
1193 public:
1194 typedef chi_squared_distribution distribution_type;
1195
1196 explicit param_type(result_type n = 1);
1197
1198 result_type n() const;
1199
1200 friend bool operator==(const param_type& x, const param_type& y);
1201 friend bool operator!=(const param_type& x, const param_type& y);
1202 };
1203
1204 // constructor and reset functions
1205 explicit chi_squared_distribution(result_type n = 1);
1206 explicit chi_squared_distribution(const param_type& parm);
1207 void reset();
1208
1209 // generating functions
1210 template<class URNG> result_type operator()(URNG& g);
1211 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1212
1213 // property functions
1214 result_type n() const;
1215
1216 param_type param() const;
1217 void param(const param_type& parm);
1218
1219 result_type min() const;
1220 result_type max() const;
1221
Howard Hinnant97dc2f32010-05-15 23:36:00 +00001222 friend bool operator==(const chi_squared_distribution& x,
1223 const chi_squared_distribution& y);
1224 friend bool operator!=(const chi_squared_distribution& x,
1225 const chi_squared_distribution& y);
1226
1227 template <class charT, class traits>
1228 friend
1229 basic_ostream<charT, traits>&
1230 operator<<(basic_ostream<charT, traits>& os,
1231 const chi_squared_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001232
Howard Hinnant97dc2f32010-05-15 23:36:00 +00001233 template <class charT, class traits>
1234 friend
1235 basic_istream<charT, traits>&
1236 operator>>(basic_istream<charT, traits>& is,
1237 chi_squared_distribution& x);
1238};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001239
1240template<class RealType = double>
Howard Hinnantd7d01132010-05-17 21:55:46 +00001241class cauchy_distribution
1242{
1243public:
1244 // types
1245 typedef RealType result_type;
1246
1247 class param_type
1248 {
1249 public:
1250 typedef cauchy_distribution distribution_type;
1251
1252 explicit param_type(result_type a = 0, result_type b = 1);
1253
1254 result_type a() const;
1255 result_type b() const;
1256
1257 friend bool operator==(const param_type& x, const param_type& y);
1258 friend bool operator!=(const param_type& x, const param_type& y);
1259 };
1260
1261 // constructor and reset functions
1262 explicit cauchy_distribution(result_type a = 0, result_type b = 1);
1263 explicit cauchy_distribution(const param_type& parm);
1264 void reset();
1265
1266 // generating functions
1267 template<class URNG> result_type operator()(URNG& g);
1268 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1269
1270 // property functions
1271 result_type a() const;
1272 result_type b() const;
1273
1274 param_type param() const;
1275 void param(const param_type& parm);
1276
1277 result_type min() const;
1278 result_type max() const;
1279
1280 friend bool operator==(const cauchy_distribution& x,
1281 const cauchy_distribution& y);
1282 friend bool operator!=(const cauchy_distribution& x,
1283 const cauchy_distribution& y);
1284
1285 template <class charT, class traits>
1286 friend
1287 basic_ostream<charT, traits>&
1288 operator<<(basic_ostream<charT, traits>& os,
1289 const cauchy_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001290
Howard Hinnantd7d01132010-05-17 21:55:46 +00001291 template <class charT, class traits>
1292 friend
1293 basic_istream<charT, traits>&
1294 operator>>(basic_istream<charT, traits>& is,
1295 cauchy_distribution& x);
1296};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001297
1298template<class RealType = double>
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00001299class fisher_f_distribution
1300{
1301public:
1302 // types
1303 typedef RealType result_type;
1304
1305 class param_type
1306 {
1307 public:
Howard Hinnant321b4bb2010-05-18 20:08:04 +00001308 typedef fisher_f_distribution distribution_type;
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00001309
1310 explicit param_type(result_type m = 1, result_type n = 1);
1311
1312 result_type m() const;
1313 result_type n() const;
1314
1315 friend bool operator==(const param_type& x, const param_type& y);
1316 friend bool operator!=(const param_type& x, const param_type& y);
1317 };
1318
1319 // constructor and reset functions
1320 explicit fisher_f_distribution(result_type m = 1, result_type n = 1);
1321 explicit fisher_f_distribution(const param_type& parm);
1322 void reset();
1323
1324 // generating functions
1325 template<class URNG> result_type operator()(URNG& g);
1326 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1327
1328 // property functions
1329 result_type m() const;
1330 result_type n() const;
1331
1332 param_type param() const;
1333 void param(const param_type& parm);
1334
1335 result_type min() const;
1336 result_type max() const;
1337
1338 friend bool operator==(const fisher_f_distribution& x,
1339 const fisher_f_distribution& y);
1340 friend bool operator!=(const fisher_f_distribution& x,
1341 const fisher_f_distribution& y);
1342
1343 template <class charT, class traits>
1344 friend
1345 basic_ostream<charT, traits>&
1346 operator<<(basic_ostream<charT, traits>& os,
1347 const fisher_f_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001348
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00001349 template <class charT, class traits>
1350 friend
1351 basic_istream<charT, traits>&
1352 operator>>(basic_istream<charT, traits>& is,
1353 fisher_f_distribution& x);
1354};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001355
1356template<class RealType = double>
Howard Hinnant321b4bb2010-05-18 20:08:04 +00001357class student_t_distribution
1358{
1359public:
1360 // types
1361 typedef RealType result_type;
1362
1363 class param_type
1364 {
1365 public:
1366 typedef student_t_distribution distribution_type;
1367
1368 explicit param_type(result_type n = 1);
1369
1370 result_type n() const;
1371
1372 friend bool operator==(const param_type& x, const param_type& y);
1373 friend bool operator!=(const param_type& x, const param_type& y);
1374 };
1375
1376 // constructor and reset functions
1377 explicit student_t_distribution(result_type n = 1);
1378 explicit student_t_distribution(const param_type& parm);
1379 void reset();
1380
1381 // generating functions
1382 template<class URNG> result_type operator()(URNG& g);
1383 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1384
1385 // property functions
1386 result_type n() const;
1387
1388 param_type param() const;
1389 void param(const param_type& parm);
1390
1391 result_type min() const;
1392 result_type max() const;
1393
1394 friend bool operator==(const student_t_distribution& x,
1395 const student_t_distribution& y);
1396 friend bool operator!=(const student_t_distribution& x,
1397 const student_t_distribution& y);
1398
1399 template <class charT, class traits>
1400 friend
1401 basic_ostream<charT, traits>&
1402 operator<<(basic_ostream<charT, traits>& os,
1403 const student_t_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001404
Howard Hinnant321b4bb2010-05-18 20:08:04 +00001405 template <class charT, class traits>
1406 friend
1407 basic_istream<charT, traits>&
1408 operator>>(basic_istream<charT, traits>& is,
1409 student_t_distribution& x);
1410};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001411
1412template<class IntType = int>
Howard Hinnant551d8e42010-05-19 01:53:57 +00001413class discrete_distribution
1414{
1415public:
1416 // types
1417 typedef IntType result_type;
1418
1419 class param_type
1420 {
1421 public:
1422 typedef discrete_distribution distribution_type;
1423
1424 param_type();
1425 template<class InputIterator>
1426 param_type(InputIterator firstW, InputIterator lastW);
1427 param_type(initializer_list<double> wl);
1428 template<class UnaryOperation>
1429 param_type(size_t nw, double xmin, double xmax, UnaryOperation fw);
1430
1431 vector<double> probabilities() const;
1432
1433 friend bool operator==(const param_type& x, const param_type& y);
1434 friend bool operator!=(const param_type& x, const param_type& y);
1435 };
1436
1437 // constructor and reset functions
1438 discrete_distribution();
1439 template<class InputIterator>
1440 discrete_distribution(InputIterator firstW, InputIterator lastW);
1441 discrete_distribution(initializer_list<double> wl);
1442 template<class UnaryOperation>
1443 discrete_distribution(size_t nw, double xmin, double xmax,
1444 UnaryOperation fw);
1445 explicit discrete_distribution(const param_type& parm);
1446 void reset();
1447
1448 // generating functions
1449 template<class URNG> result_type operator()(URNG& g);
1450 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1451
1452 // property functions
1453 vector<double> probabilities() const;
1454
1455 param_type param() const;
1456 void param(const param_type& parm);
1457
1458 result_type min() const;
1459 result_type max() const;
1460
1461 friend bool operator==(const discrete_distribution& x,
1462 const discrete_distribution& y);
1463 friend bool operator!=(const discrete_distribution& x,
1464 const discrete_distribution& y);
1465
1466 template <class charT, class traits>
1467 friend
1468 basic_ostream<charT, traits>&
1469 operator<<(basic_ostream<charT, traits>& os,
1470 const discrete_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001471
Howard Hinnant551d8e42010-05-19 01:53:57 +00001472 template <class charT, class traits>
1473 friend
1474 basic_istream<charT, traits>&
1475 operator>>(basic_istream<charT, traits>& is,
1476 discrete_distribution& x);
1477};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001478
1479template<class RealType = double>
Howard Hinnantd6d11712010-05-20 15:11:46 +00001480class piecewise_constant_distribution
1481{
1482 // types
1483 typedef RealType result_type;
1484
1485 class param_type
1486 {
1487 public:
1488 typedef piecewise_constant_distribution distribution_type;
1489
1490 param_type();
1491 template<class InputIteratorB, class InputIteratorW>
1492 param_type(InputIteratorB firstB, InputIteratorB lastB,
1493 InputIteratorW firstW);
1494 template<class UnaryOperation>
1495 param_type(initializer_list<result_type> bl, UnaryOperation fw);
1496 template<class UnaryOperation>
1497 param_type(size_t nw, result_type xmin, result_type xmax,
1498 UnaryOperation fw);
1499
1500 vector<result_type> intervals() const;
Howard Hinnant995676a2010-11-18 17:34:48 +00001501 vector<result_type> densities() const;
Howard Hinnantd6d11712010-05-20 15:11:46 +00001502
1503 friend bool operator==(const param_type& x, const param_type& y);
1504 friend bool operator!=(const param_type& x, const param_type& y);
1505 };
1506
1507 // constructor and reset functions
1508 piecewise_constant_distribution();
1509 template<class InputIteratorB, class InputIteratorW>
1510 piecewise_constant_distribution(InputIteratorB firstB,
1511 InputIteratorB lastB,
1512 InputIteratorW firstW);
1513 template<class UnaryOperation>
1514 piecewise_constant_distribution(initializer_list<result_type> bl,
1515 UnaryOperation fw);
1516 template<class UnaryOperation>
1517 piecewise_constant_distribution(size_t nw, result_type xmin,
1518 result_type xmax, UnaryOperation fw);
1519 explicit piecewise_constant_distribution(const param_type& parm);
1520 void reset();
1521
1522 // generating functions
1523 template<class URNG> result_type operator()(URNG& g);
1524 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1525
1526 // property functions
1527 vector<result_type> intervals() const;
Howard Hinnant995676a2010-11-18 17:34:48 +00001528 vector<result_type> densities() const;
Howard Hinnantd6d11712010-05-20 15:11:46 +00001529
1530 param_type param() const;
1531 void param(const param_type& parm);
1532
1533 result_type min() const;
1534 result_type max() const;
1535
1536 friend bool operator==(const piecewise_constant_distribution& x,
1537 const piecewise_constant_distribution& y);
1538 friend bool operator!=(const piecewise_constant_distribution& x,
1539 const piecewise_constant_distribution& y);
1540
1541 template <class charT, class traits>
1542 friend
1543 basic_ostream<charT, traits>&
1544 operator<<(basic_ostream<charT, traits>& os,
1545 const piecewise_constant_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001546
Howard Hinnantd6d11712010-05-20 15:11:46 +00001547 template <class charT, class traits>
1548 friend
1549 basic_istream<charT, traits>&
1550 operator>>(basic_istream<charT, traits>& is,
1551 piecewise_constant_distribution& x);
1552};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001553
1554template<class RealType = double>
Howard Hinnant54305402010-05-25 00:27:34 +00001555class piecewise_linear_distribution
1556{
1557 // types
1558 typedef RealType result_type;
1559
1560 class param_type
1561 {
1562 public:
1563 typedef piecewise_linear_distribution distribution_type;
1564
1565 param_type();
1566 template<class InputIteratorB, class InputIteratorW>
1567 param_type(InputIteratorB firstB, InputIteratorB lastB,
1568 InputIteratorW firstW);
1569 template<class UnaryOperation>
1570 param_type(initializer_list<result_type> bl, UnaryOperation fw);
1571 template<class UnaryOperation>
1572 param_type(size_t nw, result_type xmin, result_type xmax,
1573 UnaryOperation fw);
1574
1575 vector<result_type> intervals() const;
Howard Hinnant995676a2010-11-18 17:34:48 +00001576 vector<result_type> densities() const;
Howard Hinnant54305402010-05-25 00:27:34 +00001577
1578 friend bool operator==(const param_type& x, const param_type& y);
1579 friend bool operator!=(const param_type& x, const param_type& y);
1580 };
1581
1582 // constructor and reset functions
1583 piecewise_linear_distribution();
1584 template<class InputIteratorB, class InputIteratorW>
1585 piecewise_linear_distribution(InputIteratorB firstB,
1586 InputIteratorB lastB,
1587 InputIteratorW firstW);
Howard Hinnant324bb032010-08-22 00:02:43 +00001588
Howard Hinnant54305402010-05-25 00:27:34 +00001589 template<class UnaryOperation>
1590 piecewise_linear_distribution(initializer_list<result_type> bl,
1591 UnaryOperation fw);
1592
1593 template<class UnaryOperation>
1594 piecewise_linear_distribution(size_t nw, result_type xmin,
1595 result_type xmax, UnaryOperation fw);
1596
1597 explicit piecewise_linear_distribution(const param_type& parm);
1598 void reset();
1599
1600 // generating functions
1601 template<class URNG> result_type operator()(URNG& g);
1602 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
1603
1604 // property functions
1605 vector<result_type> intervals() const;
Howard Hinnant995676a2010-11-18 17:34:48 +00001606 vector<result_type> densities() const;
Howard Hinnant54305402010-05-25 00:27:34 +00001607
1608 param_type param() const;
1609 void param(const param_type& parm);
1610
1611 result_type min() const;
1612 result_type max() const;
1613
1614 friend bool operator==(const piecewise_linear_distribution& x,
1615 const piecewise_linear_distribution& y);
1616 friend bool operator!=(const piecewise_linear_distribution& x,
1617 const piecewise_linear_distribution& y);
1618
1619 template <class charT, class traits>
1620 friend
1621 basic_ostream<charT, traits>&
1622 operator<<(basic_ostream<charT, traits>& os,
1623 const piecewise_linear_distribution& x);
Howard Hinnant324bb032010-08-22 00:02:43 +00001624
Howard Hinnant54305402010-05-25 00:27:34 +00001625 template <class charT, class traits>
1626 friend
1627 basic_istream<charT, traits>&
1628 operator>>(basic_istream<charT, traits>& is,
1629 piecewise_linear_distribution& x);
1630};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001631
1632} // std
1633*/
1634
1635#include <__config>
1636#include <cstddef>
1637#include <type_traits>
1638#include <initializer_list>
1639#include <cstdint>
1640#include <limits>
1641#include <algorithm>
Howard Hinnant551d8e42010-05-19 01:53:57 +00001642#include <numeric>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001643#include <vector>
1644#include <string>
1645#include <istream>
1646#include <ostream>
Howard Hinnant30a840f2010-05-12 17:08:57 +00001647#include <cmath>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001648
Howard Hinnant66c6f972011-11-29 16:45:27 +00001649#include <__undef_min_max>
1650
Howard Hinnant08e17472011-10-17 20:05:10 +00001651#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001652#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +00001653#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001654
1655_LIBCPP_BEGIN_NAMESPACE_STD
1656
Howard Hinnantef3b2e22011-04-11 18:22:12 +00001657// __is_seed_sequence
1658
1659template <class _Sseq, class _Engine>
1660struct __is_seed_sequence
1661{
1662 static const bool value =
1663 !is_convertible<_Sseq, typename _Engine::result_type>::value &&
1664 !is_same<typename remove_cv<_Sseq>::type, _Engine>::value;
1665};
1666
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001667// linear_congruential_engine
1668
1669template <unsigned long long __a, unsigned long long __c,
1670 unsigned long long __m, unsigned long long _M,
1671 bool _MightOverflow = (__a != 0 && __m != 0 && __m-1 > (_M-__c)/__a)>
1672struct __lce_ta;
1673
1674// 64
1675
1676template <unsigned long long __a, unsigned long long __c, unsigned long long __m>
1677struct __lce_ta<__a, __c, __m, (unsigned long long)(~0), true>
1678{
1679 typedef unsigned long long result_type;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001680 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001681 static result_type next(result_type __x)
1682 {
1683 // Schrage's algorithm
1684 const result_type __q = __m / __a;
1685 const result_type __r = __m % __a;
1686 const result_type __t0 = __a * (__x % __q);
1687 const result_type __t1 = __r * (__x / __q);
1688 __x = __t0 + (__t0 < __t1) * __m - __t1;
1689 __x += __c - (__x >= __m - __c) * __m;
1690 return __x;
1691 }
1692};
1693
1694template <unsigned long long __a, unsigned long long __m>
1695struct __lce_ta<__a, 0, __m, (unsigned long long)(~0), true>
1696{
1697 typedef unsigned long long result_type;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001698 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001699 static result_type next(result_type __x)
1700 {
1701 // Schrage's algorithm
1702 const result_type __q = __m / __a;
1703 const result_type __r = __m % __a;
1704 const result_type __t0 = __a * (__x % __q);
1705 const result_type __t1 = __r * (__x / __q);
1706 __x = __t0 + (__t0 < __t1) * __m - __t1;
1707 return __x;
1708 }
1709};
1710
1711template <unsigned long long __a, unsigned long long __c, unsigned long long __m>
1712struct __lce_ta<__a, __c, __m, (unsigned long long)(~0), false>
1713{
1714 typedef unsigned long long result_type;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001715 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001716 static result_type next(result_type __x)
1717 {
1718 return (__a * __x + __c) % __m;
1719 }
1720};
1721
1722template <unsigned long long __a, unsigned long long __c>
1723struct __lce_ta<__a, __c, 0, (unsigned long long)(~0), false>
1724{
1725 typedef unsigned long long result_type;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001726 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001727 static result_type next(result_type __x)
1728 {
1729 return __a * __x + __c;
1730 }
1731};
1732
1733// 32
1734
1735template <unsigned long long _A, unsigned long long _C, unsigned long long _M>
1736struct __lce_ta<_A, _C, _M, unsigned(~0), true>
1737{
1738 typedef unsigned result_type;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001739 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001740 static result_type next(result_type __x)
1741 {
1742 const result_type __a = static_cast<result_type>(_A);
1743 const result_type __c = static_cast<result_type>(_C);
1744 const result_type __m = static_cast<result_type>(_M);
1745 // Schrage's algorithm
1746 const result_type __q = __m / __a;
1747 const result_type __r = __m % __a;
1748 const result_type __t0 = __a * (__x % __q);
1749 const result_type __t1 = __r * (__x / __q);
1750 __x = __t0 + (__t0 < __t1) * __m - __t1;
1751 __x += __c - (__x >= __m - __c) * __m;
1752 return __x;
1753 }
1754};
1755
1756template <unsigned long long _A, unsigned long long _M>
1757struct __lce_ta<_A, 0, _M, unsigned(~0), true>
1758{
1759 typedef unsigned result_type;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001760 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001761 static result_type next(result_type __x)
1762 {
1763 const result_type __a = static_cast<result_type>(_A);
1764 const result_type __m = static_cast<result_type>(_M);
1765 // Schrage's algorithm
1766 const result_type __q = __m / __a;
1767 const result_type __r = __m % __a;
1768 const result_type __t0 = __a * (__x % __q);
1769 const result_type __t1 = __r * (__x / __q);
1770 __x = __t0 + (__t0 < __t1) * __m - __t1;
1771 return __x;
1772 }
1773};
1774
1775template <unsigned long long _A, unsigned long long _C, unsigned long long _M>
1776struct __lce_ta<_A, _C, _M, unsigned(~0), false>
1777{
1778 typedef unsigned result_type;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001779 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001780 static result_type next(result_type __x)
1781 {
1782 const result_type __a = static_cast<result_type>(_A);
1783 const result_type __c = static_cast<result_type>(_C);
1784 const result_type __m = static_cast<result_type>(_M);
1785 return (__a * __x + __c) % __m;
1786 }
1787};
1788
1789template <unsigned long long _A, unsigned long long _C>
1790struct __lce_ta<_A, _C, 0, unsigned(~0), false>
1791{
1792 typedef unsigned result_type;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001793 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001794 static result_type next(result_type __x)
1795 {
1796 const result_type __a = static_cast<result_type>(_A);
1797 const result_type __c = static_cast<result_type>(_C);
1798 return __a * __x + __c;
1799 }
1800};
1801
1802// 16
1803
1804template <unsigned long long __a, unsigned long long __c, unsigned long long __m, bool __b>
1805struct __lce_ta<__a, __c, __m, (unsigned short)(~0), __b>
1806{
1807 typedef unsigned short result_type;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001808 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001809 static result_type next(result_type __x)
1810 {
1811 return static_cast<result_type>(__lce_ta<__a, __c, __m, unsigned(~0)>::next(__x));
1812 }
1813};
1814
1815template <class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m>
1816class linear_congruential_engine;
1817
1818template <class _CharT, class _Traits,
1819 class _U, _U _A, _U _C, _U _N>
1820basic_ostream<_CharT, _Traits>&
1821operator<<(basic_ostream<_CharT, _Traits>& __os,
1822 const linear_congruential_engine<_U, _A, _C, _N>&);
1823
1824template <class _CharT, class _Traits,
1825 class _U, _U _A, _U _C, _U _N>
1826basic_istream<_CharT, _Traits>&
1827operator>>(basic_istream<_CharT, _Traits>& __is,
1828 linear_congruential_engine<_U, _A, _C, _N>& __x);
1829
1830template <class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001831class _LIBCPP_VISIBLE linear_congruential_engine
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001832{
1833public:
1834 // types
1835 typedef _UIntType result_type;
1836
1837private:
1838 result_type __x_;
1839
1840 static const result_type _M = result_type(~0);
1841
1842 static_assert(__m == 0 || __a < __m, "linear_congruential_engine invalid parameters");
1843 static_assert(__m == 0 || __c < __m, "linear_congruential_engine invalid parameters");
1844public:
1845 static const result_type _Min = __c == 0u ? 1u: 0u;
1846 static const result_type _Max = __m - 1u;
1847 static_assert(_Min < _Max, "linear_congruential_engine invalid parameters");
1848
1849 // engine characteristics
1850 static const/*expr*/ result_type multiplier = __a;
1851 static const/*expr*/ result_type increment = __c;
1852 static const/*expr*/ result_type modulus = __m;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001853 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001854 static const/*expr*/ result_type min() {return _Min;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001855 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001856 static const/*expr*/ result_type max() {return _Max;}
1857 static const/*expr*/ result_type default_seed = 1u;
1858
1859 // constructors and seeding functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001860 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001861 explicit linear_congruential_engine(result_type __s = default_seed)
1862 {seed(__s);}
Howard Hinnant3ec31842010-05-28 15:49:54 +00001863 template<class _Sseq> explicit linear_congruential_engine(_Sseq& __q,
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001864 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantef3b2e22011-04-11 18:22:12 +00001865 typename enable_if<__is_seed_sequence<_Sseq, linear_congruential_engine>::value>::type* = 0)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001866 {seed(__q);}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001867 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001868 void seed(result_type __s = default_seed)
1869 {seed(integral_constant<bool, __m == 0>(),
1870 integral_constant<bool, __c == 0>(), __s);}
1871 template<class _Sseq>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001872 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001873 typename enable_if
1874 <
Howard Hinnantef3b2e22011-04-11 18:22:12 +00001875 __is_seed_sequence<_Sseq, linear_congruential_engine>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001876 void
1877 >::type
1878 seed(_Sseq& __q)
1879 {__seed(__q, integral_constant<unsigned,
1880 1 + (__m == 0 ? (sizeof(result_type) * __CHAR_BIT__ - 1)/32
1881 : (__m-1) / 0x100000000ull)>());}
1882
1883 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001884 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001885 result_type operator()()
1886 {return __x_ = static_cast<result_type>(__lce_ta<__a, __c, __m, _M>::next(__x_));}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001887 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001888 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
1889
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001890 friend _LIBCPP_INLINE_VISIBILITY
1891 bool operator==(const linear_congruential_engine& __x,
1892 const linear_congruential_engine& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001893 {return __x.__x_ == __y.__x_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001894 friend _LIBCPP_INLINE_VISIBILITY
1895 bool operator!=(const linear_congruential_engine& __x,
1896 const linear_congruential_engine& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001897 {return !(__x == __y);}
1898
1899private:
1900
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001901 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001902 void seed(true_type, true_type, result_type __s) {__x_ = __s == 0 ? 1 : __s;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001903 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001904 void seed(true_type, false_type, result_type __s) {__x_ = __s;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001905 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001906 void seed(false_type, true_type, result_type __s) {__x_ = __s % __m == 0 ?
1907 1 : __s % __m;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001908 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001909 void seed(false_type, false_type, result_type __s) {__x_ = __s % __m;}
1910
1911 template<class _Sseq>
1912 void __seed(_Sseq& __q, integral_constant<unsigned, 1>);
1913 template<class _Sseq>
1914 void __seed(_Sseq& __q, integral_constant<unsigned, 2>);
1915
1916 template <class _CharT, class _Traits,
1917 class _U, _U _A, _U _C, _U _N>
1918 friend
1919 basic_ostream<_CharT, _Traits>&
1920 operator<<(basic_ostream<_CharT, _Traits>& __os,
1921 const linear_congruential_engine<_U, _A, _C, _N>&);
Howard Hinnant324bb032010-08-22 00:02:43 +00001922
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001923 template <class _CharT, class _Traits,
1924 class _U, _U _A, _U _C, _U _N>
1925 friend
1926 basic_istream<_CharT, _Traits>&
1927 operator>>(basic_istream<_CharT, _Traits>& __is,
1928 linear_congruential_engine<_U, _A, _C, _N>& __x);
1929};
1930
1931template <class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m>
1932template<class _Sseq>
1933void
1934linear_congruential_engine<_UIntType, __a, __c, __m>::__seed(_Sseq& __q,
1935 integral_constant<unsigned, 1>)
1936{
1937 const unsigned __k = 1;
1938 uint32_t __ar[__k+3];
1939 __q.generate(__ar, __ar + __k + 3);
1940 result_type __s = static_cast<result_type>(__ar[3] % __m);
1941 __x_ = __c == 0 && __s == 0 ? result_type(1) : __s;
1942}
1943
1944template <class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m>
1945template<class _Sseq>
1946void
1947linear_congruential_engine<_UIntType, __a, __c, __m>::__seed(_Sseq& __q,
1948 integral_constant<unsigned, 2>)
1949{
1950 const unsigned __k = 2;
1951 uint32_t __ar[__k+3];
1952 __q.generate(__ar, __ar + __k + 3);
1953 result_type __s = static_cast<result_type>((__ar[3] +
1954 (uint64_t)__ar[4] << 32) % __m);
1955 __x_ = __c == 0 && __s == 0 ? result_type(1) : __s;
1956}
1957
1958template <class _CharT, class _Traits>
1959class __save_flags
1960{
1961 typedef basic_ios<_CharT, _Traits> __stream_type;
1962 typedef typename __stream_type::fmtflags fmtflags;
1963
1964 __stream_type& __stream_;
1965 fmtflags __fmtflags_;
1966 _CharT __fill_;
1967
1968 __save_flags(const __save_flags&);
1969 __save_flags& operator=(const __save_flags&);
1970public:
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001971 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001972 explicit __save_flags(__stream_type& __stream)
1973 : __stream_(__stream),
1974 __fmtflags_(__stream.flags()),
1975 __fill_(__stream.fill())
1976 {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001977 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001978 ~__save_flags()
1979 {
1980 __stream_.flags(__fmtflags_);
1981 __stream_.fill(__fill_);
1982 }
1983};
1984
1985template <class _CharT, class _Traits,
1986 class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00001987inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001988basic_ostream<_CharT, _Traits>&
1989operator<<(basic_ostream<_CharT, _Traits>& __os,
1990 const linear_congruential_engine<_UIntType, __a, __c, __m>& __x)
1991{
1992 __save_flags<_CharT, _Traits> _(__os);
1993 __os.flags(ios_base::dec | ios_base::left);
1994 __os.fill(__os.widen(' '));
1995 return __os << __x.__x_;
1996}
1997
1998template <class _CharT, class _Traits,
1999 class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m>
2000basic_istream<_CharT, _Traits>&
2001operator>>(basic_istream<_CharT, _Traits>& __is,
2002 linear_congruential_engine<_UIntType, __a, __c, __m>& __x)
2003{
2004 __save_flags<_CharT, _Traits> _(__is);
2005 __is.flags(ios_base::dec | ios_base::skipws);
2006 _UIntType __t;
2007 __is >> __t;
2008 if (!__is.fail())
2009 __x.__x_ = __t;
2010 return __is;
2011}
2012
2013typedef linear_congruential_engine<uint_fast32_t, 16807, 0, 2147483647>
2014 minstd_rand0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002015typedef linear_congruential_engine<uint_fast32_t, 48271, 0, 2147483647>
2016 minstd_rand;
Howard Hinnantd6d11712010-05-20 15:11:46 +00002017typedef minstd_rand default_random_engine;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002018// mersenne_twister_engine
2019
2020template <class _UIntType, size_t __w, size_t __n, size_t __m, size_t __r,
2021 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2022 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
2023class mersenne_twister_engine;
2024
2025template <class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2026 _UI _A, size_t _U, _UI _D, size_t _S,
2027 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2028bool
2029operator==(const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2030 _B, _T, _C, _L, _F>& __x,
2031 const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2032 _B, _T, _C, _L, _F>& __y);
2033
2034template <class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2035 _UI _A, size_t _U, _UI _D, size_t _S,
2036 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2037bool
2038operator!=(const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2039 _B, _T, _C, _L, _F>& __x,
2040 const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2041 _B, _T, _C, _L, _F>& __y);
2042
2043template <class _CharT, class _Traits,
2044 class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2045 _UI _A, size_t _U, _UI _D, size_t _S,
2046 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2047basic_ostream<_CharT, _Traits>&
2048operator<<(basic_ostream<_CharT, _Traits>& __os,
2049 const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2050 _B, _T, _C, _L, _F>& __x);
2051
2052template <class _CharT, class _Traits,
2053 class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2054 _UI _A, size_t _U, _UI _D, size_t _S,
2055 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2056basic_istream<_CharT, _Traits>&
2057operator>>(basic_istream<_CharT, _Traits>& __is,
2058 mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2059 _B, _T, _C, _L, _F>& __x);
2060
2061template <class _UIntType, size_t __w, size_t __n, size_t __m, size_t __r,
2062 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2063 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002064class _LIBCPP_VISIBLE mersenne_twister_engine
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002065{
2066public:
2067 // types
2068 typedef _UIntType result_type;
2069
2070private:
2071 result_type __x_[__n];
2072 size_t __i_;
2073
2074 static_assert( 0 < __m, "mersenne_twister_engine invalid parameters");
2075 static_assert(__m <= __n, "mersenne_twister_engine invalid parameters");
2076 static const result_type _Dt = numeric_limits<result_type>::digits;
2077 static_assert(__w <= _Dt, "mersenne_twister_engine invalid parameters");
2078 static_assert( 2 <= __w, "mersenne_twister_engine invalid parameters");
2079 static_assert(__r <= __w, "mersenne_twister_engine invalid parameters");
2080 static_assert(__u <= __w, "mersenne_twister_engine invalid parameters");
2081 static_assert(__s <= __w, "mersenne_twister_engine invalid parameters");
2082 static_assert(__t <= __w, "mersenne_twister_engine invalid parameters");
2083 static_assert(__l <= __w, "mersenne_twister_engine invalid parameters");
2084public:
2085 static const result_type _Min = 0;
2086 static const result_type _Max = __w == _Dt ? result_type(~0) :
2087 (result_type(1) << __w) - result_type(1);
2088 static_assert(_Min < _Max, "mersenne_twister_engine invalid parameters");
2089 static_assert(__a <= _Max, "mersenne_twister_engine invalid parameters");
2090 static_assert(__b <= _Max, "mersenne_twister_engine invalid parameters");
2091 static_assert(__c <= _Max, "mersenne_twister_engine invalid parameters");
2092 static_assert(__d <= _Max, "mersenne_twister_engine invalid parameters");
2093 static_assert(__f <= _Max, "mersenne_twister_engine invalid parameters");
2094
2095 // engine characteristics
2096 static const/*expr*/ size_t word_size = __w;
2097 static const/*expr*/ size_t state_size = __n;
2098 static const/*expr*/ size_t shift_size = __m;
2099 static const/*expr*/ size_t mask_bits = __r;
2100 static const/*expr*/ result_type xor_mask = __a;
2101 static const/*expr*/ size_t tempering_u = __u;
2102 static const/*expr*/ result_type tempering_d = __d;
2103 static const/*expr*/ size_t tempering_s = __s;
2104 static const/*expr*/ result_type tempering_b = __b;
2105 static const/*expr*/ size_t tempering_t = __t;
2106 static const/*expr*/ result_type tempering_c = __c;
2107 static const/*expr*/ size_t tempering_l = __l;
2108 static const/*expr*/ result_type initialization_multiplier = __f;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002109 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002110 static const/*expr*/ result_type min() { return _Min; }
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002111 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002112 static const/*expr*/ result_type max() { return _Max; }
2113 static const/*expr*/ result_type default_seed = 5489u;
2114
2115 // constructors and seeding functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002116 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002117 explicit mersenne_twister_engine(result_type __sd = default_seed)
2118 {seed(__sd);}
Howard Hinnant3ec31842010-05-28 15:49:54 +00002119 template<class _Sseq> explicit mersenne_twister_engine(_Sseq& __q,
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002120 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantef3b2e22011-04-11 18:22:12 +00002121 typename enable_if<__is_seed_sequence<_Sseq, mersenne_twister_engine>::value>::type* = 0)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002122 {seed(__q);}
2123 void seed(result_type __sd = default_seed);
2124 template<class _Sseq>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002125 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002126 typename enable_if
2127 <
Howard Hinnantef3b2e22011-04-11 18:22:12 +00002128 __is_seed_sequence<_Sseq, mersenne_twister_engine>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002129 void
2130 >::type
2131 seed(_Sseq& __q)
2132 {__seed(__q, integral_constant<unsigned, 1 + (__w - 1) / 32>());}
2133
2134 // generating functions
2135 result_type operator()();
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002136 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002137 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2138
2139 template <class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2140 _UI _A, size_t _U, _UI _D, size_t _S,
2141 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2142 friend
2143 bool
2144 operator==(const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2145 _B, _T, _C, _L, _F>& __x,
2146 const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2147 _B, _T, _C, _L, _F>& __y);
Howard Hinnant324bb032010-08-22 00:02:43 +00002148
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002149 template <class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2150 _UI _A, size_t _U, _UI _D, size_t _S,
2151 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2152 friend
2153 bool
2154 operator!=(const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2155 _B, _T, _C, _L, _F>& __x,
2156 const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2157 _B, _T, _C, _L, _F>& __y);
2158
2159 template <class _CharT, class _Traits,
2160 class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2161 _UI _A, size_t _U, _UI _D, size_t _S,
2162 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2163 friend
2164 basic_ostream<_CharT, _Traits>&
2165 operator<<(basic_ostream<_CharT, _Traits>& __os,
2166 const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2167 _B, _T, _C, _L, _F>& __x);
2168
2169 template <class _CharT, class _Traits,
2170 class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2171 _UI _A, size_t _U, _UI _D, size_t _S,
2172 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2173 friend
2174 basic_istream<_CharT, _Traits>&
2175 operator>>(basic_istream<_CharT, _Traits>& __is,
2176 mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2177 _B, _T, _C, _L, _F>& __x);
2178private:
2179
2180 template<class _Sseq>
2181 void __seed(_Sseq& __q, integral_constant<unsigned, 1>);
2182 template<class _Sseq>
2183 void __seed(_Sseq& __q, integral_constant<unsigned, 2>);
2184
2185 template <size_t __count>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002186 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002187 static
2188 typename enable_if
2189 <
2190 __count < __w,
2191 result_type
2192 >::type
2193 __lshift(result_type __x) {return (__x << __count) & _Max;}
2194
2195 template <size_t __count>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002196 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002197 static
2198 typename enable_if
2199 <
2200 (__count >= __w),
2201 result_type
2202 >::type
2203 __lshift(result_type __x) {return result_type(0);}
2204
2205 template <size_t __count>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002206 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002207 static
2208 typename enable_if
2209 <
2210 __count < _Dt,
2211 result_type
2212 >::type
2213 __rshift(result_type __x) {return __x >> __count;}
2214
2215 template <size_t __count>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002216 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002217 static
2218 typename enable_if
2219 <
2220 (__count >= _Dt),
2221 result_type
2222 >::type
2223 __rshift(result_type __x) {return result_type(0);}
2224};
2225
2226template <class _UIntType, size_t __w, size_t __n, size_t __m, size_t __r,
2227 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2228 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
2229void
2230mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b,
2231 __t, __c, __l, __f>::seed(result_type __sd)
2232{ // __w >= 2
2233 __x_[0] = __sd & _Max;
2234 for (size_t __i = 1; __i < __n; ++__i)
2235 __x_[__i] = (__f * (__x_[__i-1] ^ __rshift<__w - 2>(__x_[__i-1])) + __i) & _Max;
2236 __i_ = 0;
2237}
2238
2239template <class _UIntType, size_t __w, size_t __n, size_t __m, size_t __r,
2240 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2241 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
2242template<class _Sseq>
2243void
2244mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b,
2245 __t, __c, __l, __f>::__seed(_Sseq& __q, integral_constant<unsigned, 1>)
2246{
2247 const unsigned __k = 1;
2248 uint32_t __ar[__n * __k];
2249 __q.generate(__ar, __ar + __n * __k);
2250 for (size_t __i = 0; __i < __n; ++__i)
2251 __x_[__i] = static_cast<result_type>(__ar[__i] & _Max);
2252 const result_type __mask = __r == _Dt ? result_type(~0) :
2253 (result_type(1) << __r) - result_type(1);
2254 __i_ = 0;
2255 if ((__x_[0] & ~__mask) == 0)
2256 {
2257 for (size_t __i = 1; __i < __n; ++__i)
2258 if (__x_[__i] != 0)
2259 return;
2260 __x_[0] = _Max;
2261 }
2262}
2263
2264template <class _UIntType, size_t __w, size_t __n, size_t __m, size_t __r,
2265 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2266 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
2267template<class _Sseq>
2268void
2269mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b,
2270 __t, __c, __l, __f>::__seed(_Sseq& __q, integral_constant<unsigned, 2>)
2271{
2272 const unsigned __k = 2;
2273 uint32_t __ar[__n * __k];
2274 __q.generate(__ar, __ar + __n * __k);
2275 for (size_t __i = 0; __i < __n; ++__i)
2276 __x_[__i] = static_cast<result_type>(
2277 (__ar[2 * __i] + ((uint64_t)__ar[2 * __i + 1] << 32)) & _Max);
2278 const result_type __mask = __r == _Dt ? result_type(~0) :
2279 (result_type(1) << __r) - result_type(1);
2280 __i_ = 0;
2281 if ((__x_[0] & ~__mask) == 0)
2282 {
2283 for (size_t __i = 1; __i < __n; ++__i)
2284 if (__x_[__i] != 0)
2285 return;
2286 __x_[0] = _Max;
2287 }
2288}
2289
2290template <class _UIntType, size_t __w, size_t __n, size_t __m, size_t __r,
2291 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2292 _UIntType __b, size_t __t, _UIntType __c, size_t __l, _UIntType __f>
2293_UIntType
2294mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b,
2295 __t, __c, __l, __f>::operator()()
2296{
2297 const size_t __j = (__i_ + 1) % __n;
2298 const result_type __mask = __r == _Dt ? result_type(~0) :
2299 (result_type(1) << __r) - result_type(1);
2300 const result_type _Y = (__x_[__i_] & ~__mask) | (__x_[__j] & __mask);
2301 const size_t __k = (__i_ + __m) % __n;
2302 __x_[__i_] = __x_[__k] ^ __rshift<1>(_Y) ^ (__a * (_Y & 1));
2303 result_type __z = __x_[__i_] ^ (__rshift<__u>(__x_[__i_]) & __d);
2304 __i_ = __j;
2305 __z ^= __lshift<__s>(__z) & __b;
2306 __z ^= __lshift<__t>(__z) & __c;
2307 return __z ^ __rshift<__l>(__z);
2308}
2309
2310template <class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2311 _UI _A, size_t _U, _UI _D, size_t _S,
2312 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2313bool
2314operator==(const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2315 _B, _T, _C, _L, _F>& __x,
2316 const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2317 _B, _T, _C, _L, _F>& __y)
2318{
2319 if (__x.__i_ == __y.__i_)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002320 return _VSTD::equal(__x.__x_, __x.__x_ + _N, __y.__x_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002321 if (__x.__i_ == 0 || __y.__i_ == 0)
2322 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002323 size_t __j = _VSTD::min(_N - __x.__i_, _N - __y.__i_);
2324 if (!_VSTD::equal(__x.__x_ + __x.__i_, __x.__x_ + __x.__i_ + __j,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002325 __y.__x_ + __y.__i_))
2326 return false;
2327 if (__x.__i_ == 0)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002328 return _VSTD::equal(__x.__x_ + __j, __x.__x_ + _N, __y.__x_);
2329 return _VSTD::equal(__x.__x_, __x.__x_ + (_N - __j), __y.__x_ + __j);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002330 }
2331 if (__x.__i_ < __y.__i_)
2332 {
2333 size_t __j = _N - __y.__i_;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002334 if (!_VSTD::equal(__x.__x_ + __x.__i_, __x.__x_ + (__x.__i_ + __j),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002335 __y.__x_ + __y.__i_))
2336 return false;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002337 if (!_VSTD::equal(__x.__x_ + (__x.__i_ + __j), __x.__x_ + _N,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002338 __y.__x_))
2339 return false;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002340 return _VSTD::equal(__x.__x_, __x.__x_ + __x.__i_,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002341 __y.__x_ + (_N - (__x.__i_ + __j)));
2342 }
2343 size_t __j = _N - __x.__i_;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002344 if (!_VSTD::equal(__y.__x_ + __y.__i_, __y.__x_ + (__y.__i_ + __j),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002345 __x.__x_ + __x.__i_))
2346 return false;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002347 if (!_VSTD::equal(__y.__x_ + (__y.__i_ + __j), __y.__x_ + _N,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002348 __x.__x_))
2349 return false;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002350 return _VSTD::equal(__y.__x_, __y.__x_ + __y.__i_,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002351 __x.__x_ + (_N - (__y.__i_ + __j)));
2352}
2353
2354template <class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2355 _UI _A, size_t _U, _UI _D, size_t _S,
2356 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002357inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002358bool
2359operator!=(const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2360 _B, _T, _C, _L, _F>& __x,
2361 const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2362 _B, _T, _C, _L, _F>& __y)
2363{
2364 return !(__x == __y);
2365}
2366
2367template <class _CharT, class _Traits,
2368 class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2369 _UI _A, size_t _U, _UI _D, size_t _S,
2370 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2371basic_ostream<_CharT, _Traits>&
2372operator<<(basic_ostream<_CharT, _Traits>& __os,
2373 const mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2374 _B, _T, _C, _L, _F>& __x)
2375{
2376 __save_flags<_CharT, _Traits> _(__os);
2377 __os.flags(ios_base::dec | ios_base::left);
2378 _CharT __sp = __os.widen(' ');
2379 __os.fill(__sp);
2380 __os << __x.__x_[__x.__i_];
2381 for (size_t __j = __x.__i_ + 1; __j < _N; ++__j)
2382 __os << __sp << __x.__x_[__j];
2383 for (size_t __j = 0; __j < __x.__i_; ++__j)
2384 __os << __sp << __x.__x_[__j];
2385 return __os;
2386}
2387
2388template <class _CharT, class _Traits,
2389 class _UI, size_t _W, size_t _N, size_t _M, size_t _R,
2390 _UI _A, size_t _U, _UI _D, size_t _S,
2391 _UI _B, size_t _T, _UI _C, size_t _L, _UI _F>
2392basic_istream<_CharT, _Traits>&
2393operator>>(basic_istream<_CharT, _Traits>& __is,
2394 mersenne_twister_engine<_UI, _W, _N, _M, _R, _A, _U, _D, _S,
2395 _B, _T, _C, _L, _F>& __x)
2396{
2397 __save_flags<_CharT, _Traits> _(__is);
2398 __is.flags(ios_base::dec | ios_base::skipws);
2399 _UI __t[_N];
2400 for (size_t __i = 0; __i < _N; ++__i)
2401 __is >> __t[__i];
2402 if (!__is.fail())
2403 {
2404 for (size_t __i = 0; __i < _N; ++__i)
2405 __x.__x_[__i] = __t[__i];
2406 __x.__i_ = 0;
2407 }
2408 return __is;
2409}
2410
2411typedef mersenne_twister_engine<uint_fast32_t, 32, 624, 397, 31,
2412 0x9908b0df, 11, 0xffffffff,
2413 7, 0x9d2c5680,
2414 15, 0xefc60000,
2415 18, 1812433253> mt19937;
2416typedef mersenne_twister_engine<uint_fast64_t, 64, 312, 156, 31,
2417 0xb5026f5aa96619e9ULL, 29, 0x5555555555555555ULL,
2418 17, 0x71d67fffeda60000ULL,
2419 37, 0xfff7eee000000000ULL,
2420 43, 6364136223846793005ULL> mt19937_64;
2421
2422// subtract_with_carry_engine
2423
2424template<class _UIntType, size_t __w, size_t __s, size_t __r>
2425class subtract_with_carry_engine;
2426
2427template<class _UI, size_t _W, size_t _S, size_t _R>
2428bool
2429operator==(
2430 const subtract_with_carry_engine<_UI, _W, _S, _R>& __x,
2431 const subtract_with_carry_engine<_UI, _W, _S, _R>& __y);
2432
2433template<class _UI, size_t _W, size_t _S, size_t _R>
2434bool
2435operator!=(
2436 const subtract_with_carry_engine<_UI, _W, _S, _R>& __x,
2437 const subtract_with_carry_engine<_UI, _W, _S, _R>& __y);
2438
2439template <class _CharT, class _Traits,
2440 class _UI, size_t _W, size_t _S, size_t _R>
2441basic_ostream<_CharT, _Traits>&
2442operator<<(basic_ostream<_CharT, _Traits>& __os,
2443 const subtract_with_carry_engine<_UI, _W, _S, _R>& __x);
2444
2445template <class _CharT, class _Traits,
2446 class _UI, size_t _W, size_t _S, size_t _R>
2447basic_istream<_CharT, _Traits>&
2448operator>>(basic_istream<_CharT, _Traits>& __is,
2449 subtract_with_carry_engine<_UI, _W, _S, _R>& __x);
2450
2451template<class _UIntType, size_t __w, size_t __s, size_t __r>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002452class _LIBCPP_VISIBLE subtract_with_carry_engine
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002453{
2454public:
2455 // types
2456 typedef _UIntType result_type;
2457
2458private:
2459 result_type __x_[__r];
2460 result_type __c_;
2461 size_t __i_;
2462
2463 static const result_type _Dt = numeric_limits<result_type>::digits;
2464 static_assert( 0 < __w, "subtract_with_carry_engine invalid parameters");
2465 static_assert(__w <= _Dt, "subtract_with_carry_engine invalid parameters");
2466 static_assert( 0 < __s, "subtract_with_carry_engine invalid parameters");
2467 static_assert(__s < __r, "subtract_with_carry_engine invalid parameters");
2468public:
2469 static const result_type _Min = 0;
2470 static const result_type _Max = __w == _Dt ? result_type(~0) :
2471 (result_type(1) << __w) - result_type(1);
2472 static_assert(_Min < _Max, "subtract_with_carry_engine invalid parameters");
2473
2474 // engine characteristics
2475 static const/*expr*/ size_t word_size = __w;
2476 static const/*expr*/ size_t short_lag = __s;
2477 static const/*expr*/ size_t long_lag = __r;
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002478 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002479 static const/*expr*/ result_type min() { return _Min; }
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002480 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002481 static const/*expr*/ result_type max() { return _Max; }
2482 static const/*expr*/ result_type default_seed = 19780503u;
2483
2484 // constructors and seeding functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002485 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002486 explicit subtract_with_carry_engine(result_type __sd = default_seed)
2487 {seed(__sd);}
Howard Hinnant3ec31842010-05-28 15:49:54 +00002488 template<class _Sseq> explicit subtract_with_carry_engine(_Sseq& __q,
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002489 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantef3b2e22011-04-11 18:22:12 +00002490 typename enable_if<__is_seed_sequence<_Sseq, subtract_with_carry_engine>::value>::type* = 0)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002491 {seed(__q);}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002492 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002493 void seed(result_type __sd = default_seed)
2494 {seed(__sd, integral_constant<unsigned, 1 + (__w - 1) / 32>());}
2495 template<class _Sseq>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002496 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002497 typename enable_if
2498 <
Howard Hinnantef3b2e22011-04-11 18:22:12 +00002499 __is_seed_sequence<_Sseq, subtract_with_carry_engine>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002500 void
2501 >::type
2502 seed(_Sseq& __q)
2503 {__seed(__q, integral_constant<unsigned, 1 + (__w - 1) / 32>());}
2504
2505 // generating functions
2506 result_type operator()();
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002507 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002508 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2509
2510 template<class _UI, size_t _W, size_t _S, size_t _R>
2511 friend
2512 bool
2513 operator==(
2514 const subtract_with_carry_engine<_UI, _W, _S, _R>& __x,
2515 const subtract_with_carry_engine<_UI, _W, _S, _R>& __y);
Howard Hinnant324bb032010-08-22 00:02:43 +00002516
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002517 template<class _UI, size_t _W, size_t _S, size_t _R>
2518 friend
2519 bool
2520 operator!=(
2521 const subtract_with_carry_engine<_UI, _W, _S, _R>& __x,
2522 const subtract_with_carry_engine<_UI, _W, _S, _R>& __y);
Howard Hinnant324bb032010-08-22 00:02:43 +00002523
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002524 template <class _CharT, class _Traits,
2525 class _UI, size_t _W, size_t _S, size_t _R>
2526 friend
2527 basic_ostream<_CharT, _Traits>&
2528 operator<<(basic_ostream<_CharT, _Traits>& __os,
2529 const subtract_with_carry_engine<_UI, _W, _S, _R>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00002530
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002531 template <class _CharT, class _Traits,
2532 class _UI, size_t _W, size_t _S, size_t _R>
2533 friend
2534 basic_istream<_CharT, _Traits>&
2535 operator>>(basic_istream<_CharT, _Traits>& __is,
2536 subtract_with_carry_engine<_UI, _W, _S, _R>& __x);
2537
2538private:
2539
2540 void seed(result_type __sd, integral_constant<unsigned, 1>);
2541 void seed(result_type __sd, integral_constant<unsigned, 2>);
2542 template<class _Sseq>
2543 void __seed(_Sseq& __q, integral_constant<unsigned, 1>);
2544 template<class _Sseq>
2545 void __seed(_Sseq& __q, integral_constant<unsigned, 2>);
2546};
2547
2548template<class _UIntType, size_t __w, size_t __s, size_t __r>
2549void
2550subtract_with_carry_engine<_UIntType, __w, __s, __r>::seed(result_type __sd,
2551 integral_constant<unsigned, 1>)
2552{
2553 linear_congruential_engine<result_type, 40014u, 0u, 2147483563u>
2554 __e(__sd == 0u ? default_seed : __sd);
2555 for (size_t __i = 0; __i < __r; ++__i)
2556 __x_[__i] = static_cast<result_type>(__e() & _Max);
2557 __c_ = __x_[__r-1] == 0;
2558 __i_ = 0;
2559}
2560
2561template<class _UIntType, size_t __w, size_t __s, size_t __r>
2562void
2563subtract_with_carry_engine<_UIntType, __w, __s, __r>::seed(result_type __sd,
2564 integral_constant<unsigned, 2>)
2565{
2566 linear_congruential_engine<result_type, 40014u, 0u, 2147483563u>
2567 __e(__sd == 0u ? default_seed : __sd);
2568 for (size_t __i = 0; __i < __r; ++__i)
Howard Hinnant43edf2d2011-08-15 17:22:22 +00002569 {
2570 result_type __e0 = __e();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002571 __x_[__i] = static_cast<result_type>(
Howard Hinnant43edf2d2011-08-15 17:22:22 +00002572 (__e0 + ((uint64_t)__e() << 32)) & _Max);
2573 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002574 __c_ = __x_[__r-1] == 0;
2575 __i_ = 0;
2576}
2577
2578template<class _UIntType, size_t __w, size_t __s, size_t __r>
2579template<class _Sseq>
2580void
2581subtract_with_carry_engine<_UIntType, __w, __s, __r>::__seed(_Sseq& __q,
2582 integral_constant<unsigned, 1>)
2583{
2584 const unsigned __k = 1;
2585 uint32_t __ar[__r * __k];
2586 __q.generate(__ar, __ar + __r * __k);
2587 for (size_t __i = 0; __i < __r; ++__i)
2588 __x_[__i] = static_cast<result_type>(__ar[__i] & _Max);
2589 __c_ = __x_[__r-1] == 0;
2590 __i_ = 0;
2591}
2592
2593template<class _UIntType, size_t __w, size_t __s, size_t __r>
2594template<class _Sseq>
2595void
2596subtract_with_carry_engine<_UIntType, __w, __s, __r>::__seed(_Sseq& __q,
2597 integral_constant<unsigned, 2>)
2598{
2599 const unsigned __k = 2;
2600 uint32_t __ar[__r * __k];
2601 __q.generate(__ar, __ar + __r * __k);
2602 for (size_t __i = 0; __i < __r; ++__i)
2603 __x_[__i] = static_cast<result_type>(
2604 (__ar[2 * __i] + ((uint64_t)__ar[2 * __i + 1] << 32)) & _Max);
2605 __c_ = __x_[__r-1] == 0;
2606 __i_ = 0;
2607}
2608
2609template<class _UIntType, size_t __w, size_t __s, size_t __r>
2610_UIntType
2611subtract_with_carry_engine<_UIntType, __w, __s, __r>::operator()()
2612{
2613 const result_type& __xs = __x_[(__i_ + (__r - __s)) % __r];
2614 result_type& __xr = __x_[__i_];
2615 result_type __new_c = __c_ == 0 ? __xs < __xr : __xs != 0 ? __xs <= __xr : 1;
2616 __xr = (__xs - __xr - __c_) & _Max;
2617 __c_ = __new_c;
2618 __i_ = (__i_ + 1) % __r;
2619 return __xr;
2620}
2621
2622template<class _UI, size_t _W, size_t _S, size_t _R>
2623bool
2624operator==(
2625 const subtract_with_carry_engine<_UI, _W, _S, _R>& __x,
2626 const subtract_with_carry_engine<_UI, _W, _S, _R>& __y)
2627{
2628 if (__x.__c_ != __y.__c_)
2629 return false;
2630 if (__x.__i_ == __y.__i_)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002631 return _VSTD::equal(__x.__x_, __x.__x_ + _R, __y.__x_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002632 if (__x.__i_ == 0 || __y.__i_ == 0)
2633 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002634 size_t __j = _VSTD::min(_R - __x.__i_, _R - __y.__i_);
2635 if (!_VSTD::equal(__x.__x_ + __x.__i_, __x.__x_ + __x.__i_ + __j,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002636 __y.__x_ + __y.__i_))
2637 return false;
2638 if (__x.__i_ == 0)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002639 return _VSTD::equal(__x.__x_ + __j, __x.__x_ + _R, __y.__x_);
2640 return _VSTD::equal(__x.__x_, __x.__x_ + (_R - __j), __y.__x_ + __j);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002641 }
2642 if (__x.__i_ < __y.__i_)
2643 {
2644 size_t __j = _R - __y.__i_;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002645 if (!_VSTD::equal(__x.__x_ + __x.__i_, __x.__x_ + (__x.__i_ + __j),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002646 __y.__x_ + __y.__i_))
2647 return false;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002648 if (!_VSTD::equal(__x.__x_ + (__x.__i_ + __j), __x.__x_ + _R,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002649 __y.__x_))
2650 return false;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002651 return _VSTD::equal(__x.__x_, __x.__x_ + __x.__i_,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002652 __y.__x_ + (_R - (__x.__i_ + __j)));
2653 }
2654 size_t __j = _R - __x.__i_;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002655 if (!_VSTD::equal(__y.__x_ + __y.__i_, __y.__x_ + (__y.__i_ + __j),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002656 __x.__x_ + __x.__i_))
2657 return false;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002658 if (!_VSTD::equal(__y.__x_ + (__y.__i_ + __j), __y.__x_ + _R,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002659 __x.__x_))
2660 return false;
Howard Hinnant0949eed2011-06-30 21:18:19 +00002661 return _VSTD::equal(__y.__x_, __y.__x_ + __y.__i_,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002662 __x.__x_ + (_R - (__y.__i_ + __j)));
2663}
2664
2665template<class _UI, size_t _W, size_t _S, size_t _R>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002666inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002667bool
2668operator!=(
2669 const subtract_with_carry_engine<_UI, _W, _S, _R>& __x,
2670 const subtract_with_carry_engine<_UI, _W, _S, _R>& __y)
2671{
2672 return !(__x == __y);
2673}
2674
2675template <class _CharT, class _Traits,
2676 class _UI, size_t _W, size_t _S, size_t _R>
2677basic_ostream<_CharT, _Traits>&
2678operator<<(basic_ostream<_CharT, _Traits>& __os,
2679 const subtract_with_carry_engine<_UI, _W, _S, _R>& __x)
2680{
2681 __save_flags<_CharT, _Traits> _(__os);
2682 __os.flags(ios_base::dec | ios_base::left);
2683 _CharT __sp = __os.widen(' ');
2684 __os.fill(__sp);
2685 __os << __x.__x_[__x.__i_];
2686 for (size_t __j = __x.__i_ + 1; __j < _R; ++__j)
2687 __os << __sp << __x.__x_[__j];
2688 for (size_t __j = 0; __j < __x.__i_; ++__j)
2689 __os << __sp << __x.__x_[__j];
2690 __os << __sp << __x.__c_;
2691 return __os;
2692}
2693
2694template <class _CharT, class _Traits,
2695 class _UI, size_t _W, size_t _S, size_t _R>
2696basic_istream<_CharT, _Traits>&
2697operator>>(basic_istream<_CharT, _Traits>& __is,
2698 subtract_with_carry_engine<_UI, _W, _S, _R>& __x)
2699{
2700 __save_flags<_CharT, _Traits> _(__is);
2701 __is.flags(ios_base::dec | ios_base::skipws);
2702 _UI __t[_R+1];
2703 for (size_t __i = 0; __i < _R+1; ++__i)
2704 __is >> __t[__i];
2705 if (!__is.fail())
2706 {
2707 for (size_t __i = 0; __i < _R; ++__i)
2708 __x.__x_[__i] = __t[__i];
2709 __x.__c_ = __t[_R];
2710 __x.__i_ = 0;
2711 }
2712 return __is;
2713}
2714
2715typedef subtract_with_carry_engine<uint_fast32_t, 24, 10, 24> ranlux24_base;
2716typedef subtract_with_carry_engine<uint_fast64_t, 48, 5, 12> ranlux48_base;
2717
2718// discard_block_engine
2719
2720template<class _Engine, size_t __p, size_t __r>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002721class _LIBCPP_VISIBLE discard_block_engine
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002722{
2723 _Engine __e_;
2724 int __n_;
2725
2726 static_assert( 0 < __r, "discard_block_engine invalid parameters");
2727 static_assert(__r <= __p, "discard_block_engine invalid parameters");
2728public:
2729 // types
2730 typedef typename _Engine::result_type result_type;
2731
2732 // engine characteristics
2733 static const/*expr*/ size_t block_size = __p;
2734 static const/*expr*/ size_t used_block = __r;
2735
2736 // Temporary work around for lack of constexpr
2737 static const result_type _Min = _Engine::_Min;
2738 static const result_type _Max = _Engine::_Max;
2739
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002740 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002741 static const/*expr*/ result_type min() { return _Engine::min(); }
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002742 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002743 static const/*expr*/ result_type max() { return _Engine::max(); }
2744
2745 // constructors and seeding functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002746 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002747 discard_block_engine() : __n_(0) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002748 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3ec31842010-05-28 15:49:54 +00002749 explicit discard_block_engine(const _Engine& __e)
2750 : __e_(__e), __n_(0) {}
Howard Hinnant73d21a42010-09-04 23:28:19 +00002751#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002752 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3ec31842010-05-28 15:49:54 +00002753 explicit discard_block_engine(_Engine&& __e)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002754 : __e_(_VSTD::move(__e)), __n_(0) {}
Howard Hinnant73d21a42010-09-04 23:28:19 +00002755#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002756 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002757 explicit discard_block_engine(result_type __sd) : __e_(__sd), __n_(0) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002758 template<class _Sseq>
2759 _LIBCPP_INLINE_VISIBILITY
2760 explicit discard_block_engine(_Sseq& __q,
Howard Hinnantef3b2e22011-04-11 18:22:12 +00002761 typename enable_if<__is_seed_sequence<_Sseq, discard_block_engine>::value &&
Howard Hinnant3ec31842010-05-28 15:49:54 +00002762 !is_convertible<_Sseq, _Engine>::value>::type* = 0)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002763 : __e_(__q), __n_(0) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002764 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002765 void seed() {__e_.seed(); __n_ = 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002766 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002767 void seed(result_type __sd) {__e_.seed(__sd); __n_ = 0;}
Howard Hinnant3ec31842010-05-28 15:49:54 +00002768 template<class _Sseq>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002769 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3ec31842010-05-28 15:49:54 +00002770 typename enable_if
2771 <
Howard Hinnantef3b2e22011-04-11 18:22:12 +00002772 __is_seed_sequence<_Sseq, discard_block_engine>::value,
Howard Hinnant3ec31842010-05-28 15:49:54 +00002773 void
2774 >::type
2775 seed(_Sseq& __q) {__e_.seed(__q); __n_ = 0;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002776
2777 // generating functions
2778 result_type operator()();
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002779 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002780 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2781
2782 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002783 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002784 const _Engine& base() const {return __e_;}
2785
2786 template<class _Eng, size_t _P, size_t _R>
2787 friend
2788 bool
2789 operator==(
2790 const discard_block_engine<_Eng, _P, _R>& __x,
2791 const discard_block_engine<_Eng, _P, _R>& __y);
Howard Hinnant324bb032010-08-22 00:02:43 +00002792
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002793 template<class _Eng, size_t _P, size_t _R>
2794 friend
2795 bool
2796 operator!=(
2797 const discard_block_engine<_Eng, _P, _R>& __x,
2798 const discard_block_engine<_Eng, _P, _R>& __y);
Howard Hinnant324bb032010-08-22 00:02:43 +00002799
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002800 template <class _CharT, class _Traits,
2801 class _Eng, size_t _P, size_t _R>
2802 friend
2803 basic_ostream<_CharT, _Traits>&
2804 operator<<(basic_ostream<_CharT, _Traits>& __os,
2805 const discard_block_engine<_Eng, _P, _R>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00002806
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002807 template <class _CharT, class _Traits,
2808 class _Eng, size_t _P, size_t _R>
2809 friend
2810 basic_istream<_CharT, _Traits>&
2811 operator>>(basic_istream<_CharT, _Traits>& __is,
2812 discard_block_engine<_Eng, _P, _R>& __x);
2813};
2814
2815template<class _Engine, size_t __p, size_t __r>
2816typename discard_block_engine<_Engine, __p, __r>::result_type
2817discard_block_engine<_Engine, __p, __r>::operator()()
2818{
2819 if (__n_ >= __r)
2820 {
2821 __e_.discard(__p - __r);
2822 __n_ = 0;
2823 }
2824 ++__n_;
2825 return __e_();
2826}
2827
2828template<class _Eng, size_t _P, size_t _R>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002829inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002830bool
2831operator==(const discard_block_engine<_Eng, _P, _R>& __x,
2832 const discard_block_engine<_Eng, _P, _R>& __y)
2833{
2834 return __x.__n_ == __y.__n_ && __x.__e_ == __y.__e_;
2835}
2836
2837template<class _Eng, size_t _P, size_t _R>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002838inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002839bool
2840operator!=(const discard_block_engine<_Eng, _P, _R>& __x,
2841 const discard_block_engine<_Eng, _P, _R>& __y)
2842{
2843 return !(__x == __y);
2844}
2845
2846template <class _CharT, class _Traits,
2847 class _Eng, size_t _P, size_t _R>
2848basic_ostream<_CharT, _Traits>&
2849operator<<(basic_ostream<_CharT, _Traits>& __os,
2850 const discard_block_engine<_Eng, _P, _R>& __x)
2851{
2852 __save_flags<_CharT, _Traits> _(__os);
2853 __os.flags(ios_base::dec | ios_base::left);
2854 _CharT __sp = __os.widen(' ');
2855 __os.fill(__sp);
2856 return __os << __x.__e_ << __sp << __x.__n_;
2857}
2858
2859template <class _CharT, class _Traits,
2860 class _Eng, size_t _P, size_t _R>
2861basic_istream<_CharT, _Traits>&
2862operator>>(basic_istream<_CharT, _Traits>& __is,
2863 discard_block_engine<_Eng, _P, _R>& __x)
2864{
2865 __save_flags<_CharT, _Traits> _(__is);
2866 __is.flags(ios_base::dec | ios_base::skipws);
2867 _Eng __e;
2868 int __n;
2869 __is >> __e >> __n;
2870 if (!__is.fail())
2871 {
2872 __x.__e_ = __e;
2873 __x.__n_ = __n;
2874 }
2875 return __is;
2876}
2877
2878typedef discard_block_engine<ranlux24_base, 223, 23> ranlux24;
2879typedef discard_block_engine<ranlux48_base, 389, 11> ranlux48;
2880
2881// independent_bits_engine
2882
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002883template<class _Engine, size_t __w, class _UIntType>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002884class _LIBCPP_VISIBLE independent_bits_engine
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002885{
2886 template <class _UI, _UI _R0, size_t _W, size_t _M>
2887 class __get_n
2888 {
2889 static const size_t _Dt = numeric_limits<_UI>::digits;
2890 static const size_t _N = _W / _M + (_W % _M != 0);
2891 static const size_t _W0 = _W / _N;
2892 static const _UI _Y0 = _W0 >= _Dt ? 0 : (_R0 >> _W0) << _W0;
2893 public:
2894 static const size_t value = _R0 - _Y0 > _Y0 / _N ? _N + 1 : _N;
2895 };
2896public:
2897 // types
2898 typedef _UIntType result_type;
2899
2900private:
2901 _Engine __e_;
2902
2903 static const result_type _Dt = numeric_limits<result_type>::digits;
2904 static_assert( 0 < __w, "independent_bits_engine invalid parameters");
2905 static_assert(__w <= _Dt, "independent_bits_engine invalid parameters");
2906
2907 typedef typename _Engine::result_type _Engine_result_type;
2908 typedef typename conditional
2909 <
2910 sizeof(_Engine_result_type) <= sizeof(result_type),
2911 result_type,
2912 _Engine_result_type
2913 >::type _Working_result_type;
2914 // Temporary work around for lack of constexpr
2915 static const _Working_result_type _R = _Engine::_Max - _Engine::_Min
2916 + _Working_result_type(1);
2917 static const size_t __m = __log2<_Working_result_type, _R>::value;
2918 static const size_t __n = __get_n<_Working_result_type, _R, __w, __m>::value;
2919 static const size_t __w0 = __w / __n;
2920 static const size_t __n0 = __n - __w % __n;
2921 static const size_t _WDt = numeric_limits<_Working_result_type>::digits;
2922 static const size_t _EDt = numeric_limits<_Engine_result_type>::digits;
2923 static const _Working_result_type __y0 = __w0 >= _WDt ? 0 :
2924 (_R >> __w0) << __w0;
2925 static const _Working_result_type __y1 = __w0 >= _WDt - 1 ? 0 :
2926 (_R >> (__w0+1)) << (__w0+1);
2927 static const _Engine_result_type __mask0 = __w0 > 0 ?
2928 _Engine_result_type(~0) >> (_EDt - __w0) :
2929 _Engine_result_type(0);
2930 static const _Engine_result_type __mask1 = __w0 < _EDt - 1 ?
2931 _Engine_result_type(~0) >> (_EDt - (__w0 + 1)) :
2932 _Engine_result_type(~0);
2933public:
2934 static const result_type _Min = 0;
2935 static const result_type _Max = __w == _Dt ? result_type(~0) :
2936 (result_type(1) << __w) - result_type(1);
2937 static_assert(_Min < _Max, "independent_bits_engine invalid parameters");
2938
2939 // engine characteristics
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002940 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002941 static const/*expr*/ result_type min() { return _Min; }
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002942 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002943 static const/*expr*/ result_type max() { return _Max; }
2944
2945 // constructors and seeding functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002946 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002947 independent_bits_engine() {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002948 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3ec31842010-05-28 15:49:54 +00002949 explicit independent_bits_engine(const _Engine& __e)
2950 : __e_(__e) {}
Howard Hinnant73d21a42010-09-04 23:28:19 +00002951#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002952 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3ec31842010-05-28 15:49:54 +00002953 explicit independent_bits_engine(_Engine&& __e)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002954 : __e_(_VSTD::move(__e)) {}
Howard Hinnant73d21a42010-09-04 23:28:19 +00002955#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002956 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002957 explicit independent_bits_engine(result_type __sd) : __e_(__sd) {}
Howard Hinnant3ec31842010-05-28 15:49:54 +00002958 template<class _Sseq> explicit independent_bits_engine(_Sseq& __q,
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002959 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantef3b2e22011-04-11 18:22:12 +00002960 typename enable_if<__is_seed_sequence<_Sseq, independent_bits_engine>::value &&
Howard Hinnant3ec31842010-05-28 15:49:54 +00002961 !is_convertible<_Sseq, _Engine>::value>::type* = 0)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002962 : __e_(__q) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002963 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002964 void seed() {__e_.seed();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002965 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002966 void seed(result_type __sd) {__e_.seed(__sd);}
Howard Hinnant3ec31842010-05-28 15:49:54 +00002967 template<class _Sseq>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002968 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3ec31842010-05-28 15:49:54 +00002969 typename enable_if
2970 <
Howard Hinnantef3b2e22011-04-11 18:22:12 +00002971 __is_seed_sequence<_Sseq, independent_bits_engine>::value,
Howard Hinnant3ec31842010-05-28 15:49:54 +00002972 void
2973 >::type
2974 seed(_Sseq& __q) {__e_.seed(__q);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002975
2976 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002977 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002978 result_type operator()() {return __eval(integral_constant<bool, _R != 0>());}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002979 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002980 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2981
2982 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00002983 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002984 const _Engine& base() const {return __e_;}
2985
2986 template<class _Eng, size_t _W, class _UI>
2987 friend
2988 bool
2989 operator==(
2990 const independent_bits_engine<_Eng, _W, _UI>& __x,
2991 const independent_bits_engine<_Eng, _W, _UI>& __y);
Howard Hinnant324bb032010-08-22 00:02:43 +00002992
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002993 template<class _Eng, size_t _W, class _UI>
2994 friend
2995 bool
2996 operator!=(
2997 const independent_bits_engine<_Eng, _W, _UI>& __x,
2998 const independent_bits_engine<_Eng, _W, _UI>& __y);
Howard Hinnant324bb032010-08-22 00:02:43 +00002999
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003000 template <class _CharT, class _Traits,
3001 class _Eng, size_t _W, class _UI>
3002 friend
3003 basic_ostream<_CharT, _Traits>&
3004 operator<<(basic_ostream<_CharT, _Traits>& __os,
3005 const independent_bits_engine<_Eng, _W, _UI>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00003006
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003007 template <class _CharT, class _Traits,
3008 class _Eng, size_t _W, class _UI>
3009 friend
3010 basic_istream<_CharT, _Traits>&
3011 operator>>(basic_istream<_CharT, _Traits>& __is,
3012 independent_bits_engine<_Eng, _W, _UI>& __x);
3013
3014private:
3015 result_type __eval(false_type);
3016 result_type __eval(true_type);
3017
3018 template <size_t __count>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003019 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003020 static
3021 typename enable_if
3022 <
3023 __count < _Dt,
3024 result_type
3025 >::type
3026 __lshift(result_type __x) {return __x << __count;}
3027
3028 template <size_t __count>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003029 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003030 static
3031 typename enable_if
3032 <
3033 (__count >= _Dt),
3034 result_type
3035 >::type
3036 __lshift(result_type __x) {return result_type(0);}
3037};
3038
3039template<class _Engine, size_t __w, class _UIntType>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003040inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003041_UIntType
3042independent_bits_engine<_Engine, __w, _UIntType>::__eval(false_type)
3043{
3044 return static_cast<result_type>(__e_() & __mask0);
3045}
3046
3047template<class _Engine, size_t __w, class _UIntType>
3048_UIntType
3049independent_bits_engine<_Engine, __w, _UIntType>::__eval(true_type)
3050{
3051 result_type _S = 0;
3052 for (size_t __k = 0; __k < __n0; ++__k)
3053 {
3054 _Engine_result_type __u;
3055 do
3056 {
3057 __u = __e_() - _Engine::min();
3058 } while (__u >= __y0);
3059 _S = static_cast<result_type>(__lshift<__w0>(_S) + (__u & __mask0));
3060 }
3061 for (size_t __k = __n0; __k < __n; ++__k)
3062 {
3063 _Engine_result_type __u;
3064 do
3065 {
3066 __u = __e_() - _Engine::min();
3067 } while (__u >= __y1);
3068 _S = static_cast<result_type>(__lshift<__w0+1>(_S) + (__u & __mask1));
3069 }
3070 return _S;
3071}
3072
3073template<class _Eng, size_t _W, class _UI>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003074inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003075bool
3076operator==(
3077 const independent_bits_engine<_Eng, _W, _UI>& __x,
3078 const independent_bits_engine<_Eng, _W, _UI>& __y)
3079{
3080 return __x.base() == __y.base();
3081}
3082
3083template<class _Eng, size_t _W, class _UI>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003084inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003085bool
3086operator!=(
3087 const independent_bits_engine<_Eng, _W, _UI>& __x,
3088 const independent_bits_engine<_Eng, _W, _UI>& __y)
3089{
3090 return !(__x == __y);
3091}
3092
3093template <class _CharT, class _Traits,
3094 class _Eng, size_t _W, class _UI>
3095basic_ostream<_CharT, _Traits>&
3096operator<<(basic_ostream<_CharT, _Traits>& __os,
3097 const independent_bits_engine<_Eng, _W, _UI>& __x)
3098{
3099 return __os << __x.base();
3100}
3101
3102template <class _CharT, class _Traits,
3103 class _Eng, size_t _W, class _UI>
3104basic_istream<_CharT, _Traits>&
3105operator>>(basic_istream<_CharT, _Traits>& __is,
3106 independent_bits_engine<_Eng, _W, _UI>& __x)
3107{
3108 _Eng __e;
3109 __is >> __e;
3110 if (!__is.fail())
3111 __x.__e_ = __e;
3112 return __is;
3113}
3114
3115// shuffle_order_engine
3116
3117template <uint64_t _Xp, uint64_t _Yp>
3118struct __ugcd
3119{
3120 static const uint64_t value = __ugcd<_Yp, _Xp % _Yp>::value;
3121};
3122
3123template <uint64_t _Xp>
3124struct __ugcd<_Xp, 0>
3125{
3126 static const uint64_t value = _Xp;
3127};
3128
3129template <uint64_t _N, uint64_t _D>
3130class __uratio
3131{
3132 static_assert(_D != 0, "__uratio divide by 0");
3133 static const uint64_t __gcd = __ugcd<_N, _D>::value;
3134public:
3135 static const uint64_t num = _N / __gcd;
3136 static const uint64_t den = _D / __gcd;
3137
3138 typedef __uratio<num, den> type;
3139};
3140
3141template<class _Engine, size_t __k>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003142class _LIBCPP_VISIBLE shuffle_order_engine
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003143{
3144 static_assert(0 < __k, "shuffle_order_engine invalid parameters");
3145public:
3146 // types
3147 typedef typename _Engine::result_type result_type;
3148
3149private:
3150 _Engine __e_;
3151 result_type _V_[__k];
3152 result_type _Y_;
3153
3154public:
3155 // engine characteristics
3156 static const/*expr*/ size_t table_size = __k;
Howard Hinnant324bb032010-08-22 00:02:43 +00003157
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003158 static const result_type _Min = _Engine::_Min;
3159 static const result_type _Max = _Engine::_Max;
3160 static_assert(_Min < _Max, "shuffle_order_engine invalid parameters");
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003161 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003162 static const/*expr*/ result_type min() { return _Min; }
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003163 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003164 static const/*expr*/ result_type max() { return _Max; }
3165
3166 static const unsigned long long _R = _Max - _Min + 1ull;
3167
3168 // constructors and seeding functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003169 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003170 shuffle_order_engine() {__init();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003171 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3ec31842010-05-28 15:49:54 +00003172 explicit shuffle_order_engine(const _Engine& __e)
3173 : __e_(__e) {__init();}
Howard Hinnant73d21a42010-09-04 23:28:19 +00003174#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003175 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3ec31842010-05-28 15:49:54 +00003176 explicit shuffle_order_engine(_Engine&& __e)
Howard Hinnant0949eed2011-06-30 21:18:19 +00003177 : __e_(_VSTD::move(__e)) {__init();}
Howard Hinnant73d21a42010-09-04 23:28:19 +00003178#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003179 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003180 explicit shuffle_order_engine(result_type __sd) : __e_(__sd) {__init();}
Howard Hinnant3ec31842010-05-28 15:49:54 +00003181 template<class _Sseq> explicit shuffle_order_engine(_Sseq& __q,
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003182 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantef3b2e22011-04-11 18:22:12 +00003183 typename enable_if<__is_seed_sequence<_Sseq, shuffle_order_engine>::value &&
Howard Hinnant3ec31842010-05-28 15:49:54 +00003184 !is_convertible<_Sseq, _Engine>::value>::type* = 0)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003185 : __e_(__q) {__init();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003186 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003187 void seed() {__e_.seed(); __init();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003188 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003189 void seed(result_type __sd) {__e_.seed(__sd); __init();}
Howard Hinnant3ec31842010-05-28 15:49:54 +00003190 template<class _Sseq>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003191 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3ec31842010-05-28 15:49:54 +00003192 typename enable_if
3193 <
Howard Hinnantef3b2e22011-04-11 18:22:12 +00003194 __is_seed_sequence<_Sseq, shuffle_order_engine>::value,
Howard Hinnant3ec31842010-05-28 15:49:54 +00003195 void
3196 >::type
3197 seed(_Sseq& __q) {__e_.seed(__q); __init();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003198
3199 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003200 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003201 result_type operator()() {return __eval(integral_constant<bool, _R != 0>());}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003202 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003203 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
3204
3205 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003206 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003207 const _Engine& base() const {return __e_;}
3208
3209private:
3210 template<class _Eng, size_t _K>
3211 friend
3212 bool
3213 operator==(
3214 const shuffle_order_engine<_Eng, _K>& __x,
3215 const shuffle_order_engine<_Eng, _K>& __y);
Howard Hinnant324bb032010-08-22 00:02:43 +00003216
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003217 template<class _Eng, size_t _K>
3218 friend
3219 bool
3220 operator!=(
3221 const shuffle_order_engine<_Eng, _K>& __x,
3222 const shuffle_order_engine<_Eng, _K>& __y);
Howard Hinnant324bb032010-08-22 00:02:43 +00003223
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003224 template <class _CharT, class _Traits,
3225 class _Eng, size_t _K>
3226 friend
3227 basic_ostream<_CharT, _Traits>&
3228 operator<<(basic_ostream<_CharT, _Traits>& __os,
3229 const shuffle_order_engine<_Eng, _K>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00003230
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003231 template <class _CharT, class _Traits,
3232 class _Eng, size_t _K>
3233 friend
3234 basic_istream<_CharT, _Traits>&
3235 operator>>(basic_istream<_CharT, _Traits>& __is,
3236 shuffle_order_engine<_Eng, _K>& __x);
3237
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003238 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003239 void __init()
3240 {
3241 for (size_t __i = 0; __i < __k; ++__i)
3242 _V_[__i] = __e_();
3243 _Y_ = __e_();
3244 }
3245
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003246 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003247 result_type __eval(false_type) {return __eval2(integral_constant<bool, __k & 1>());}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003248 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003249 result_type __eval(true_type) {return __eval(__uratio<__k, _R>());}
3250
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003251 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003252 result_type __eval2(false_type) {return __eval(__uratio<__k/2, 0x8000000000000000ull>());}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003253 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003254 result_type __eval2(true_type) {return __evalf<__k, 0>();}
3255
3256 template <uint64_t _N, uint64_t _D>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003257 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003258 typename enable_if
3259 <
3260 (__uratio<_N, _D>::num > 0xFFFFFFFFFFFFFFFFull / (_Max - _Min)),
3261 result_type
3262 >::type
3263 __eval(__uratio<_N, _D>)
3264 {return __evalf<__uratio<_N, _D>::num, __uratio<_N, _D>::den>();}
3265
3266 template <uint64_t _N, uint64_t _D>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003267 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003268 typename enable_if
3269 <
3270 __uratio<_N, _D>::num <= 0xFFFFFFFFFFFFFFFFull / (_Max - _Min),
3271 result_type
3272 >::type
3273 __eval(__uratio<_N, _D>)
3274 {
3275 const size_t __j = static_cast<size_t>(__uratio<_N, _D>::num * (_Y_ - _Min)
3276 / __uratio<_N, _D>::den);
3277 _Y_ = _V_[__j];
3278 _V_[__j] = __e_();
3279 return _Y_;
3280 }
3281
3282 template <uint64_t __n, uint64_t __d>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003283 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003284 result_type __evalf()
3285 {
3286 const double _F = __d == 0 ?
3287 __n / (2. * 0x8000000000000000ull) :
3288 __n / (double)__d;
3289 const size_t __j = static_cast<size_t>(_F * (_Y_ - _Min));
3290 _Y_ = _V_[__j];
3291 _V_[__j] = __e_();
3292 return _Y_;
3293 }
3294};
3295
3296template<class _Eng, size_t _K>
3297bool
3298operator==(
3299 const shuffle_order_engine<_Eng, _K>& __x,
3300 const shuffle_order_engine<_Eng, _K>& __y)
3301{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003302 return __x._Y_ == __y._Y_ && _VSTD::equal(__x._V_, __x._V_ + _K, __y._V_) &&
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003303 __x.__e_ == __y.__e_;
3304}
3305
3306template<class _Eng, size_t _K>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003307inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003308bool
3309operator!=(
3310 const shuffle_order_engine<_Eng, _K>& __x,
3311 const shuffle_order_engine<_Eng, _K>& __y)
3312{
3313 return !(__x == __y);
3314}
3315
3316template <class _CharT, class _Traits,
3317 class _Eng, size_t _K>
3318basic_ostream<_CharT, _Traits>&
3319operator<<(basic_ostream<_CharT, _Traits>& __os,
3320 const shuffle_order_engine<_Eng, _K>& __x)
3321{
3322 __save_flags<_CharT, _Traits> _(__os);
3323 __os.flags(ios_base::dec | ios_base::left);
3324 _CharT __sp = __os.widen(' ');
3325 __os.fill(__sp);
3326 __os << __x.__e_ << __sp << __x._V_[0];
3327 for (size_t __i = 1; __i < _K; ++__i)
3328 __os << __sp << __x._V_[__i];
3329 return __os << __sp << __x._Y_;
3330}
3331
3332template <class _CharT, class _Traits,
3333 class _Eng, size_t _K>
3334basic_istream<_CharT, _Traits>&
3335operator>>(basic_istream<_CharT, _Traits>& __is,
3336 shuffle_order_engine<_Eng, _K>& __x)
3337{
3338 typedef typename shuffle_order_engine<_Eng, _K>::result_type result_type;
3339 __save_flags<_CharT, _Traits> _(__is);
3340 __is.flags(ios_base::dec | ios_base::skipws);
3341 _Eng __e;
3342 result_type _V[_K+1];
3343 __is >> __e;
3344 for (size_t __i = 0; __i < _K+1; ++__i)
3345 __is >> _V[__i];
3346 if (!__is.fail())
3347 {
3348 __x.__e_ = __e;
3349 for (size_t __i = 0; __i < _K; ++__i)
3350 __x._V_[__i] = _V[__i];
3351 __x._Y_ = _V[_K];
3352 }
3353 return __is;
3354}
3355
3356typedef shuffle_order_engine<minstd_rand0, 256> knuth_b;
3357
3358// random_device
3359
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003360class _LIBCPP_VISIBLE random_device
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003361{
3362 int __f_;
3363public:
3364 // types
3365 typedef unsigned result_type;
3366
3367 // generator characteristics
3368 static const result_type _Min = 0;
3369 static const result_type _Max = 0xFFFFFFFFu;
3370
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003371 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003372 static const/*expr*/ result_type min() { return _Min;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003373 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003374 static const/*expr*/ result_type max() { return _Max;}
3375
3376 // constructors
3377 explicit random_device(const string& __token = "/dev/urandom");
3378 ~random_device();
3379
3380 // generating functions
3381 result_type operator()();
3382
3383 // property functions
3384 double entropy() const;
3385
3386private:
3387 // no copy functions
3388 random_device(const random_device&); // = delete;
3389 random_device& operator=(const random_device&); // = delete;
3390};
3391
3392// seed_seq
3393
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003394class _LIBCPP_VISIBLE seed_seq
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003395{
3396public:
3397 // types
3398 typedef uint32_t result_type;
3399
3400private:
3401 vector<result_type> __v_;
3402
3403 template<class _InputIterator>
3404 void init(_InputIterator __first, _InputIterator __last);
3405public:
3406 // constructors
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003407 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003408 seed_seq() {}
Howard Hinnante3e32912011-08-12 21:56:02 +00003409#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003410 template<class _Tp>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003411 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003412 seed_seq(initializer_list<_Tp> __il) {init(__il.begin(), __il.end());}
Howard Hinnante3e32912011-08-12 21:56:02 +00003413#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant324bb032010-08-22 00:02:43 +00003414
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003415 template<class _InputIterator>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003416 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003417 seed_seq(_InputIterator __first, _InputIterator __last)
3418 {init(__first, __last);}
3419
3420 // generating functions
3421 template<class _RandomAccessIterator>
3422 void generate(_RandomAccessIterator __first, _RandomAccessIterator __last);
3423
3424 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003425 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003426 size_t size() const {return __v_.size();}
3427 template<class _OutputIterator>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003428 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003429 void param(_OutputIterator __dest) const
Howard Hinnant0949eed2011-06-30 21:18:19 +00003430 {_VSTD::copy(__v_.begin(), __v_.end(), __dest);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003431
3432private:
3433 // no copy functions
3434 seed_seq(const seed_seq&); // = delete;
3435 void operator=(const seed_seq&); // = delete;
3436
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003437 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003438 static result_type _T(result_type __x) {return __x ^ (__x >> 27);}
3439};
3440
3441template<class _InputIterator>
3442void
3443seed_seq::init(_InputIterator __first, _InputIterator __last)
3444{
3445 for (_InputIterator __s = __first; __s != __last; ++__s)
3446 __v_.push_back(*__s & 0xFFFFFFFF);
3447}
3448
3449template<class _RandomAccessIterator>
3450void
3451seed_seq::generate(_RandomAccessIterator __first, _RandomAccessIterator __last)
3452{
3453 if (__first != __last)
3454 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00003455 _VSTD::fill(__first, __last, 0x8b8b8b8b);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003456 const size_t __n = static_cast<size_t>(__last - __first);
3457 const size_t __s = __v_.size();
3458 const size_t __t = (__n >= 623) ? 11
3459 : (__n >= 68) ? 7
3460 : (__n >= 39) ? 5
3461 : (__n >= 7) ? 3
3462 : (__n - 1) / 2;
3463 const size_t __p = (__n - __t) / 2;
3464 const size_t __q = __p + __t;
Howard Hinnant0949eed2011-06-30 21:18:19 +00003465 const size_t __m = _VSTD::max(__s + 1, __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003466 // __k = 0;
3467 {
3468 result_type __r = 1664525 * _T(__first[0] ^ __first[__p]
3469 ^ __first[__n - 1]);
3470 __first[__p] += __r;
3471 __r += __s;
3472 __first[__q] += __r;
3473 __first[0] = __r;
3474 }
3475 for (size_t __k = 1; __k <= __s; ++__k)
3476 {
3477 const size_t __kmodn = __k % __n;
3478 const size_t __kpmodn = (__k + __p) % __n;
3479 result_type __r = 1664525 * _T(__first[__kmodn] ^ __first[__kpmodn]
3480 ^ __first[(__k - 1) % __n]);
3481 __first[__kpmodn] += __r;
3482 __r += __kmodn + __v_[__k-1];
3483 __first[(__k + __q) % __n] += __r;
3484 __first[__kmodn] = __r;
3485 }
3486 for (size_t __k = __s + 1; __k < __m; ++__k)
3487 {
3488 const size_t __kmodn = __k % __n;
3489 const size_t __kpmodn = (__k + __p) % __n;
3490 result_type __r = 1664525 * _T(__first[__kmodn] ^ __first[__kpmodn]
3491 ^ __first[(__k - 1) % __n]);
3492 __first[__kpmodn] += __r;
3493 __r += __kmodn;
3494 __first[(__k + __q) % __n] += __r;
3495 __first[__kmodn] = __r;
3496 }
3497 for (size_t __k = __m; __k < __m + __n; ++__k)
3498 {
3499 const size_t __kmodn = __k % __n;
3500 const size_t __kpmodn = (__k + __p) % __n;
3501 result_type __r = 1566083941 * _T(__first[__kmodn] +
3502 __first[__kpmodn] +
3503 __first[(__k - 1) % __n]);
3504 __first[__kpmodn] ^= __r;
3505 __r -= __kmodn;
3506 __first[(__k + __q) % __n] ^= __r;
3507 __first[__kmodn] = __r;
3508 }
3509 }
3510}
3511
Howard Hinnant30a840f2010-05-12 17:08:57 +00003512// generate_canonical
3513
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003514template<class _RealType, size_t __bits, class _URNG>
3515_RealType
3516generate_canonical(_URNG& __g)
3517{
3518 const size_t _Dt = numeric_limits<_RealType>::digits;
3519 const size_t __b = _Dt < __bits ? _Dt : __bits;
3520 const size_t __logR = __log2<uint64_t, _URNG::_Max - _URNG::_Min + uint64_t(1)>::value;
3521 const size_t __k = __b / __logR + (__b % __logR != 0) + (__b == 0);
3522 const _RealType _R = _URNG::_Max - _URNG::_Min + _RealType(1);
3523 _RealType __base = _R;
3524 _RealType _S = __g() - _URNG::_Min;
3525 for (size_t __i = 1; __i < __k; ++__i, __base *= _R)
3526 _S += (__g() - _URNG::_Min) * __base;
3527 return _S / __base;
3528}
3529
Howard Hinnant30a840f2010-05-12 17:08:57 +00003530// uniform_int_distribution
3531
Howard Hinnantc3267212010-05-26 17:49:34 +00003532// in <algorithm>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003533
3534template <class _CharT, class _Traits, class _IT>
3535basic_ostream<_CharT, _Traits>&
3536operator<<(basic_ostream<_CharT, _Traits>& __os,
3537 const uniform_int_distribution<_IT>& __x)
3538{
3539 __save_flags<_CharT, _Traits> _(__os);
3540 __os.flags(ios_base::dec | ios_base::left);
3541 _CharT __sp = __os.widen(' ');
3542 __os.fill(__sp);
3543 return __os << __x.a() << __sp << __x.b();
3544}
3545
3546template <class _CharT, class _Traits, class _IT>
3547basic_istream<_CharT, _Traits>&
3548operator>>(basic_istream<_CharT, _Traits>& __is,
3549 uniform_int_distribution<_IT>& __x)
3550{
3551 typedef uniform_int_distribution<_IT> _Eng;
3552 typedef typename _Eng::result_type result_type;
3553 typedef typename _Eng::param_type param_type;
3554 __save_flags<_CharT, _Traits> _(__is);
3555 __is.flags(ios_base::dec | ios_base::skipws);
3556 result_type __a;
3557 result_type __b;
3558 __is >> __a >> __b;
3559 if (!__is.fail())
3560 __x.param(param_type(__a, __b));
3561 return __is;
3562}
3563
Howard Hinnant30a840f2010-05-12 17:08:57 +00003564// uniform_real_distribution
3565
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003566template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003567class _LIBCPP_VISIBLE uniform_real_distribution
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003568{
3569public:
3570 // types
3571 typedef _RealType result_type;
3572
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003573 class _LIBCPP_VISIBLE param_type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003574 {
3575 result_type __a_;
3576 result_type __b_;
3577 public:
3578 typedef uniform_real_distribution distribution_type;
3579
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003580 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003581 explicit param_type(result_type __a = 0,
3582 result_type __b = 1)
3583 : __a_(__a), __b_(__b) {}
3584
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003585 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003586 result_type a() const {return __a_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003587 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003588 result_type b() const {return __b_;}
3589
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003590 friend _LIBCPP_INLINE_VISIBILITY
3591 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003592 {return __x.__a_ == __y.__a_ && __x.__b_ == __y.__b_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003593 friend _LIBCPP_INLINE_VISIBILITY
3594 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003595 {return !(__x == __y);}
3596 };
3597
3598private:
3599 param_type __p_;
3600
3601public:
3602 // constructors and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003603 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003604 explicit uniform_real_distribution(result_type __a = 0, result_type __b = 1)
3605 : __p_(param_type(__a, __b)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003606 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003607 explicit uniform_real_distribution(const param_type& __p) : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003608 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003609 void reset() {}
3610
3611 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003612 template<class _URNG>
3613 _LIBCPP_INLINE_VISIBILITY
3614 result_type operator()(_URNG& __g)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003615 {return (*this)(__g, __p_);}
3616 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
3617
3618 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003619 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003620 result_type a() const {return __p_.a();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003621 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003622 result_type b() const {return __p_.b();}
3623
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003624 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003625 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003626 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003627 void param(const param_type& __p) {__p_ = __p;}
3628
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003629 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003630 result_type min() const {return a();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003631 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003632 result_type max() const {return b();}
3633
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003634 friend _LIBCPP_INLINE_VISIBILITY
3635 bool operator==(const uniform_real_distribution& __x,
3636 const uniform_real_distribution& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003637 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003638 friend _LIBCPP_INLINE_VISIBILITY
3639 bool operator!=(const uniform_real_distribution& __x,
3640 const uniform_real_distribution& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003641 {return !(__x == __y);}
3642};
3643
3644template<class _RealType>
3645template<class _URNG>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003646inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003647typename uniform_real_distribution<_RealType>::result_type
3648uniform_real_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
3649{
3650 return (__p.b() - __p.a())
Howard Hinnant0949eed2011-06-30 21:18:19 +00003651 * _VSTD::generate_canonical<_RealType, numeric_limits<_RealType>::digits>(__g)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003652 + __p.a();
3653}
3654
3655template <class _CharT, class _Traits, class _RT>
3656basic_ostream<_CharT, _Traits>&
3657operator<<(basic_ostream<_CharT, _Traits>& __os,
3658 const uniform_real_distribution<_RT>& __x)
3659{
3660 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00003661 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
3662 ios_base::scientific);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003663 _CharT __sp = __os.widen(' ');
3664 __os.fill(__sp);
3665 return __os << __x.a() << __sp << __x.b();
3666}
3667
3668template <class _CharT, class _Traits, class _RT>
3669basic_istream<_CharT, _Traits>&
3670operator>>(basic_istream<_CharT, _Traits>& __is,
3671 uniform_real_distribution<_RT>& __x)
3672{
3673 typedef uniform_real_distribution<_RT> _Eng;
3674 typedef typename _Eng::result_type result_type;
3675 typedef typename _Eng::param_type param_type;
3676 __save_flags<_CharT, _Traits> _(__is);
3677 __is.flags(ios_base::dec | ios_base::skipws);
3678 result_type __a;
3679 result_type __b;
3680 __is >> __a >> __b;
3681 if (!__is.fail())
3682 __x.param(param_type(__a, __b));
3683 return __is;
3684}
3685
Howard Hinnant30a840f2010-05-12 17:08:57 +00003686// bernoulli_distribution
3687
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003688class _LIBCPP_VISIBLE bernoulli_distribution
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003689{
3690public:
3691 // types
3692 typedef bool result_type;
3693
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003694 class _LIBCPP_VISIBLE param_type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003695 {
3696 double __p_;
3697 public:
3698 typedef bernoulli_distribution distribution_type;
3699
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003700 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003701 explicit param_type(double __p = 0.5) : __p_(__p) {}
3702
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003703 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003704 double p() const {return __p_;}
3705
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003706 friend _LIBCPP_INLINE_VISIBILITY
3707 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003708 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003709 friend _LIBCPP_INLINE_VISIBILITY
3710 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003711 {return !(__x == __y);}
3712 };
3713
3714private:
3715 param_type __p_;
3716
3717public:
3718 // constructors and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003719 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003720 explicit bernoulli_distribution(double __p = 0.5)
3721 : __p_(param_type(__p)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003722 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003723 explicit bernoulli_distribution(const param_type& __p) : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003724 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003725 void reset() {}
3726
3727 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003728 template<class _URNG>
3729 _LIBCPP_INLINE_VISIBILITY
3730 result_type operator()(_URNG& __g)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003731 {return (*this)(__g, __p_);}
Howard Hinnant03aad812010-05-11 23:26:59 +00003732 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003733
3734 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003735 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003736 double p() const {return __p_.p();}
3737
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003738 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003739 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003740 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003741 void param(const param_type& __p) {__p_ = __p;}
3742
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003743 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003744 result_type min() const {return false;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003745 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003746 result_type max() const {return true;}
3747
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003748 friend _LIBCPP_INLINE_VISIBILITY
3749 bool operator==(const bernoulli_distribution& __x,
3750 const bernoulli_distribution& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003751 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003752 friend _LIBCPP_INLINE_VISIBILITY
3753 bool operator!=(const bernoulli_distribution& __x,
3754 const bernoulli_distribution& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003755 {return !(__x == __y);}
3756};
3757
Howard Hinnant03aad812010-05-11 23:26:59 +00003758template<class _URNG>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003759inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003760bernoulli_distribution::result_type
3761bernoulli_distribution::operator()(_URNG& __g, const param_type& __p)
3762{
Howard Hinnantd6d11712010-05-20 15:11:46 +00003763 uniform_real_distribution<double> __gen;
3764 return __gen(__g) < __p.p();
Howard Hinnant03aad812010-05-11 23:26:59 +00003765}
3766
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003767template <class _CharT, class _Traits>
3768basic_ostream<_CharT, _Traits>&
3769operator<<(basic_ostream<_CharT, _Traits>& __os, const bernoulli_distribution& __x)
3770{
3771 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00003772 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
3773 ios_base::scientific);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003774 _CharT __sp = __os.widen(' ');
3775 __os.fill(__sp);
3776 return __os << __x.p();
3777}
3778
3779template <class _CharT, class _Traits>
3780basic_istream<_CharT, _Traits>&
3781operator>>(basic_istream<_CharT, _Traits>& __is, bernoulli_distribution& __x)
3782{
3783 typedef bernoulli_distribution _Eng;
3784 typedef typename _Eng::param_type param_type;
3785 __save_flags<_CharT, _Traits> _(__is);
3786 __is.flags(ios_base::dec | ios_base::skipws);
3787 double __p;
3788 __is >> __p;
3789 if (!__is.fail())
3790 __x.param(param_type(__p));
3791 return __is;
3792}
3793
Howard Hinnant30a840f2010-05-12 17:08:57 +00003794// binomial_distribution
3795
Howard Hinnant03aad812010-05-11 23:26:59 +00003796template<class _IntType = int>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003797class _LIBCPP_VISIBLE binomial_distribution
Howard Hinnant03aad812010-05-11 23:26:59 +00003798{
3799public:
3800 // types
3801 typedef _IntType result_type;
3802
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003803 class _LIBCPP_VISIBLE param_type
Howard Hinnant03aad812010-05-11 23:26:59 +00003804 {
3805 result_type __t_;
3806 double __p_;
Howard Hinnant6add8dd2010-05-15 21:36:23 +00003807 double __pr_;
3808 double __odds_ratio_;
3809 result_type __r0_;
Howard Hinnant03aad812010-05-11 23:26:59 +00003810 public:
3811 typedef binomial_distribution distribution_type;
3812
Howard Hinnant6add8dd2010-05-15 21:36:23 +00003813 explicit param_type(result_type __t = 1, double __p = 0.5);
Howard Hinnant03aad812010-05-11 23:26:59 +00003814
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003815 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003816 result_type t() const {return __t_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003817 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003818 double p() const {return __p_;}
3819
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003820 friend _LIBCPP_INLINE_VISIBILITY
3821 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant03aad812010-05-11 23:26:59 +00003822 {return __x.__t_ == __y.__t_ && __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003823 friend _LIBCPP_INLINE_VISIBILITY
3824 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant03aad812010-05-11 23:26:59 +00003825 {return !(__x == __y);}
Howard Hinnant6add8dd2010-05-15 21:36:23 +00003826
3827 friend class binomial_distribution;
Howard Hinnant03aad812010-05-11 23:26:59 +00003828 };
3829
3830private:
3831 param_type __p_;
3832
3833public:
3834 // constructors and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003835 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003836 explicit binomial_distribution(result_type __t = 1, double __p = 0.5)
3837 : __p_(param_type(__t, __p)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003838 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003839 explicit binomial_distribution(const param_type& __p) : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003840 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003841 void reset() {}
3842
3843 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003844 template<class _URNG>
3845 _LIBCPP_INLINE_VISIBILITY
3846 result_type operator()(_URNG& __g)
Howard Hinnant03aad812010-05-11 23:26:59 +00003847 {return (*this)(__g, __p_);}
3848 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
3849
3850 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003851 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003852 result_type t() const {return __p_.t();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003853 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003854 double p() const {return __p_.p();}
3855
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003856 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003857 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003858 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003859 void param(const param_type& __p) {__p_ = __p;}
3860
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003861 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003862 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003863 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant03aad812010-05-11 23:26:59 +00003864 result_type max() const {return t();}
3865
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003866 friend _LIBCPP_INLINE_VISIBILITY
3867 bool operator==(const binomial_distribution& __x,
3868 const binomial_distribution& __y)
Howard Hinnant03aad812010-05-11 23:26:59 +00003869 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003870 friend _LIBCPP_INLINE_VISIBILITY
3871 bool operator!=(const binomial_distribution& __x,
3872 const binomial_distribution& __y)
Howard Hinnant03aad812010-05-11 23:26:59 +00003873 {return !(__x == __y);}
3874};
3875
3876template<class _IntType>
Howard Hinnant6add8dd2010-05-15 21:36:23 +00003877binomial_distribution<_IntType>::param_type::param_type(result_type __t, double __p)
3878 : __t_(__t), __p_(__p)
3879{
3880 if (0 < __p_ && __p_ < 1)
3881 {
3882 __r0_ = static_cast<result_type>((__t_ + 1) * __p_);
Howard Hinnant0949eed2011-06-30 21:18:19 +00003883 __pr_ = _VSTD::exp(_VSTD::lgamma(__t_ + 1.) - _VSTD::lgamma(__r0_ + 1.) -
3884 _VSTD::lgamma(__t_ - __r0_ + 1.) + __r0_ * _VSTD::log(__p_) +
3885 (__t_ - __r0_) * _VSTD::log(1 - __p_));
Howard Hinnant6add8dd2010-05-15 21:36:23 +00003886 __odds_ratio_ = __p_ / (1 - __p_);
3887 }
3888}
3889
3890template<class _IntType>
Howard Hinnant03aad812010-05-11 23:26:59 +00003891template<class _URNG>
3892_IntType
Howard Hinnant6add8dd2010-05-15 21:36:23 +00003893binomial_distribution<_IntType>::operator()(_URNG& __g, const param_type& __pr)
Howard Hinnant03aad812010-05-11 23:26:59 +00003894{
Howard Hinnant6add8dd2010-05-15 21:36:23 +00003895 if (__pr.__t_ == 0 || __pr.__p_ == 0)
3896 return 0;
3897 if (__pr.__p_ == 1)
3898 return __pr.__t_;
3899 uniform_real_distribution<double> __gen;
3900 double __u = __gen(__g) - __pr.__pr_;
3901 if (__u < 0)
3902 return __pr.__r0_;
3903 double __pu = __pr.__pr_;
3904 double __pd = __pu;
3905 result_type __ru = __pr.__r0_;
3906 result_type __rd = __ru;
3907 while (true)
3908 {
3909 if (__rd >= 1)
3910 {
3911 __pd *= __rd / (__pr.__odds_ratio_ * (__pr.__t_ - __rd + 1));
3912 __u -= __pd;
3913 if (__u < 0)
3914 return __rd - 1;
3915 }
3916 --__rd;
3917 ++__ru;
3918 if (__ru <= __pr.__t_)
3919 {
3920 __pu *= (__pr.__t_ - __ru + 1) * __pr.__odds_ratio_ / __ru;
3921 __u -= __pu;
3922 if (__u < 0)
3923 return __ru;
3924 }
3925 }
Howard Hinnant03aad812010-05-11 23:26:59 +00003926}
3927
3928template <class _CharT, class _Traits, class _IntType>
3929basic_ostream<_CharT, _Traits>&
3930operator<<(basic_ostream<_CharT, _Traits>& __os,
3931 const binomial_distribution<_IntType>& __x)
3932{
3933 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00003934 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
3935 ios_base::scientific);
Howard Hinnant03aad812010-05-11 23:26:59 +00003936 _CharT __sp = __os.widen(' ');
3937 __os.fill(__sp);
3938 return __os << __x.t() << __sp << __x.p();
3939}
3940
3941template <class _CharT, class _Traits, class _IntType>
3942basic_istream<_CharT, _Traits>&
3943operator>>(basic_istream<_CharT, _Traits>& __is,
3944 binomial_distribution<_IntType>& __x)
3945{
3946 typedef binomial_distribution<_IntType> _Eng;
3947 typedef typename _Eng::result_type result_type;
3948 typedef typename _Eng::param_type param_type;
3949 __save_flags<_CharT, _Traits> _(__is);
3950 __is.flags(ios_base::dec | ios_base::skipws);
3951 result_type __t;
3952 double __p;
3953 __is >> __t >> __p;
3954 if (!__is.fail())
3955 __x.param(param_type(__t, __p));
3956 return __is;
3957}
3958
Howard Hinnant30a840f2010-05-12 17:08:57 +00003959// exponential_distribution
3960
3961template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003962class _LIBCPP_VISIBLE exponential_distribution
Howard Hinnant30a840f2010-05-12 17:08:57 +00003963{
3964public:
3965 // types
3966 typedef _RealType result_type;
3967
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003968 class _LIBCPP_VISIBLE param_type
Howard Hinnant30a840f2010-05-12 17:08:57 +00003969 {
3970 result_type __lambda_;
3971 public:
3972 typedef exponential_distribution distribution_type;
3973
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003974 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant30a840f2010-05-12 17:08:57 +00003975 explicit param_type(result_type __lambda = 1) : __lambda_(__lambda) {}
3976
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003977 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant30a840f2010-05-12 17:08:57 +00003978 result_type lambda() const {return __lambda_;}
3979
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003980 friend _LIBCPP_INLINE_VISIBILITY
3981 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant30a840f2010-05-12 17:08:57 +00003982 {return __x.__lambda_ == __y.__lambda_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003983 friend _LIBCPP_INLINE_VISIBILITY
3984 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant30a840f2010-05-12 17:08:57 +00003985 {return !(__x == __y);}
3986 };
3987
3988private:
3989 param_type __p_;
3990
3991public:
3992 // constructors and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003993 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant30a840f2010-05-12 17:08:57 +00003994 explicit exponential_distribution(result_type __lambda = 1)
3995 : __p_(param_type(__lambda)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003996 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant30a840f2010-05-12 17:08:57 +00003997 explicit exponential_distribution(const param_type& __p) : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00003998 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant30a840f2010-05-12 17:08:57 +00003999 void reset() {}
4000
4001 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004002 template<class _URNG>
4003 _LIBCPP_INLINE_VISIBILITY
4004 result_type operator()(_URNG& __g)
Howard Hinnant30a840f2010-05-12 17:08:57 +00004005 {return (*this)(__g, __p_);}
4006 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
4007
4008 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004009 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant30a840f2010-05-12 17:08:57 +00004010 result_type lambda() const {return __p_.lambda();}
4011
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004012 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant30a840f2010-05-12 17:08:57 +00004013 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004014 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant30a840f2010-05-12 17:08:57 +00004015 void param(const param_type& __p) {__p_ = __p;}
4016
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004017 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant30a840f2010-05-12 17:08:57 +00004018 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004019 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantdf40dc62010-05-16 17:56:20 +00004020 result_type max() const {return numeric_limits<result_type>::infinity();}
Howard Hinnant30a840f2010-05-12 17:08:57 +00004021
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004022 friend _LIBCPP_INLINE_VISIBILITY
4023 bool operator==(const exponential_distribution& __x,
4024 const exponential_distribution& __y)
Howard Hinnant30a840f2010-05-12 17:08:57 +00004025 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004026 friend _LIBCPP_INLINE_VISIBILITY
4027 bool operator!=(const exponential_distribution& __x,
4028 const exponential_distribution& __y)
Howard Hinnant30a840f2010-05-12 17:08:57 +00004029 {return !(__x == __y);}
4030};
4031
4032template <class _RealType>
4033template<class _URNG>
4034_RealType
4035exponential_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
4036{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004037 return -_VSTD::log
Howard Hinnant30a840f2010-05-12 17:08:57 +00004038 (
4039 result_type(1) -
Howard Hinnant0949eed2011-06-30 21:18:19 +00004040 _VSTD::generate_canonical<result_type,
Howard Hinnant30a840f2010-05-12 17:08:57 +00004041 numeric_limits<result_type>::digits>(__g)
4042 )
4043 / __p.lambda();
4044}
4045
4046template <class _CharT, class _Traits, class _RealType>
4047basic_ostream<_CharT, _Traits>&
4048operator<<(basic_ostream<_CharT, _Traits>& __os,
4049 const exponential_distribution<_RealType>& __x)
4050{
4051 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00004052 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
4053 ios_base::scientific);
Howard Hinnant30a840f2010-05-12 17:08:57 +00004054 return __os << __x.lambda();
4055}
4056
4057template <class _CharT, class _Traits, class _RealType>
4058basic_istream<_CharT, _Traits>&
4059operator>>(basic_istream<_CharT, _Traits>& __is,
4060 exponential_distribution<_RealType>& __x)
4061{
4062 typedef exponential_distribution<_RealType> _Eng;
4063 typedef typename _Eng::result_type result_type;
4064 typedef typename _Eng::param_type param_type;
4065 __save_flags<_CharT, _Traits> _(__is);
4066 __is.flags(ios_base::dec | ios_base::skipws);
4067 result_type __lambda;
4068 __is >> __lambda;
4069 if (!__is.fail())
4070 __x.param(param_type(__lambda));
4071 return __is;
4072}
4073
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004074// normal_distribution
4075
4076template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004077class _LIBCPP_VISIBLE normal_distribution
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004078{
4079public:
4080 // types
4081 typedef _RealType result_type;
4082
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004083 class _LIBCPP_VISIBLE param_type
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004084 {
4085 result_type __mean_;
4086 result_type __stddev_;
4087 public:
4088 typedef normal_distribution distribution_type;
4089
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004090 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004091 explicit param_type(result_type __mean = 0, result_type __stddev = 1)
4092 : __mean_(__mean), __stddev_(__stddev) {}
4093
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004094 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004095 result_type mean() const {return __mean_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004096 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004097 result_type stddev() const {return __stddev_;}
4098
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004099 friend _LIBCPP_INLINE_VISIBILITY
4100 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004101 {return __x.__mean_ == __y.__mean_ && __x.__stddev_ == __y.__stddev_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004102 friend _LIBCPP_INLINE_VISIBILITY
4103 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004104 {return !(__x == __y);}
4105 };
4106
4107private:
4108 param_type __p_;
4109 result_type _V_;
4110 bool _V_hot_;
4111
4112public:
4113 // constructors and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004114 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004115 explicit normal_distribution(result_type __mean = 0, result_type __stddev = 1)
4116 : __p_(param_type(__mean, __stddev)), _V_hot_(false) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004117 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004118 explicit normal_distribution(const param_type& __p)
4119 : __p_(__p), _V_hot_(false) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004120 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004121 void reset() {_V_hot_ = false;}
4122
4123 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004124 template<class _URNG>
4125 _LIBCPP_INLINE_VISIBILITY
4126 result_type operator()(_URNG& __g)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004127 {return (*this)(__g, __p_);}
4128 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
4129
4130 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004131 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004132 result_type mean() const {return __p_.mean();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004133 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004134 result_type stddev() const {return __p_.stddev();}
4135
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004136 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004137 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004138 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004139 void param(const param_type& __p) {__p_ = __p;}
4140
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004141 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004142 result_type min() const {return -numeric_limits<result_type>::infinity();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004143 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004144 result_type max() const {return numeric_limits<result_type>::infinity();}
4145
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004146 friend _LIBCPP_INLINE_VISIBILITY
4147 bool operator==(const normal_distribution& __x,
4148 const normal_distribution& __y)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004149 {return __x.__p_ == __y.__p_ && __x._V_hot_ == __y._V_hot_ &&
4150 (!__x._V_hot_ || __x._V_ == __y._V_);}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004151 friend _LIBCPP_INLINE_VISIBILITY
4152 bool operator!=(const normal_distribution& __x,
4153 const normal_distribution& __y)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004154 {return !(__x == __y);}
4155
4156 template <class _CharT, class _Traits, class _RT>
4157 friend
4158 basic_ostream<_CharT, _Traits>&
4159 operator<<(basic_ostream<_CharT, _Traits>& __os,
4160 const normal_distribution<_RT>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00004161
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004162 template <class _CharT, class _Traits, class _RT>
4163 friend
4164 basic_istream<_CharT, _Traits>&
4165 operator>>(basic_istream<_CharT, _Traits>& __is,
4166 normal_distribution<_RT>& __x);
4167};
4168
4169template <class _RealType>
4170template<class _URNG>
4171_RealType
4172normal_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
4173{
4174 result_type _U;
4175 if (_V_hot_)
4176 {
4177 _V_hot_ = false;
4178 _U = _V_;
4179 }
4180 else
4181 {
4182 uniform_real_distribution<result_type> _Uni(-1, 1);
4183 result_type __u;
4184 result_type __v;
4185 result_type __s;
4186 do
4187 {
4188 __u = _Uni(__g);
4189 __v = _Uni(__g);
4190 __s = __u * __u + __v * __v;
4191 } while (__s > 1 || __s == 0);
Howard Hinnant0949eed2011-06-30 21:18:19 +00004192 result_type _F = _VSTD::sqrt(-2 * _VSTD::log(__s) / __s);
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004193 _V_ = __v * _F;
4194 _V_hot_ = true;
4195 _U = __u * _F;
4196 }
4197 return _U * __p.stddev() + __p.mean();
4198}
4199
4200template <class _CharT, class _Traits, class _RT>
4201basic_ostream<_CharT, _Traits>&
4202operator<<(basic_ostream<_CharT, _Traits>& __os,
4203 const normal_distribution<_RT>& __x)
4204{
4205 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00004206 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
4207 ios_base::scientific);
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004208 _CharT __sp = __os.widen(' ');
4209 __os.fill(__sp);
4210 __os << __x.mean() << __sp << __x.stddev() << __sp << __x._V_hot_;
4211 if (__x._V_hot_)
4212 __os << __sp << __x._V_;
4213 return __os;
4214}
4215
4216template <class _CharT, class _Traits, class _RT>
4217basic_istream<_CharT, _Traits>&
4218operator>>(basic_istream<_CharT, _Traits>& __is,
4219 normal_distribution<_RT>& __x)
4220{
4221 typedef normal_distribution<_RT> _Eng;
4222 typedef typename _Eng::result_type result_type;
4223 typedef typename _Eng::param_type param_type;
4224 __save_flags<_CharT, _Traits> _(__is);
4225 __is.flags(ios_base::dec | ios_base::skipws);
4226 result_type __mean;
4227 result_type __stddev;
4228 result_type _V = 0;
4229 bool _V_hot = false;
4230 __is >> __mean >> __stddev >> _V_hot;
4231 if (_V_hot)
4232 __is >> _V;
4233 if (!__is.fail())
4234 {
4235 __x.param(param_type(__mean, __stddev));
4236 __x._V_hot_ = _V_hot;
4237 __x._V_ = _V;
4238 }
4239 return __is;
4240}
4241
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004242// lognormal_distribution
4243
4244template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004245class _LIBCPP_VISIBLE lognormal_distribution
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004246{
4247public:
4248 // types
4249 typedef _RealType result_type;
4250
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004251 class _LIBCPP_VISIBLE param_type
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004252 {
4253 normal_distribution<result_type> __nd_;
4254 public:
4255 typedef lognormal_distribution distribution_type;
4256
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004257 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004258 explicit param_type(result_type __m = 0, result_type __s = 1)
4259 : __nd_(__m, __s) {}
4260
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004261 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004262 result_type m() const {return __nd_.mean();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004263 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004264 result_type s() const {return __nd_.stddev();}
4265
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004266 friend _LIBCPP_INLINE_VISIBILITY
4267 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004268 {return __x.__nd_ == __y.__nd_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004269 friend _LIBCPP_INLINE_VISIBILITY
4270 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004271 {return !(__x == __y);}
4272 friend class lognormal_distribution;
4273
4274 template <class _CharT, class _Traits, class _RT>
4275 friend
4276 basic_ostream<_CharT, _Traits>&
4277 operator<<(basic_ostream<_CharT, _Traits>& __os,
4278 const lognormal_distribution<_RT>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00004279
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004280 template <class _CharT, class _Traits, class _RT>
4281 friend
4282 basic_istream<_CharT, _Traits>&
4283 operator>>(basic_istream<_CharT, _Traits>& __is,
4284 lognormal_distribution<_RT>& __x);
4285 };
4286
4287private:
4288 param_type __p_;
4289
4290public:
4291 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004292 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004293 explicit lognormal_distribution(result_type __m = 0, result_type __s = 1)
4294 : __p_(param_type(__m, __s)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004295 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004296 explicit lognormal_distribution(const param_type& __p)
4297 : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004298 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004299 void reset() {__p_.__nd_.reset();}
4300
4301 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004302 template<class _URNG>
4303 _LIBCPP_INLINE_VISIBILITY
4304 result_type operator()(_URNG& __g)
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004305 {return (*this)(__g, __p_);}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004306 template<class _URNG>
4307 _LIBCPP_INLINE_VISIBILITY
4308 result_type operator()(_URNG& __g, const param_type& __p)
Howard Hinnant0949eed2011-06-30 21:18:19 +00004309 {return _VSTD::exp(const_cast<normal_distribution<result_type>&>(__p.__nd_)(__g));}
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004310
4311 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004312 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004313 result_type m() const {return __p_.m();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004314 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004315 result_type s() const {return __p_.s();}
4316
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004317 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004318 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004319 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00004320 void param(const param_type& __p) {__p_ = __p;}
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004321
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004322 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004323 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004324 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004325 result_type max() const {return numeric_limits<result_type>::infinity();}
4326
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004327 friend _LIBCPP_INLINE_VISIBILITY
4328 bool operator==(const lognormal_distribution& __x,
4329 const lognormal_distribution& __y)
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004330 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004331 friend _LIBCPP_INLINE_VISIBILITY
4332 bool operator!=(const lognormal_distribution& __x,
4333 const lognormal_distribution& __y)
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004334 {return !(__x == __y);}
4335
4336 template <class _CharT, class _Traits, class _RT>
4337 friend
4338 basic_ostream<_CharT, _Traits>&
4339 operator<<(basic_ostream<_CharT, _Traits>& __os,
4340 const lognormal_distribution<_RT>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00004341
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004342 template <class _CharT, class _Traits, class _RT>
4343 friend
4344 basic_istream<_CharT, _Traits>&
4345 operator>>(basic_istream<_CharT, _Traits>& __is,
4346 lognormal_distribution<_RT>& __x);
4347};
4348
4349template <class _CharT, class _Traits, class _RT>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004350inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004351basic_ostream<_CharT, _Traits>&
4352operator<<(basic_ostream<_CharT, _Traits>& __os,
4353 const lognormal_distribution<_RT>& __x)
4354{
4355 return __os << __x.__p_.__nd_;
4356}
4357
4358template <class _CharT, class _Traits, class _RT>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004359inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2bc36fc2010-05-17 18:31:53 +00004360basic_istream<_CharT, _Traits>&
4361operator>>(basic_istream<_CharT, _Traits>& __is,
4362 lognormal_distribution<_RT>& __x)
4363{
4364 return __is >> __x.__p_.__nd_;
4365}
4366
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004367// poisson_distribution
4368
4369template<class _IntType = int>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004370class _LIBCPP_VISIBLE poisson_distribution
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004371{
4372public:
4373 // types
4374 typedef _IntType result_type;
4375
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004376 class _LIBCPP_VISIBLE param_type
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004377 {
4378 double __mean_;
4379 double __s_;
4380 double __d_;
4381 double __l_;
4382 double __omega_;
4383 double __c0_;
4384 double __c1_;
4385 double __c2_;
4386 double __c3_;
4387 double __c_;
4388
4389 public:
4390 typedef poisson_distribution distribution_type;
4391
4392 explicit param_type(double __mean = 1.0);
4393
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004394 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004395 double mean() const {return __mean_;}
4396
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004397 friend _LIBCPP_INLINE_VISIBILITY
4398 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004399 {return __x.__mean_ == __y.__mean_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004400 friend _LIBCPP_INLINE_VISIBILITY
4401 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004402 {return !(__x == __y);}
4403
4404 friend class poisson_distribution;
4405 };
4406
4407private:
4408 param_type __p_;
4409
4410public:
4411 // constructors and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004412 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004413 explicit poisson_distribution(double __mean = 1.0) : __p_(__mean) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004414 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004415 explicit poisson_distribution(const param_type& __p) : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004416 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004417 void reset() {}
4418
4419 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004420 template<class _URNG>
4421 _LIBCPP_INLINE_VISIBILITY
4422 result_type operator()(_URNG& __g)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004423 {return (*this)(__g, __p_);}
4424 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
4425
4426 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004427 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004428 double mean() const {return __p_.mean();}
4429
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004430 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004431 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004432 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004433 void param(const param_type& __p) {__p_ = __p;}
4434
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004435 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004436 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004437 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004438 result_type max() const {return numeric_limits<result_type>::max();}
4439
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004440 friend _LIBCPP_INLINE_VISIBILITY
4441 bool operator==(const poisson_distribution& __x,
4442 const poisson_distribution& __y)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004443 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004444 friend _LIBCPP_INLINE_VISIBILITY
4445 bool operator!=(const poisson_distribution& __x,
4446 const poisson_distribution& __y)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004447 {return !(__x == __y);}
4448};
4449
4450template<class _IntType>
4451poisson_distribution<_IntType>::param_type::param_type(double __mean)
4452 : __mean_(__mean)
4453{
4454 if (__mean_ < 10)
4455 {
4456 __s_ = 0;
4457 __d_ = 0;
Howard Hinnant0949eed2011-06-30 21:18:19 +00004458 __l_ = _VSTD::exp(-__mean_);
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004459 __omega_ = 0;
4460 __c3_ = 0;
4461 __c2_ = 0;
4462 __c1_ = 0;
4463 __c0_ = 0;
4464 __c_ = 0;
4465 }
4466 else
4467 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00004468 __s_ = _VSTD::sqrt(__mean_);
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004469 __d_ = 6 * __mean_ * __mean_;
4470 __l_ = static_cast<result_type>(__mean_ - 1.1484);
4471 __omega_ = .3989423 / __s_;
4472 double __b1_ = .4166667E-1 / __mean_;
4473 double __b2_ = .3 * __b1_ * __b1_;
4474 __c3_ = .1428571 * __b1_ * __b2_;
4475 __c2_ = __b2_ - 15. * __c3_;
4476 __c1_ = __b1_ - 6. * __b2_ + 45. * __c3_;
4477 __c0_ = 1. - __b1_ + 3. * __b2_ - 15. * __c3_;
4478 __c_ = .1069 / __mean_;
4479 }
4480}
4481
4482template <class _IntType>
4483template<class _URNG>
4484_IntType
4485poisson_distribution<_IntType>::operator()(_URNG& __urng, const param_type& __pr)
4486{
4487 result_type __x;
4488 uniform_real_distribution<double> __urd;
Howard Hinnant75f76952011-04-14 15:59:22 +00004489 if (__pr.__mean_ < 10)
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004490 {
4491 __x = 0;
4492 for (double __p = __urd(__urng); __p > __pr.__l_; ++__x)
4493 __p *= __urd(__urng);
4494 }
4495 else
4496 {
4497 double __difmuk;
4498 double __g = __pr.__mean_ + __pr.__s_ * normal_distribution<double>()(__urng);
4499 double __u;
4500 if (__g > 0)
4501 {
4502 __x = static_cast<result_type>(__g);
4503 if (__x >= __pr.__l_)
4504 return __x;
4505 __difmuk = __pr.__mean_ - __x;
4506 __u = __urd(__urng);
4507 if (__pr.__d_ * __u >= __difmuk * __difmuk * __difmuk)
4508 return __x;
4509 }
4510 exponential_distribution<double> __edist;
4511 for (bool __using_exp_dist = false; true; __using_exp_dist = true)
4512 {
4513 double __e;
4514 if (__using_exp_dist || __g < 0)
4515 {
4516 double __t;
4517 do
4518 {
4519 __e = __edist(__urng);
4520 __u = __urd(__urng);
4521 __u += __u - 1;
4522 __t = 1.8 + (__u < 0 ? -__e : __e);
4523 } while (__t <= -.6744);
4524 __x = __pr.__mean_ + __pr.__s_ * __t;
4525 __difmuk = __pr.__mean_ - __x;
4526 __using_exp_dist = true;
4527 }
4528 double __px;
4529 double __py;
4530 if (__x < 10)
4531 {
4532 const result_type __fac[] = {1, 1, 2, 6, 24, 120, 720, 5040,
4533 40320, 362880};
4534 __px = -__pr.__mean_;
Howard Hinnant0949eed2011-06-30 21:18:19 +00004535 __py = _VSTD::pow(__pr.__mean_, (double)__x) / __fac[__x];
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004536 }
4537 else
4538 {
4539 double __del = .8333333E-1 / __x;
4540 __del -= 4.8 * __del * __del * __del;
4541 double __v = __difmuk / __x;
Howard Hinnant0949eed2011-06-30 21:18:19 +00004542 if (_VSTD::abs(__v) > 0.25)
4543 __px = __x * _VSTD::log(1 + __v) - __difmuk - __del;
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004544 else
4545 __px = __x * __v * __v * (((((((.1250060 * __v + -.1384794) *
4546 __v + .1421878) * __v + -.1661269) * __v + .2000118) *
4547 __v + -.2500068) * __v + .3333333) * __v + -.5) - __del;
Howard Hinnant0949eed2011-06-30 21:18:19 +00004548 __py = .3989423 / _VSTD::sqrt(__x);
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004549 }
4550 double __r = (0.5 - __difmuk) / __pr.__s_;
4551 double __r2 = __r * __r;
4552 double __fx = -0.5 * __r2;
4553 double __fy = __pr.__omega_ * (((__pr.__c3_ * __r2 + __pr.__c2_) *
4554 __r2 + __pr.__c1_) * __r2 + __pr.__c0_);
4555 if (__using_exp_dist)
4556 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00004557 if (__pr.__c_ * _VSTD::abs(__u) <= __py * _VSTD::exp(__px + __e) -
4558 __fy * _VSTD::exp(__fx + __e))
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004559 break;
4560 }
4561 else
4562 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00004563 if (__fy - __u * __fy <= __py * _VSTD::exp(__px - __fx))
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004564 break;
4565 }
4566 }
4567 }
4568 return __x;
4569}
4570
4571template <class _CharT, class _Traits, class _IntType>
4572basic_ostream<_CharT, _Traits>&
4573operator<<(basic_ostream<_CharT, _Traits>& __os,
4574 const poisson_distribution<_IntType>& __x)
4575{
4576 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00004577 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
4578 ios_base::scientific);
Howard Hinnant6add8dd2010-05-15 21:36:23 +00004579 return __os << __x.mean();
4580}
4581
4582template <class _CharT, class _Traits, class _IntType>
4583basic_istream<_CharT, _Traits>&
4584operator>>(basic_istream<_CharT, _Traits>& __is,
4585 poisson_distribution<_IntType>& __x)
4586{
4587 typedef poisson_distribution<_IntType> _Eng;
4588 typedef typename _Eng::param_type param_type;
4589 __save_flags<_CharT, _Traits> _(__is);
4590 __is.flags(ios_base::dec | ios_base::skipws);
4591 double __mean;
4592 __is >> __mean;
4593 if (!__is.fail())
4594 __x.param(param_type(__mean));
4595 return __is;
4596}
4597
Howard Hinnant9de6e302010-05-16 01:09:02 +00004598// weibull_distribution
4599
4600template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004601class _LIBCPP_VISIBLE weibull_distribution
Howard Hinnant9de6e302010-05-16 01:09:02 +00004602{
4603public:
4604 // types
4605 typedef _RealType result_type;
4606
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004607 class _LIBCPP_VISIBLE param_type
Howard Hinnant9de6e302010-05-16 01:09:02 +00004608 {
4609 result_type __a_;
4610 result_type __b_;
4611 public:
4612 typedef weibull_distribution distribution_type;
4613
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004614 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004615 explicit param_type(result_type __a = 1, result_type __b = 1)
4616 : __a_(__a), __b_(__b) {}
4617
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004618 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004619 result_type a() const {return __a_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004620 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004621 result_type b() const {return __b_;}
4622
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004623 friend _LIBCPP_INLINE_VISIBILITY
4624 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant9de6e302010-05-16 01:09:02 +00004625 {return __x.__a_ == __y.__a_ && __x.__b_ == __y.__b_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004626 friend _LIBCPP_INLINE_VISIBILITY
4627 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant9de6e302010-05-16 01:09:02 +00004628 {return !(__x == __y);}
4629 };
4630
4631private:
4632 param_type __p_;
4633
4634public:
4635 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004636 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004637 explicit weibull_distribution(result_type __a = 1, result_type __b = 1)
4638 : __p_(param_type(__a, __b)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004639 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004640 explicit weibull_distribution(const param_type& __p)
4641 : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004642 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004643 void reset() {}
4644
4645 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004646 template<class _URNG>
4647 _LIBCPP_INLINE_VISIBILITY
4648 result_type operator()(_URNG& __g)
Howard Hinnant9de6e302010-05-16 01:09:02 +00004649 {return (*this)(__g, __p_);}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004650 template<class _URNG>
4651 _LIBCPP_INLINE_VISIBILITY
4652 result_type operator()(_URNG& __g, const param_type& __p)
Howard Hinnant9de6e302010-05-16 01:09:02 +00004653 {return __p.b() *
Howard Hinnant0949eed2011-06-30 21:18:19 +00004654 _VSTD::pow(exponential_distribution<result_type>()(__g), 1/__p.a());}
Howard Hinnant9de6e302010-05-16 01:09:02 +00004655
4656 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004657 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004658 result_type a() const {return __p_.a();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004659 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004660 result_type b() const {return __p_.b();}
4661
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004662 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004663 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004664 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004665 void param(const param_type& __p) {__p_ = __p;}
4666
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004667 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004668 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004669 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9de6e302010-05-16 01:09:02 +00004670 result_type max() const {return numeric_limits<result_type>::infinity();}
4671
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004672 friend _LIBCPP_INLINE_VISIBILITY
4673 bool operator==(const weibull_distribution& __x,
4674 const weibull_distribution& __y)
Howard Hinnant9de6e302010-05-16 01:09:02 +00004675 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004676 friend _LIBCPP_INLINE_VISIBILITY
4677 bool operator!=(const weibull_distribution& __x,
4678 const weibull_distribution& __y)
Howard Hinnant9de6e302010-05-16 01:09:02 +00004679 {return !(__x == __y);}
4680};
4681
4682template <class _CharT, class _Traits, class _RT>
4683basic_ostream<_CharT, _Traits>&
4684operator<<(basic_ostream<_CharT, _Traits>& __os,
4685 const weibull_distribution<_RT>& __x)
4686{
4687 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00004688 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
4689 ios_base::scientific);
Howard Hinnant9de6e302010-05-16 01:09:02 +00004690 _CharT __sp = __os.widen(' ');
4691 __os.fill(__sp);
4692 __os << __x.a() << __sp << __x.b();
4693 return __os;
4694}
4695
4696template <class _CharT, class _Traits, class _RT>
4697basic_istream<_CharT, _Traits>&
4698operator>>(basic_istream<_CharT, _Traits>& __is,
4699 weibull_distribution<_RT>& __x)
4700{
4701 typedef weibull_distribution<_RT> _Eng;
4702 typedef typename _Eng::result_type result_type;
4703 typedef typename _Eng::param_type param_type;
4704 __save_flags<_CharT, _Traits> _(__is);
4705 __is.flags(ios_base::dec | ios_base::skipws);
4706 result_type __a;
4707 result_type __b;
4708 __is >> __a >> __b;
4709 if (!__is.fail())
4710 __x.param(param_type(__a, __b));
4711 return __is;
4712}
4713
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004714template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004715class _LIBCPP_VISIBLE extreme_value_distribution
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004716{
4717public:
4718 // types
4719 typedef _RealType result_type;
4720
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004721 class _LIBCPP_VISIBLE param_type
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004722 {
4723 result_type __a_;
4724 result_type __b_;
4725 public:
4726 typedef extreme_value_distribution distribution_type;
4727
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004728 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004729 explicit param_type(result_type __a = 0, result_type __b = 1)
4730 : __a_(__a), __b_(__b) {}
4731
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004732 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004733 result_type a() const {return __a_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004734 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004735 result_type b() const {return __b_;}
4736
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004737 friend _LIBCPP_INLINE_VISIBILITY
4738 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004739 {return __x.__a_ == __y.__a_ && __x.__b_ == __y.__b_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004740 friend _LIBCPP_INLINE_VISIBILITY
4741 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004742 {return !(__x == __y);}
4743 };
4744
4745private:
4746 param_type __p_;
4747
4748public:
4749 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004750 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004751 explicit extreme_value_distribution(result_type __a = 0, result_type __b = 1)
4752 : __p_(param_type(__a, __b)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004753 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004754 explicit extreme_value_distribution(const param_type& __p)
4755 : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004756 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004757 void reset() {}
4758
4759 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004760 template<class _URNG>
4761 _LIBCPP_INLINE_VISIBILITY
4762 result_type operator()(_URNG& __g)
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004763 {return (*this)(__g, __p_);}
4764 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
4765
4766 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004767 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004768 result_type a() const {return __p_.a();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004769 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004770 result_type b() const {return __p_.b();}
4771
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004772 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004773 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004774 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004775 void param(const param_type& __p) {__p_ = __p;}
4776
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004777 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004778 result_type min() const {return -numeric_limits<result_type>::infinity();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004779 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004780 result_type max() const {return numeric_limits<result_type>::infinity();}
4781
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004782 friend _LIBCPP_INLINE_VISIBILITY
4783 bool operator==(const extreme_value_distribution& __x,
4784 const extreme_value_distribution& __y)
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004785 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004786 friend _LIBCPP_INLINE_VISIBILITY
4787 bool operator!=(const extreme_value_distribution& __x,
4788 const extreme_value_distribution& __y)
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004789 {return !(__x == __y);}
4790};
4791
4792template<class _RealType>
4793template<class _URNG>
4794_RealType
4795extreme_value_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
4796{
4797 return __p.a() - __p.b() *
Howard Hinnant0949eed2011-06-30 21:18:19 +00004798 _VSTD::log(-_VSTD::log(1-uniform_real_distribution<result_type>()(__g)));
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004799}
4800
4801template <class _CharT, class _Traits, class _RT>
4802basic_ostream<_CharT, _Traits>&
4803operator<<(basic_ostream<_CharT, _Traits>& __os,
4804 const extreme_value_distribution<_RT>& __x)
4805{
4806 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00004807 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
4808 ios_base::scientific);
Howard Hinnantc2b0dc72010-05-17 16:21:56 +00004809 _CharT __sp = __os.widen(' ');
4810 __os.fill(__sp);
4811 __os << __x.a() << __sp << __x.b();
4812 return __os;
4813}
4814
4815template <class _CharT, class _Traits, class _RT>
4816basic_istream<_CharT, _Traits>&
4817operator>>(basic_istream<_CharT, _Traits>& __is,
4818 extreme_value_distribution<_RT>& __x)
4819{
4820 typedef extreme_value_distribution<_RT> _Eng;
4821 typedef typename _Eng::result_type result_type;
4822 typedef typename _Eng::param_type param_type;
4823 __save_flags<_CharT, _Traits> _(__is);
4824 __is.flags(ios_base::dec | ios_base::skipws);
4825 result_type __a;
4826 result_type __b;
4827 __is >> __a >> __b;
4828 if (!__is.fail())
4829 __x.param(param_type(__a, __b));
4830 return __is;
4831}
4832
Howard Hinnantc7c49132010-05-13 17:58:28 +00004833// gamma_distribution
4834
4835template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004836class _LIBCPP_VISIBLE gamma_distribution
Howard Hinnantc7c49132010-05-13 17:58:28 +00004837{
4838public:
4839 // types
4840 typedef _RealType result_type;
4841
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004842 class _LIBCPP_VISIBLE param_type
Howard Hinnantc7c49132010-05-13 17:58:28 +00004843 {
4844 result_type __alpha_;
4845 result_type __beta_;
4846 public:
4847 typedef gamma_distribution distribution_type;
4848
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004849 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004850 explicit param_type(result_type __alpha = 1, result_type __beta = 1)
4851 : __alpha_(__alpha), __beta_(__beta) {}
4852
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004853 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004854 result_type alpha() const {return __alpha_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004855 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004856 result_type beta() const {return __beta_;}
4857
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004858 friend _LIBCPP_INLINE_VISIBILITY
4859 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnantc7c49132010-05-13 17:58:28 +00004860 {return __x.__alpha_ == __y.__alpha_ && __x.__beta_ == __y.__beta_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004861 friend _LIBCPP_INLINE_VISIBILITY
4862 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnantc7c49132010-05-13 17:58:28 +00004863 {return !(__x == __y);}
4864 };
4865
4866private:
4867 param_type __p_;
4868
4869public:
4870 // constructors and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004871 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004872 explicit gamma_distribution(result_type __alpha = 1, result_type __beta = 1)
4873 : __p_(param_type(__alpha, __beta)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004874 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004875 explicit gamma_distribution(const param_type& __p)
4876 : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004877 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004878 void reset() {}
4879
4880 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004881 template<class _URNG>
4882 _LIBCPP_INLINE_VISIBILITY
4883 result_type operator()(_URNG& __g)
Howard Hinnantc7c49132010-05-13 17:58:28 +00004884 {return (*this)(__g, __p_);}
4885 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
4886
4887 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004888 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004889 result_type alpha() const {return __p_.alpha();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004890 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004891 result_type beta() const {return __p_.beta();}
4892
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004893 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004894 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004895 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004896 void param(const param_type& __p) {__p_ = __p;}
4897
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004898 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc7c49132010-05-13 17:58:28 +00004899 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004900 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +00004901 result_type max() const {return numeric_limits<result_type>::infinity();}
Howard Hinnantc7c49132010-05-13 17:58:28 +00004902
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004903 friend _LIBCPP_INLINE_VISIBILITY
4904 bool operator==(const gamma_distribution& __x,
4905 const gamma_distribution& __y)
Howard Hinnantc7c49132010-05-13 17:58:28 +00004906 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00004907 friend _LIBCPP_INLINE_VISIBILITY
4908 bool operator!=(const gamma_distribution& __x,
4909 const gamma_distribution& __y)
Howard Hinnantc7c49132010-05-13 17:58:28 +00004910 {return !(__x == __y);}
4911};
4912
4913template <class _RealType>
4914template<class _URNG>
4915_RealType
4916gamma_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
4917{
Howard Hinnantf417abe2010-05-14 18:43:10 +00004918 result_type __a = __p.alpha();
4919 uniform_real_distribution<result_type> __gen(0, 1);
4920 exponential_distribution<result_type> __egen;
4921 result_type __x;
Howard Hinnantc7c49132010-05-13 17:58:28 +00004922 if (__a == 1)
Howard Hinnantf417abe2010-05-14 18:43:10 +00004923 __x = __egen(__g);
Howard Hinnantc7c49132010-05-13 17:58:28 +00004924 else if (__a > 1)
4925 {
4926 const result_type __b = __a - 1;
4927 const result_type __c = 3 * __a - result_type(0.75);
Howard Hinnantc7c49132010-05-13 17:58:28 +00004928 while (true)
4929 {
4930 const result_type __u = __gen(__g);
4931 const result_type __v = __gen(__g);
4932 const result_type __w = __u * (1 - __u);
Howard Hinnantf417abe2010-05-14 18:43:10 +00004933 if (__w != 0)
Howard Hinnantc7c49132010-05-13 17:58:28 +00004934 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00004935 const result_type __y = _VSTD::sqrt(__c / __w) *
Howard Hinnantc7c49132010-05-13 17:58:28 +00004936 (__u - result_type(0.5));
4937 __x = __b + __y;
4938 if (__x >= 0)
4939 {
4940 const result_type __z = 64 * __w * __w * __w * __v * __v;
4941 if (__z <= 1 - 2 * __y * __y / __x)
4942 break;
Howard Hinnant0949eed2011-06-30 21:18:19 +00004943 if (_VSTD::log(__z) <= 2 * (__b * _VSTD::log(__x / __b) - __y))
Howard Hinnantc7c49132010-05-13 17:58:28 +00004944 break;
4945 }
4946 }
4947 }
Howard Hinnantc7c49132010-05-13 17:58:28 +00004948 }
Howard Hinnantf417abe2010-05-14 18:43:10 +00004949 else // __a < 1
4950 {
4951 while (true)
4952 {
4953 const result_type __u = __gen(__g);
4954 const result_type __es = __egen(__g);
4955 if (__u <= 1 - __a)
4956 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00004957 __x = _VSTD::pow(__u, 1 / __a);
Howard Hinnantf417abe2010-05-14 18:43:10 +00004958 if (__x <= __es)
4959 break;
4960 }
4961 else
4962 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00004963 const result_type __e = -_VSTD::log((1-__u)/__a);
4964 __x = _VSTD::pow(1 - __a + __a * __e, 1 / __a);
Howard Hinnantf417abe2010-05-14 18:43:10 +00004965 if (__x <= __e + __es)
4966 break;
4967 }
4968 }
4969 }
4970 return __x * __p.beta();
Howard Hinnantc7c49132010-05-13 17:58:28 +00004971}
4972
4973template <class _CharT, class _Traits, class _RT>
4974basic_ostream<_CharT, _Traits>&
4975operator<<(basic_ostream<_CharT, _Traits>& __os,
4976 const gamma_distribution<_RT>& __x)
4977{
4978 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00004979 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
4980 ios_base::scientific);
Howard Hinnantc7c49132010-05-13 17:58:28 +00004981 _CharT __sp = __os.widen(' ');
4982 __os.fill(__sp);
4983 __os << __x.alpha() << __sp << __x.beta();
4984 return __os;
4985}
4986
4987template <class _CharT, class _Traits, class _RT>
4988basic_istream<_CharT, _Traits>&
4989operator>>(basic_istream<_CharT, _Traits>& __is,
4990 gamma_distribution<_RT>& __x)
4991{
4992 typedef gamma_distribution<_RT> _Eng;
4993 typedef typename _Eng::result_type result_type;
4994 typedef typename _Eng::param_type param_type;
4995 __save_flags<_CharT, _Traits> _(__is);
4996 __is.flags(ios_base::dec | ios_base::skipws);
4997 result_type __alpha;
4998 result_type __beta;
4999 __is >> __alpha >> __beta;
5000 if (!__is.fail())
5001 __x.param(param_type(__alpha, __beta));
5002 return __is;
5003}
Howard Hinnanta64111c2010-05-12 21:02:31 +00005004
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005005// negative_binomial_distribution
5006
5007template<class _IntType = int>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005008class _LIBCPP_VISIBLE negative_binomial_distribution
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005009{
5010public:
5011 // types
5012 typedef _IntType result_type;
5013
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005014 class _LIBCPP_VISIBLE param_type
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005015 {
5016 result_type __k_;
5017 double __p_;
5018 public:
5019 typedef negative_binomial_distribution distribution_type;
5020
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005021 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005022 explicit param_type(result_type __k = 1, double __p = 0.5)
5023 : __k_(__k), __p_(__p) {}
5024
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005025 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005026 result_type k() const {return __k_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005027 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005028 double p() const {return __p_;}
5029
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005030 friend _LIBCPP_INLINE_VISIBILITY
5031 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005032 {return __x.__k_ == __y.__k_ && __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005033 friend _LIBCPP_INLINE_VISIBILITY
5034 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005035 {return !(__x == __y);}
5036 };
5037
5038private:
5039 param_type __p_;
5040
5041public:
5042 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005043 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005044 explicit negative_binomial_distribution(result_type __k = 1, double __p = 0.5)
5045 : __p_(__k, __p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005046 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005047 explicit negative_binomial_distribution(const param_type& __p) : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005048 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005049 void reset() {}
5050
5051 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005052 template<class _URNG>
5053 _LIBCPP_INLINE_VISIBILITY
5054 result_type operator()(_URNG& __g)
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005055 {return (*this)(__g, __p_);}
5056 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
5057
5058 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005059 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005060 result_type k() const {return __p_.k();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005061 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005062 double p() const {return __p_.p();}
5063
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005064 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005065 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005066 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005067 void param(const param_type& __p) {__p_ = __p;}
5068
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005069 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005070 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005071 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005072 result_type max() const {return numeric_limits<result_type>::max();}
5073
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005074 friend _LIBCPP_INLINE_VISIBILITY
5075 bool operator==(const negative_binomial_distribution& __x,
5076 const negative_binomial_distribution& __y)
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005077 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005078 friend _LIBCPP_INLINE_VISIBILITY
5079 bool operator!=(const negative_binomial_distribution& __x,
5080 const negative_binomial_distribution& __y)
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005081 {return !(__x == __y);}
5082};
5083
5084template <class _IntType>
5085template<class _URNG>
5086_IntType
5087negative_binomial_distribution<_IntType>::operator()(_URNG& __urng, const param_type& __pr)
5088{
5089 result_type __k = __pr.k();
5090 double __p = __pr.p();
5091 if (__k <= 21 * __p)
5092 {
5093 bernoulli_distribution __gen(__p);
5094 result_type __f = 0;
5095 result_type __s = 0;
5096 while (__s < __k)
5097 {
5098 if (__gen(__urng))
5099 ++__s;
5100 else
5101 ++__f;
5102 }
5103 return __f;
5104 }
5105 return poisson_distribution<result_type>(gamma_distribution<double>
5106 (__k, (1-__p)/__p)(__urng))(__urng);
5107}
5108
5109template <class _CharT, class _Traits, class _IntType>
5110basic_ostream<_CharT, _Traits>&
5111operator<<(basic_ostream<_CharT, _Traits>& __os,
5112 const negative_binomial_distribution<_IntType>& __x)
5113{
5114 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00005115 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
5116 ios_base::scientific);
Howard Hinnantf2fe5d52010-05-17 00:09:38 +00005117 _CharT __sp = __os.widen(' ');
5118 __os.fill(__sp);
5119 return __os << __x.k() << __sp << __x.p();
5120}
5121
5122template <class _CharT, class _Traits, class _IntType>
5123basic_istream<_CharT, _Traits>&
5124operator>>(basic_istream<_CharT, _Traits>& __is,
5125 negative_binomial_distribution<_IntType>& __x)
5126{
5127 typedef negative_binomial_distribution<_IntType> _Eng;
5128 typedef typename _Eng::result_type result_type;
5129 typedef typename _Eng::param_type param_type;
5130 __save_flags<_CharT, _Traits> _(__is);
5131 __is.flags(ios_base::dec | ios_base::skipws);
5132 result_type __k;
5133 double __p;
5134 __is >> __k >> __p;
5135 if (!__is.fail())
5136 __x.param(param_type(__k, __p));
5137 return __is;
5138}
5139
Howard Hinnant34e8a572010-05-17 13:44:27 +00005140// geometric_distribution
5141
5142template<class _IntType = int>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005143class _LIBCPP_VISIBLE geometric_distribution
Howard Hinnant34e8a572010-05-17 13:44:27 +00005144{
5145public:
5146 // types
5147 typedef _IntType result_type;
5148
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005149 class _LIBCPP_VISIBLE param_type
Howard Hinnant34e8a572010-05-17 13:44:27 +00005150 {
5151 double __p_;
5152 public:
5153 typedef geometric_distribution distribution_type;
5154
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005155 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005156 explicit param_type(double __p = 0.5) : __p_(__p) {}
5157
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005158 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005159 double p() const {return __p_;}
5160
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005161 friend _LIBCPP_INLINE_VISIBILITY
5162 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant34e8a572010-05-17 13:44:27 +00005163 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005164 friend _LIBCPP_INLINE_VISIBILITY
5165 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant34e8a572010-05-17 13:44:27 +00005166 {return !(__x == __y);}
5167 };
5168
5169private:
5170 param_type __p_;
5171
5172public:
5173 // constructors and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005174 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005175 explicit geometric_distribution(double __p = 0.5) : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005176 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005177 explicit geometric_distribution(const param_type& __p) : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005178 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005179 void reset() {}
5180
5181 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005182 template<class _URNG>
5183 _LIBCPP_INLINE_VISIBILITY
5184 result_type operator()(_URNG& __g)
Howard Hinnant34e8a572010-05-17 13:44:27 +00005185 {return (*this)(__g, __p_);}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005186 template<class _URNG>
5187 _LIBCPP_INLINE_VISIBILITY
5188 result_type operator()(_URNG& __g, const param_type& __p)
Howard Hinnant34e8a572010-05-17 13:44:27 +00005189 {return negative_binomial_distribution<result_type>(1, __p.p())(__g);}
5190
5191 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005192 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005193 double p() const {return __p_.p();}
5194
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005195 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005196 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005197 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005198 void param(const param_type& __p) {__p_ = __p;}
5199
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005200 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005201 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005202 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant34e8a572010-05-17 13:44:27 +00005203 result_type max() const {return numeric_limits<result_type>::max();}
5204
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005205 friend _LIBCPP_INLINE_VISIBILITY
5206 bool operator==(const geometric_distribution& __x,
5207 const geometric_distribution& __y)
Howard Hinnant34e8a572010-05-17 13:44:27 +00005208 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005209 friend _LIBCPP_INLINE_VISIBILITY
5210 bool operator!=(const geometric_distribution& __x,
5211 const geometric_distribution& __y)
Howard Hinnant34e8a572010-05-17 13:44:27 +00005212 {return !(__x == __y);}
5213};
5214
5215template <class _CharT, class _Traits, class _IntType>
5216basic_ostream<_CharT, _Traits>&
5217operator<<(basic_ostream<_CharT, _Traits>& __os,
5218 const geometric_distribution<_IntType>& __x)
5219{
5220 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00005221 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
5222 ios_base::scientific);
Howard Hinnant34e8a572010-05-17 13:44:27 +00005223 return __os << __x.p();
5224}
5225
5226template <class _CharT, class _Traits, class _IntType>
5227basic_istream<_CharT, _Traits>&
5228operator>>(basic_istream<_CharT, _Traits>& __is,
5229 geometric_distribution<_IntType>& __x)
5230{
5231 typedef geometric_distribution<_IntType> _Eng;
5232 typedef typename _Eng::param_type param_type;
5233 __save_flags<_CharT, _Traits> _(__is);
5234 __is.flags(ios_base::dec | ios_base::skipws);
5235 double __p;
5236 __is >> __p;
5237 if (!__is.fail())
5238 __x.param(param_type(__p));
5239 return __is;
5240}
5241
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005242// chi_squared_distribution
5243
5244template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005245class _LIBCPP_VISIBLE chi_squared_distribution
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005246{
5247public:
5248 // types
5249 typedef _RealType result_type;
5250
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005251 class _LIBCPP_VISIBLE param_type
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005252 {
5253 result_type __n_;
5254 public:
5255 typedef chi_squared_distribution distribution_type;
5256
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005257 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005258 explicit param_type(result_type __n = 1) : __n_(__n) {}
5259
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005260 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005261 result_type n() const {return __n_;}
5262
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005263 friend _LIBCPP_INLINE_VISIBILITY
5264 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005265 {return __x.__n_ == __y.__n_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005266 friend _LIBCPP_INLINE_VISIBILITY
5267 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005268 {return !(__x == __y);}
5269 };
5270
5271private:
5272 param_type __p_;
5273
5274public:
5275 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005276 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005277 explicit chi_squared_distribution(result_type __n = 1)
5278 : __p_(param_type(__n)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005279 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005280 explicit chi_squared_distribution(const param_type& __p)
5281 : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005282 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005283 void reset() {}
5284
5285 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005286 template<class _URNG>
5287 _LIBCPP_INLINE_VISIBILITY
5288 result_type operator()(_URNG& __g)
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005289 {return (*this)(__g, __p_);}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005290 template<class _URNG>
5291 _LIBCPP_INLINE_VISIBILITY
5292 result_type operator()(_URNG& __g, const param_type& __p)
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005293 {return gamma_distribution<result_type>(__p.n() / 2, 2)(__g);}
5294
5295 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005296 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005297 result_type n() const {return __p_.n();}
5298
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005299 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005300 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005301 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005302 void param(const param_type& __p) {__p_ = __p;}
5303
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005304 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005305 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005306 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +00005307 result_type max() const {return numeric_limits<result_type>::infinity();}
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005308
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005309 friend _LIBCPP_INLINE_VISIBILITY
5310 bool operator==(const chi_squared_distribution& __x,
5311 const chi_squared_distribution& __y)
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005312 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005313 friend _LIBCPP_INLINE_VISIBILITY
5314 bool operator!=(const chi_squared_distribution& __x,
5315 const chi_squared_distribution& __y)
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005316 {return !(__x == __y);}
5317};
5318
5319template <class _CharT, class _Traits, class _RT>
5320basic_ostream<_CharT, _Traits>&
5321operator<<(basic_ostream<_CharT, _Traits>& __os,
5322 const chi_squared_distribution<_RT>& __x)
5323{
5324 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00005325 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
5326 ios_base::scientific);
Howard Hinnant97dc2f32010-05-15 23:36:00 +00005327 __os << __x.n();
5328 return __os;
5329}
5330
5331template <class _CharT, class _Traits, class _RT>
5332basic_istream<_CharT, _Traits>&
5333operator>>(basic_istream<_CharT, _Traits>& __is,
5334 chi_squared_distribution<_RT>& __x)
5335{
5336 typedef chi_squared_distribution<_RT> _Eng;
5337 typedef typename _Eng::result_type result_type;
5338 typedef typename _Eng::param_type param_type;
5339 __save_flags<_CharT, _Traits> _(__is);
5340 __is.flags(ios_base::dec | ios_base::skipws);
5341 result_type __n;
5342 __is >> __n;
5343 if (!__is.fail())
5344 __x.param(param_type(__n));
5345 return __is;
5346}
5347
Howard Hinnantd7d01132010-05-17 21:55:46 +00005348// cauchy_distribution
5349
5350template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005351class _LIBCPP_VISIBLE cauchy_distribution
Howard Hinnantd7d01132010-05-17 21:55:46 +00005352{
5353public:
5354 // types
5355 typedef _RealType result_type;
5356
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005357 class _LIBCPP_VISIBLE param_type
Howard Hinnantd7d01132010-05-17 21:55:46 +00005358 {
5359 result_type __a_;
5360 result_type __b_;
5361 public:
5362 typedef cauchy_distribution distribution_type;
5363
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005364 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005365 explicit param_type(result_type __a = 0, result_type __b = 1)
5366 : __a_(__a), __b_(__b) {}
5367
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005368 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005369 result_type a() const {return __a_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005370 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005371 result_type b() const {return __b_;}
5372
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005373 friend _LIBCPP_INLINE_VISIBILITY
5374 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnantd7d01132010-05-17 21:55:46 +00005375 {return __x.__a_ == __y.__a_ && __x.__b_ == __y.__b_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005376 friend _LIBCPP_INLINE_VISIBILITY
5377 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnantd7d01132010-05-17 21:55:46 +00005378 {return !(__x == __y);}
5379 };
5380
5381private:
5382 param_type __p_;
5383
5384public:
5385 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005386 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005387 explicit cauchy_distribution(result_type __a = 0, result_type __b = 1)
5388 : __p_(param_type(__a, __b)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005389 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005390 explicit cauchy_distribution(const param_type& __p)
5391 : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005392 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005393 void reset() {}
5394
5395 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005396 template<class _URNG>
5397 _LIBCPP_INLINE_VISIBILITY
5398 result_type operator()(_URNG& __g)
Howard Hinnantd7d01132010-05-17 21:55:46 +00005399 {return (*this)(__g, __p_);}
5400 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
5401
5402 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005403 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005404 result_type a() const {return __p_.a();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005405 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005406 result_type b() const {return __p_.b();}
5407
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005408 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005409 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005410 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005411 void param(const param_type& __p) {__p_ = __p;}
5412
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005413 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005414 result_type min() const {return -numeric_limits<result_type>::infinity();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005415 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +00005416 result_type max() const {return numeric_limits<result_type>::infinity();}
Howard Hinnantd7d01132010-05-17 21:55:46 +00005417
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005418 friend _LIBCPP_INLINE_VISIBILITY
5419 bool operator==(const cauchy_distribution& __x,
5420 const cauchy_distribution& __y)
Howard Hinnantd7d01132010-05-17 21:55:46 +00005421 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005422 friend _LIBCPP_INLINE_VISIBILITY
5423 bool operator!=(const cauchy_distribution& __x,
5424 const cauchy_distribution& __y)
Howard Hinnantd7d01132010-05-17 21:55:46 +00005425 {return !(__x == __y);}
Howard Hinnantd7d01132010-05-17 21:55:46 +00005426};
5427
5428template <class _RealType>
5429template<class _URNG>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005430inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd7d01132010-05-17 21:55:46 +00005431_RealType
5432cauchy_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
5433{
5434 uniform_real_distribution<result_type> __gen;
5435 // purposefully let tan arg get as close to pi/2 as it wants, tan will return a finite
Howard Hinnant0949eed2011-06-30 21:18:19 +00005436 return __p.a() + __p.b() * _VSTD::tan(3.1415926535897932384626433832795 * __gen(__g));
Howard Hinnantd7d01132010-05-17 21:55:46 +00005437}
5438
5439template <class _CharT, class _Traits, class _RT>
5440basic_ostream<_CharT, _Traits>&
5441operator<<(basic_ostream<_CharT, _Traits>& __os,
5442 const cauchy_distribution<_RT>& __x)
5443{
5444 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00005445 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
5446 ios_base::scientific);
Howard Hinnantd7d01132010-05-17 21:55:46 +00005447 _CharT __sp = __os.widen(' ');
5448 __os.fill(__sp);
5449 __os << __x.a() << __sp << __x.b();
5450 return __os;
5451}
5452
5453template <class _CharT, class _Traits, class _RT>
5454basic_istream<_CharT, _Traits>&
5455operator>>(basic_istream<_CharT, _Traits>& __is,
5456 cauchy_distribution<_RT>& __x)
5457{
5458 typedef cauchy_distribution<_RT> _Eng;
5459 typedef typename _Eng::result_type result_type;
5460 typedef typename _Eng::param_type param_type;
5461 __save_flags<_CharT, _Traits> _(__is);
5462 __is.flags(ios_base::dec | ios_base::skipws);
5463 result_type __a;
5464 result_type __b;
5465 __is >> __a >> __b;
5466 if (!__is.fail())
5467 __x.param(param_type(__a, __b));
5468 return __is;
5469}
5470
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005471// fisher_f_distribution
5472
5473template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005474class _LIBCPP_VISIBLE fisher_f_distribution
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005475{
5476public:
5477 // types
5478 typedef _RealType result_type;
5479
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005480 class _LIBCPP_VISIBLE param_type
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005481 {
5482 result_type __m_;
5483 result_type __n_;
5484 public:
5485 typedef fisher_f_distribution distribution_type;
5486
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005487 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005488 explicit param_type(result_type __m = 1, result_type __n = 1)
5489 : __m_(__m), __n_(__n) {}
5490
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005491 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005492 result_type m() const {return __m_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005493 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005494 result_type n() const {return __n_;}
5495
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005496 friend _LIBCPP_INLINE_VISIBILITY
5497 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005498 {return __x.__m_ == __y.__m_ && __x.__n_ == __y.__n_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005499 friend _LIBCPP_INLINE_VISIBILITY
5500 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005501 {return !(__x == __y);}
5502 };
5503
5504private:
5505 param_type __p_;
5506
5507public:
5508 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005509 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005510 explicit fisher_f_distribution(result_type __m = 1, result_type __n = 1)
5511 : __p_(param_type(__m, __n)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005512 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005513 explicit fisher_f_distribution(const param_type& __p)
5514 : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005515 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005516 void reset() {}
5517
5518 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005519 template<class _URNG>
5520 _LIBCPP_INLINE_VISIBILITY
5521 result_type operator()(_URNG& __g)
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005522 {return (*this)(__g, __p_);}
5523 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
5524
5525 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005526 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005527 result_type m() const {return __p_.m();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005528 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005529 result_type n() const {return __p_.n();}
5530
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005531 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005532 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005533 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005534 void param(const param_type& __p) {__p_ = __p;}
5535
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005536 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005537 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005538 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +00005539 result_type max() const {return numeric_limits<result_type>::infinity();}
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005540
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005541 friend _LIBCPP_INLINE_VISIBILITY
5542 bool operator==(const fisher_f_distribution& __x,
5543 const fisher_f_distribution& __y)
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005544 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005545 friend _LIBCPP_INLINE_VISIBILITY
5546 bool operator!=(const fisher_f_distribution& __x,
5547 const fisher_f_distribution& __y)
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005548 {return !(__x == __y);}
5549};
5550
5551template <class _RealType>
5552template<class _URNG>
5553_RealType
5554fisher_f_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
5555{
5556 gamma_distribution<result_type> __gdm(__p.m() * result_type(.5));
5557 gamma_distribution<result_type> __gdn(__p.n() * result_type(.5));
5558 return __p.n() * __gdm(__g) / (__p.m() * __gdn(__g));
5559}
5560
5561template <class _CharT, class _Traits, class _RT>
5562basic_ostream<_CharT, _Traits>&
5563operator<<(basic_ostream<_CharT, _Traits>& __os,
5564 const fisher_f_distribution<_RT>& __x)
5565{
5566 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00005567 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
5568 ios_base::scientific);
Howard Hinnantd8bc09b2010-05-18 17:32:30 +00005569 _CharT __sp = __os.widen(' ');
5570 __os.fill(__sp);
5571 __os << __x.m() << __sp << __x.n();
5572 return __os;
5573}
5574
5575template <class _CharT, class _Traits, class _RT>
5576basic_istream<_CharT, _Traits>&
5577operator>>(basic_istream<_CharT, _Traits>& __is,
5578 fisher_f_distribution<_RT>& __x)
5579{
5580 typedef fisher_f_distribution<_RT> _Eng;
5581 typedef typename _Eng::result_type result_type;
5582 typedef typename _Eng::param_type param_type;
5583 __save_flags<_CharT, _Traits> _(__is);
5584 __is.flags(ios_base::dec | ios_base::skipws);
5585 result_type __m;
5586 result_type __n;
5587 __is >> __m >> __n;
5588 if (!__is.fail())
5589 __x.param(param_type(__m, __n));
5590 return __is;
5591}
5592
Howard Hinnant551d8e42010-05-19 01:53:57 +00005593// student_t_distribution
5594
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005595template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005596class _LIBCPP_VISIBLE student_t_distribution
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005597{
5598public:
5599 // types
5600 typedef _RealType result_type;
5601
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005602 class _LIBCPP_VISIBLE param_type
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005603 {
5604 result_type __n_;
5605 public:
5606 typedef student_t_distribution distribution_type;
5607
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005608 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005609 explicit param_type(result_type __n = 1) : __n_(__n) {}
5610
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005611 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005612 result_type n() const {return __n_;}
5613
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005614 friend _LIBCPP_INLINE_VISIBILITY
5615 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005616 {return __x.__n_ == __y.__n_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005617 friend _LIBCPP_INLINE_VISIBILITY
5618 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005619 {return !(__x == __y);}
5620 };
5621
5622private:
5623 param_type __p_;
5624 normal_distribution<result_type> __nd_;
5625
5626public:
5627 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005628 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005629 explicit student_t_distribution(result_type __n = 1)
5630 : __p_(param_type(__n)) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005631 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005632 explicit student_t_distribution(const param_type& __p)
5633 : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005634 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005635 void reset() {__nd_.reset();}
5636
5637 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005638 template<class _URNG>
5639 _LIBCPP_INLINE_VISIBILITY
5640 result_type operator()(_URNG& __g)
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005641 {return (*this)(__g, __p_);}
5642 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
5643
5644 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005645 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005646 result_type n() const {return __p_.n();}
5647
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005648 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005649 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005650 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005651 void param(const param_type& __p) {__p_ = __p;}
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005652
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005653 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005654 result_type min() const {return -numeric_limits<result_type>::infinity();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005655 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005656 result_type max() const {return numeric_limits<result_type>::infinity();}
5657
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005658 friend _LIBCPP_INLINE_VISIBILITY
5659 bool operator==(const student_t_distribution& __x,
5660 const student_t_distribution& __y)
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005661 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005662 friend _LIBCPP_INLINE_VISIBILITY
5663 bool operator!=(const student_t_distribution& __x,
5664 const student_t_distribution& __y)
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005665 {return !(__x == __y);}
5666};
5667
5668template <class _RealType>
5669template<class _URNG>
5670_RealType
5671student_t_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
5672{
5673 gamma_distribution<result_type> __gd(__p.n() * .5, 2);
Howard Hinnant0949eed2011-06-30 21:18:19 +00005674 return __nd_(__g) * _VSTD::sqrt(__p.n()/__gd(__g));
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005675}
5676
5677template <class _CharT, class _Traits, class _RT>
5678basic_ostream<_CharT, _Traits>&
5679operator<<(basic_ostream<_CharT, _Traits>& __os,
5680 const student_t_distribution<_RT>& __x)
5681{
5682 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00005683 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
5684 ios_base::scientific);
Howard Hinnant321b4bb2010-05-18 20:08:04 +00005685 __os << __x.n();
5686 return __os;
5687}
5688
5689template <class _CharT, class _Traits, class _RT>
5690basic_istream<_CharT, _Traits>&
5691operator>>(basic_istream<_CharT, _Traits>& __is,
5692 student_t_distribution<_RT>& __x)
5693{
5694 typedef student_t_distribution<_RT> _Eng;
5695 typedef typename _Eng::result_type result_type;
5696 typedef typename _Eng::param_type param_type;
5697 __save_flags<_CharT, _Traits> _(__is);
5698 __is.flags(ios_base::dec | ios_base::skipws);
5699 result_type __n;
5700 __is >> __n;
5701 if (!__is.fail())
5702 __x.param(param_type(__n));
5703 return __is;
5704}
5705
Howard Hinnant551d8e42010-05-19 01:53:57 +00005706// discrete_distribution
5707
5708template<class _IntType = int>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005709class _LIBCPP_VISIBLE discrete_distribution
Howard Hinnant551d8e42010-05-19 01:53:57 +00005710{
5711public:
5712 // types
5713 typedef _IntType result_type;
5714
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005715 class _LIBCPP_VISIBLE param_type
Howard Hinnant551d8e42010-05-19 01:53:57 +00005716 {
5717 vector<double> __p_;
5718 public:
5719 typedef discrete_distribution distribution_type;
5720
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005721 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005722 param_type() {}
5723 template<class _InputIterator>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005724 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005725 param_type(_InputIterator __f, _InputIterator __l)
5726 : __p_(__f, __l) {__init();}
Howard Hinnante3e32912011-08-12 21:56:02 +00005727#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005728 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005729 param_type(initializer_list<double> __wl)
5730 : __p_(__wl.begin(), __wl.end()) {__init();}
Howard Hinnante3e32912011-08-12 21:56:02 +00005731#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant551d8e42010-05-19 01:53:57 +00005732 template<class _UnaryOperation>
5733 param_type(size_t __nw, double __xmin, double __xmax,
5734 _UnaryOperation __fw);
5735
5736 vector<double> probabilities() const;
5737
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005738 friend _LIBCPP_INLINE_VISIBILITY
5739 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant551d8e42010-05-19 01:53:57 +00005740 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005741 friend _LIBCPP_INLINE_VISIBILITY
5742 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant551d8e42010-05-19 01:53:57 +00005743 {return !(__x == __y);}
5744
5745 private:
5746 void __init();
5747
5748 friend class discrete_distribution;
5749
5750 template <class _CharT, class _Traits, class _IT>
5751 friend
5752 basic_ostream<_CharT, _Traits>&
5753 operator<<(basic_ostream<_CharT, _Traits>& __os,
5754 const discrete_distribution<_IT>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00005755
Howard Hinnant551d8e42010-05-19 01:53:57 +00005756 template <class _CharT, class _Traits, class _IT>
5757 friend
5758 basic_istream<_CharT, _Traits>&
5759 operator>>(basic_istream<_CharT, _Traits>& __is,
5760 discrete_distribution<_IT>& __x);
5761 };
5762
5763private:
5764 param_type __p_;
5765
5766public:
5767 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005768 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005769 discrete_distribution() {}
5770 template<class _InputIterator>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005771 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005772 discrete_distribution(_InputIterator __f, _InputIterator __l)
5773 : __p_(__f, __l) {}
Howard Hinnante3e32912011-08-12 21:56:02 +00005774#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005775 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005776 discrete_distribution(initializer_list<double> __wl)
5777 : __p_(__wl) {}
Howard Hinnante3e32912011-08-12 21:56:02 +00005778#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant551d8e42010-05-19 01:53:57 +00005779 template<class _UnaryOperation>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005780 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005781 discrete_distribution(size_t __nw, double __xmin, double __xmax,
5782 _UnaryOperation __fw)
5783 : __p_(__nw, __xmin, __xmax, __fw) {}
5784 explicit discrete_distribution(const param_type& __p)
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005785 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005786 : __p_(__p) {}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005787 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005788 void reset() {}
5789
5790 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005791 template<class _URNG>
5792 _LIBCPP_INLINE_VISIBILITY
5793 result_type operator()(_URNG& __g)
Howard Hinnant551d8e42010-05-19 01:53:57 +00005794 {return (*this)(__g, __p_);}
5795 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
5796
5797 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005798 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005799 vector<double> probabilities() const {return __p_.probabilities();}
5800
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005801 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005802 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005803 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005804 void param(const param_type& __p) {__p_ = __p;}
5805
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005806 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005807 result_type min() const {return 0;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005808 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant551d8e42010-05-19 01:53:57 +00005809 result_type max() const {return __p_.__p_.size();}
5810
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005811 friend _LIBCPP_INLINE_VISIBILITY
5812 bool operator==(const discrete_distribution& __x,
5813 const discrete_distribution& __y)
Howard Hinnant551d8e42010-05-19 01:53:57 +00005814 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005815 friend _LIBCPP_INLINE_VISIBILITY
5816 bool operator!=(const discrete_distribution& __x,
5817 const discrete_distribution& __y)
Howard Hinnant551d8e42010-05-19 01:53:57 +00005818 {return !(__x == __y);}
5819
5820 template <class _CharT, class _Traits, class _IT>
5821 friend
5822 basic_ostream<_CharT, _Traits>&
5823 operator<<(basic_ostream<_CharT, _Traits>& __os,
5824 const discrete_distribution<_IT>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00005825
Howard Hinnant551d8e42010-05-19 01:53:57 +00005826 template <class _CharT, class _Traits, class _IT>
5827 friend
5828 basic_istream<_CharT, _Traits>&
5829 operator>>(basic_istream<_CharT, _Traits>& __is,
5830 discrete_distribution<_IT>& __x);
5831};
5832
5833template<class _IntType>
5834template<class _UnaryOperation>
5835discrete_distribution<_IntType>::param_type::param_type(size_t __nw,
5836 double __xmin,
5837 double __xmax,
5838 _UnaryOperation __fw)
5839{
5840 if (__nw > 1)
5841 {
5842 __p_.reserve(__nw - 1);
5843 double __d = (__xmax - __xmin) / __nw;
5844 double __d2 = __d / 2;
5845 for (size_t __k = 0; __k < __nw; ++__k)
5846 __p_.push_back(__fw(__xmin + __k * __d + __d2));
5847 __init();
5848 }
5849}
5850
5851template<class _IntType>
5852void
5853discrete_distribution<_IntType>::param_type::__init()
5854{
5855 if (!__p_.empty())
5856 {
5857 if (__p_.size() > 1)
5858 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00005859 double __s = _VSTD::accumulate(__p_.begin(), __p_.end(), 0.0);
5860 for (_VSTD::vector<double>::iterator __i = __p_.begin(), __e = __p_.end();
Howard Hinnant551d8e42010-05-19 01:53:57 +00005861 __i < __e; ++__i)
5862 *__i /= __s;
5863 vector<double> __t(__p_.size() - 1);
Howard Hinnant0949eed2011-06-30 21:18:19 +00005864 _VSTD::partial_sum(__p_.begin(), __p_.end() - 1, __t.begin());
Howard Hinnant551d8e42010-05-19 01:53:57 +00005865 swap(__p_, __t);
5866 }
5867 else
5868 {
5869 __p_.clear();
5870 __p_.shrink_to_fit();
5871 }
5872 }
5873}
5874
5875template<class _IntType>
5876vector<double>
5877discrete_distribution<_IntType>::param_type::probabilities() const
5878{
5879 size_t __n = __p_.size();
Howard Hinnant0949eed2011-06-30 21:18:19 +00005880 _VSTD::vector<double> __p(__n+1);
5881 _VSTD::adjacent_difference(__p_.begin(), __p_.end(), __p.begin());
Howard Hinnant551d8e42010-05-19 01:53:57 +00005882 if (__n > 0)
5883 __p[__n] = 1 - __p_[__n-1];
5884 else
5885 __p[0] = 1;
5886 return __p;
5887}
5888
5889template<class _IntType>
5890template<class _URNG>
5891_IntType
5892discrete_distribution<_IntType>::operator()(_URNG& __g, const param_type& __p)
5893{
5894 uniform_real_distribution<double> __gen;
5895 return static_cast<_IntType>(
Howard Hinnant0949eed2011-06-30 21:18:19 +00005896 _VSTD::upper_bound(__p.__p_.begin(), __p.__p_.end(), __gen(__g)) -
Howard Hinnant551d8e42010-05-19 01:53:57 +00005897 __p.__p_.begin());
5898}
5899
5900template <class _CharT, class _Traits, class _IT>
5901basic_ostream<_CharT, _Traits>&
5902operator<<(basic_ostream<_CharT, _Traits>& __os,
5903 const discrete_distribution<_IT>& __x)
5904{
5905 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00005906 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
5907 ios_base::scientific);
Howard Hinnant551d8e42010-05-19 01:53:57 +00005908 _CharT __sp = __os.widen(' ');
5909 __os.fill(__sp);
5910 size_t __n = __x.__p_.__p_.size();
5911 __os << __n;
5912 for (size_t __i = 0; __i < __n; ++__i)
5913 __os << __sp << __x.__p_.__p_[__i];
5914 return __os;
5915}
5916
5917template <class _CharT, class _Traits, class _IT>
5918basic_istream<_CharT, _Traits>&
5919operator>>(basic_istream<_CharT, _Traits>& __is,
5920 discrete_distribution<_IT>& __x)
5921{
5922 typedef discrete_distribution<_IT> _Eng;
5923 typedef typename _Eng::result_type result_type;
5924 typedef typename _Eng::param_type param_type;
5925 __save_flags<_CharT, _Traits> _(__is);
5926 __is.flags(ios_base::dec | ios_base::skipws);
5927 size_t __n;
5928 __is >> __n;
Howard Hinnantd6d11712010-05-20 15:11:46 +00005929 vector<double> __p(__n);
Howard Hinnant551d8e42010-05-19 01:53:57 +00005930 for (size_t __i = 0; __i < __n; ++__i)
5931 __is >> __p[__i];
5932 if (!__is.fail())
5933 swap(__x.__p_.__p_, __p);
5934 return __is;
5935}
5936
Howard Hinnantd6d11712010-05-20 15:11:46 +00005937// piecewise_constant_distribution
5938
5939template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005940class _LIBCPP_VISIBLE piecewise_constant_distribution
Howard Hinnantd6d11712010-05-20 15:11:46 +00005941{
5942public:
5943 // types
5944 typedef _RealType result_type;
5945
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005946 class _LIBCPP_VISIBLE param_type
Howard Hinnantd6d11712010-05-20 15:11:46 +00005947 {
Howard Hinnantd6d11712010-05-20 15:11:46 +00005948 vector<result_type> __b_;
Howard Hinnant9650b6c2010-11-18 17:01:36 +00005949 vector<result_type> __densities_;
5950 vector<result_type> __areas_;
Howard Hinnantd6d11712010-05-20 15:11:46 +00005951 public:
5952 typedef piecewise_constant_distribution distribution_type;
5953
5954 param_type();
5955 template<class _InputIteratorB, class _InputIteratorW>
5956 param_type(_InputIteratorB __fB, _InputIteratorB __lB,
5957 _InputIteratorW __fW);
Howard Hinnante3e32912011-08-12 21:56:02 +00005958#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantd6d11712010-05-20 15:11:46 +00005959 template<class _UnaryOperation>
5960 param_type(initializer_list<result_type> __bl, _UnaryOperation __fw);
Howard Hinnante3e32912011-08-12 21:56:02 +00005961#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantd6d11712010-05-20 15:11:46 +00005962 template<class _UnaryOperation>
5963 param_type(size_t __nw, result_type __xmin, result_type __xmax,
5964 _UnaryOperation __fw);
Howard Hinnant3c143ad2010-10-13 14:37:09 +00005965 param_type & operator=(const param_type& __rhs);
Howard Hinnantd6d11712010-05-20 15:11:46 +00005966
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005967 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00005968 vector<result_type> intervals() const {return __b_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005969 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9650b6c2010-11-18 17:01:36 +00005970 vector<result_type> densities() const {return __densities_;}
Howard Hinnantd6d11712010-05-20 15:11:46 +00005971
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005972 friend _LIBCPP_INLINE_VISIBILITY
5973 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant2a592542010-05-24 00:35:40 +00005974 {return __x.__densities_ == __y.__densities_ && __x.__b_ == __y.__b_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00005975 friend _LIBCPP_INLINE_VISIBILITY
5976 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnantd6d11712010-05-20 15:11:46 +00005977 {return !(__x == __y);}
5978
5979 private:
5980 void __init();
5981
5982 friend class piecewise_constant_distribution;
5983
5984 template <class _CharT, class _Traits, class _RT>
5985 friend
5986 basic_ostream<_CharT, _Traits>&
5987 operator<<(basic_ostream<_CharT, _Traits>& __os,
5988 const piecewise_constant_distribution<_RT>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00005989
Howard Hinnantd6d11712010-05-20 15:11:46 +00005990 template <class _CharT, class _Traits, class _RT>
5991 friend
5992 basic_istream<_CharT, _Traits>&
5993 operator>>(basic_istream<_CharT, _Traits>& __is,
5994 piecewise_constant_distribution<_RT>& __x);
5995 };
5996
5997private:
5998 param_type __p_;
5999
6000public:
6001 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006002 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006003 piecewise_constant_distribution() {}
6004 template<class _InputIteratorB, class _InputIteratorW>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006005 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006006 piecewise_constant_distribution(_InputIteratorB __fB,
6007 _InputIteratorB __lB,
6008 _InputIteratorW __fW)
6009 : __p_(__fB, __lB, __fW) {}
6010
Howard Hinnante3e32912011-08-12 21:56:02 +00006011#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantd6d11712010-05-20 15:11:46 +00006012 template<class _UnaryOperation>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006013 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006014 piecewise_constant_distribution(initializer_list<result_type> __bl,
6015 _UnaryOperation __fw)
6016 : __p_(__bl, __fw) {}
Howard Hinnante3e32912011-08-12 21:56:02 +00006017#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantd6d11712010-05-20 15:11:46 +00006018
6019 template<class _UnaryOperation>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006020 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006021 piecewise_constant_distribution(size_t __nw, result_type __xmin,
6022 result_type __xmax, _UnaryOperation __fw)
6023 : __p_(__nw, __xmin, __xmax, __fw) {}
6024
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006025 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006026 explicit piecewise_constant_distribution(const param_type& __p)
6027 : __p_(__p) {}
6028
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006029 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006030 void reset() {}
6031
6032 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006033 template<class _URNG>
6034 _LIBCPP_INLINE_VISIBILITY
6035 result_type operator()(_URNG& __g)
Howard Hinnantd6d11712010-05-20 15:11:46 +00006036 {return (*this)(__g, __p_);}
6037 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
6038
6039 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006040 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006041 vector<result_type> intervals() const {return __p_.intervals();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006042 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006043 vector<result_type> densities() const {return __p_.densities();}
Howard Hinnantd6d11712010-05-20 15:11:46 +00006044
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006045 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006046 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006047 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006048 void param(const param_type& __p) {__p_ = __p;}
6049
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006050 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006051 result_type min() const {return __p_.__b_.front();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006052 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantd6d11712010-05-20 15:11:46 +00006053 result_type max() const {return __p_.__b_.back();}
6054
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006055 friend _LIBCPP_INLINE_VISIBILITY
6056 bool operator==(const piecewise_constant_distribution& __x,
6057 const piecewise_constant_distribution& __y)
Howard Hinnantd6d11712010-05-20 15:11:46 +00006058 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006059 friend _LIBCPP_INLINE_VISIBILITY
6060 bool operator!=(const piecewise_constant_distribution& __x,
Howard Hinnantd6d11712010-05-20 15:11:46 +00006061 const piecewise_constant_distribution& __y)
6062 {return !(__x == __y);}
6063
6064 template <class _CharT, class _Traits, class _RT>
6065 friend
6066 basic_ostream<_CharT, _Traits>&
6067 operator<<(basic_ostream<_CharT, _Traits>& __os,
6068 const piecewise_constant_distribution<_RT>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00006069
Howard Hinnantd6d11712010-05-20 15:11:46 +00006070 template <class _CharT, class _Traits, class _RT>
6071 friend
6072 basic_istream<_CharT, _Traits>&
6073 operator>>(basic_istream<_CharT, _Traits>& __is,
6074 piecewise_constant_distribution<_RT>& __x);
6075};
6076
6077template<class _RealType>
Howard Hinnant3c143ad2010-10-13 14:37:09 +00006078typename piecewise_constant_distribution<_RealType>::param_type &
6079piecewise_constant_distribution<_RealType>::param_type::operator=
6080 (const param_type& __rhs)
6081{
6082// These can throw
6083 __b_.reserve (__rhs.__b_.size ());
6084 __densities_.reserve(__rhs.__densities_.size());
6085 __areas_.reserve (__rhs.__areas_.size());
6086
6087// These can not throw
6088 __b_ = __rhs.__b_;
6089 __densities_ = __rhs.__densities_;
6090 __areas_ = __rhs.__areas_;
6091 return *this;
6092}
6093
6094template<class _RealType>
Howard Hinnantd6d11712010-05-20 15:11:46 +00006095void
6096piecewise_constant_distribution<_RealType>::param_type::__init()
6097{
Howard Hinnant2a592542010-05-24 00:35:40 +00006098 // __densities_ contains non-normalized areas
Howard Hinnant0949eed2011-06-30 21:18:19 +00006099 result_type __total_area = _VSTD::accumulate(__densities_.begin(),
Howard Hinnant2a592542010-05-24 00:35:40 +00006100 __densities_.end(),
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006101 result_type());
Howard Hinnant2a592542010-05-24 00:35:40 +00006102 for (size_t __i = 0; __i < __densities_.size(); ++__i)
6103 __densities_[__i] /= __total_area;
6104 // __densities_ contains normalized areas
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006105 __areas_.assign(__densities_.size(), result_type());
Howard Hinnant0949eed2011-06-30 21:18:19 +00006106 _VSTD::partial_sum(__densities_.begin(), __densities_.end() - 1,
Howard Hinnant2a592542010-05-24 00:35:40 +00006107 __areas_.begin() + 1);
6108 // __areas_ contains partial sums of normalized areas: [0, __densities_ - 1]
6109 __densities_.back() = 1 - __areas_.back(); // correct round off error
6110 for (size_t __i = 0; __i < __densities_.size(); ++__i)
6111 __densities_[__i] /= (__b_[__i+1] - __b_[__i]);
6112 // __densities_ now contains __densities_
Howard Hinnantd6d11712010-05-20 15:11:46 +00006113}
6114
6115template<class _RealType>
6116piecewise_constant_distribution<_RealType>::param_type::param_type()
Howard Hinnant2a592542010-05-24 00:35:40 +00006117 : __b_(2),
Howard Hinnant54305402010-05-25 00:27:34 +00006118 __densities_(1, 1.0),
6119 __areas_(1, 0.0)
Howard Hinnantd6d11712010-05-20 15:11:46 +00006120{
6121 __b_[1] = 1;
6122}
6123
6124template<class _RealType>
6125template<class _InputIteratorB, class _InputIteratorW>
6126piecewise_constant_distribution<_RealType>::param_type::param_type(
6127 _InputIteratorB __fB, _InputIteratorB __lB, _InputIteratorW __fW)
6128 : __b_(__fB, __lB)
6129{
6130 if (__b_.size() < 2)
6131 {
6132 __b_.resize(2);
6133 __b_[0] = 0;
6134 __b_[1] = 1;
Howard Hinnant2a592542010-05-24 00:35:40 +00006135 __densities_.assign(1, 1.0);
Howard Hinnant54305402010-05-25 00:27:34 +00006136 __areas_.assign(1, 0.0);
Howard Hinnantd6d11712010-05-20 15:11:46 +00006137 }
6138 else
6139 {
Howard Hinnant2a592542010-05-24 00:35:40 +00006140 __densities_.reserve(__b_.size() - 1);
Howard Hinnantd6d11712010-05-20 15:11:46 +00006141 for (size_t __i = 0; __i < __b_.size() - 1; ++__i, ++__fW)
Howard Hinnant2a592542010-05-24 00:35:40 +00006142 __densities_.push_back(*__fW);
Howard Hinnantd6d11712010-05-20 15:11:46 +00006143 __init();
6144 }
6145}
6146
Howard Hinnante3e32912011-08-12 21:56:02 +00006147#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
6148
Howard Hinnantd6d11712010-05-20 15:11:46 +00006149template<class _RealType>
6150template<class _UnaryOperation>
6151piecewise_constant_distribution<_RealType>::param_type::param_type(
6152 initializer_list<result_type> __bl, _UnaryOperation __fw)
6153 : __b_(__bl.begin(), __bl.end())
6154{
6155 if (__b_.size() < 2)
6156 {
6157 __b_.resize(2);
6158 __b_[0] = 0;
6159 __b_[1] = 1;
Howard Hinnant2a592542010-05-24 00:35:40 +00006160 __densities_.assign(1, 1.0);
Howard Hinnant54305402010-05-25 00:27:34 +00006161 __areas_.assign(1, 0.0);
Howard Hinnantd6d11712010-05-20 15:11:46 +00006162 }
6163 else
6164 {
Howard Hinnant2a592542010-05-24 00:35:40 +00006165 __densities_.reserve(__b_.size() - 1);
Howard Hinnantd6d11712010-05-20 15:11:46 +00006166 for (size_t __i = 0; __i < __b_.size() - 1; ++__i)
Howard Hinnant2a592542010-05-24 00:35:40 +00006167 __densities_.push_back(__fw((__b_[__i+1] + __b_[__i])*.5));
Howard Hinnantd6d11712010-05-20 15:11:46 +00006168 __init();
6169 }
6170}
6171
Howard Hinnante3e32912011-08-12 21:56:02 +00006172#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
6173
Howard Hinnantd6d11712010-05-20 15:11:46 +00006174template<class _RealType>
6175template<class _UnaryOperation>
6176piecewise_constant_distribution<_RealType>::param_type::param_type(
6177 size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperation __fw)
6178 : __b_(__nw == 0 ? 2 : __nw + 1)
6179{
6180 size_t __n = __b_.size() - 1;
6181 result_type __d = (__xmax - __xmin) / __n;
Howard Hinnant2a592542010-05-24 00:35:40 +00006182 __densities_.reserve(__n);
Howard Hinnantd6d11712010-05-20 15:11:46 +00006183 for (size_t __i = 0; __i < __n; ++__i)
6184 {
6185 __b_[__i] = __xmin + __i * __d;
Howard Hinnant2a592542010-05-24 00:35:40 +00006186 __densities_.push_back(__fw(__b_[__i] + __d*.5));
Howard Hinnantd6d11712010-05-20 15:11:46 +00006187 }
6188 __b_[__n] = __xmax;
6189 __init();
6190}
6191
6192template<class _RealType>
Howard Hinnantd6d11712010-05-20 15:11:46 +00006193template<class _URNG>
6194_RealType
6195piecewise_constant_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
6196{
6197 typedef uniform_real_distribution<result_type> _Gen;
Howard Hinnantd6d11712010-05-20 15:11:46 +00006198 result_type __u = _Gen()(__g);
Howard Hinnant0949eed2011-06-30 21:18:19 +00006199 ptrdiff_t __k = _VSTD::upper_bound(__p.__areas_.begin(), __p.__areas_.end(),
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006200 __u) - __p.__areas_.begin() - 1;
6201 return (__u - __p.__areas_[__k]) / __p.__densities_[__k] + __p.__b_[__k];
Howard Hinnantd6d11712010-05-20 15:11:46 +00006202}
6203
6204template <class _CharT, class _Traits, class _RT>
6205basic_ostream<_CharT, _Traits>&
6206operator<<(basic_ostream<_CharT, _Traits>& __os,
6207 const piecewise_constant_distribution<_RT>& __x)
6208{
6209 __save_flags<_CharT, _Traits> _(__os);
Howard Hinnant2a592542010-05-24 00:35:40 +00006210 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
6211 ios_base::scientific);
Howard Hinnantd6d11712010-05-20 15:11:46 +00006212 _CharT __sp = __os.widen(' ');
6213 __os.fill(__sp);
Howard Hinnant2a592542010-05-24 00:35:40 +00006214 size_t __n = __x.__p_.__b_.size();
Howard Hinnantd6d11712010-05-20 15:11:46 +00006215 __os << __n;
6216 for (size_t __i = 0; __i < __n; ++__i)
Howard Hinnant2a592542010-05-24 00:35:40 +00006217 __os << __sp << __x.__p_.__b_[__i];
6218 __n = __x.__p_.__densities_.size();
Howard Hinnantd6d11712010-05-20 15:11:46 +00006219 __os << __sp << __n;
6220 for (size_t __i = 0; __i < __n; ++__i)
Howard Hinnant2a592542010-05-24 00:35:40 +00006221 __os << __sp << __x.__p_.__densities_[__i];
6222 __n = __x.__p_.__areas_.size();
6223 __os << __sp << __n;
6224 for (size_t __i = 0; __i < __n; ++__i)
6225 __os << __sp << __x.__p_.__areas_[__i];
Howard Hinnantd6d11712010-05-20 15:11:46 +00006226 return __os;
6227}
6228
6229template <class _CharT, class _Traits, class _RT>
6230basic_istream<_CharT, _Traits>&
6231operator>>(basic_istream<_CharT, _Traits>& __is,
6232 piecewise_constant_distribution<_RT>& __x)
6233{
6234 typedef piecewise_constant_distribution<_RT> _Eng;
6235 typedef typename _Eng::result_type result_type;
6236 typedef typename _Eng::param_type param_type;
6237 __save_flags<_CharT, _Traits> _(__is);
6238 __is.flags(ios_base::dec | ios_base::skipws);
6239 size_t __n;
6240 __is >> __n;
Howard Hinnantd6d11712010-05-20 15:11:46 +00006241 vector<result_type> __b(__n);
6242 for (size_t __i = 0; __i < __n; ++__i)
6243 __is >> __b[__i];
Howard Hinnant2a592542010-05-24 00:35:40 +00006244 __is >> __n;
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006245 vector<result_type> __densities(__n);
Howard Hinnant2a592542010-05-24 00:35:40 +00006246 for (size_t __i = 0; __i < __n; ++__i)
6247 __is >> __densities[__i];
6248 __is >> __n;
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006249 vector<result_type> __areas(__n);
Howard Hinnant2a592542010-05-24 00:35:40 +00006250 for (size_t __i = 0; __i < __n; ++__i)
6251 __is >> __areas[__i];
Howard Hinnantd6d11712010-05-20 15:11:46 +00006252 if (!__is.fail())
6253 {
Howard Hinnantd6d11712010-05-20 15:11:46 +00006254 swap(__x.__p_.__b_, __b);
Howard Hinnant2a592542010-05-24 00:35:40 +00006255 swap(__x.__p_.__densities_, __densities);
6256 swap(__x.__p_.__areas_, __areas);
Howard Hinnantd6d11712010-05-20 15:11:46 +00006257 }
6258 return __is;
6259}
6260
Howard Hinnant54305402010-05-25 00:27:34 +00006261// piecewise_linear_distribution
6262
6263template<class _RealType = double>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006264class _LIBCPP_VISIBLE piecewise_linear_distribution
Howard Hinnant54305402010-05-25 00:27:34 +00006265{
6266public:
6267 // types
6268 typedef _RealType result_type;
6269
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006270 class _LIBCPP_VISIBLE param_type
Howard Hinnant54305402010-05-25 00:27:34 +00006271 {
Howard Hinnant54305402010-05-25 00:27:34 +00006272 vector<result_type> __b_;
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006273 vector<result_type> __densities_;
6274 vector<result_type> __areas_;
Howard Hinnant54305402010-05-25 00:27:34 +00006275 public:
6276 typedef piecewise_linear_distribution distribution_type;
6277
6278 param_type();
6279 template<class _InputIteratorB, class _InputIteratorW>
6280 param_type(_InputIteratorB __fB, _InputIteratorB __lB,
6281 _InputIteratorW __fW);
Howard Hinnante3e32912011-08-12 21:56:02 +00006282#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant54305402010-05-25 00:27:34 +00006283 template<class _UnaryOperation>
6284 param_type(initializer_list<result_type> __bl, _UnaryOperation __fw);
Howard Hinnante3e32912011-08-12 21:56:02 +00006285#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant54305402010-05-25 00:27:34 +00006286 template<class _UnaryOperation>
6287 param_type(size_t __nw, result_type __xmin, result_type __xmax,
6288 _UnaryOperation __fw);
Howard Hinnant3c143ad2010-10-13 14:37:09 +00006289 param_type & operator=(const param_type& __rhs);
6290
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006291 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006292 vector<result_type> intervals() const {return __b_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006293 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006294 vector<result_type> densities() const {return __densities_;}
Howard Hinnant54305402010-05-25 00:27:34 +00006295
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006296 friend _LIBCPP_INLINE_VISIBILITY
6297 bool operator==(const param_type& __x, const param_type& __y)
Howard Hinnant54305402010-05-25 00:27:34 +00006298 {return __x.__densities_ == __y.__densities_ && __x.__b_ == __y.__b_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006299 friend _LIBCPP_INLINE_VISIBILITY
6300 bool operator!=(const param_type& __x, const param_type& __y)
Howard Hinnant54305402010-05-25 00:27:34 +00006301 {return !(__x == __y);}
6302
6303 private:
6304 void __init();
6305
6306 friend class piecewise_linear_distribution;
6307
6308 template <class _CharT, class _Traits, class _RT>
6309 friend
6310 basic_ostream<_CharT, _Traits>&
6311 operator<<(basic_ostream<_CharT, _Traits>& __os,
6312 const piecewise_linear_distribution<_RT>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00006313
Howard Hinnant54305402010-05-25 00:27:34 +00006314 template <class _CharT, class _Traits, class _RT>
6315 friend
6316 basic_istream<_CharT, _Traits>&
6317 operator>>(basic_istream<_CharT, _Traits>& __is,
6318 piecewise_linear_distribution<_RT>& __x);
6319 };
6320
6321private:
6322 param_type __p_;
6323
6324public:
6325 // constructor and reset functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006326 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006327 piecewise_linear_distribution() {}
6328 template<class _InputIteratorB, class _InputIteratorW>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006329 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006330 piecewise_linear_distribution(_InputIteratorB __fB,
6331 _InputIteratorB __lB,
6332 _InputIteratorW __fW)
6333 : __p_(__fB, __lB, __fW) {}
Howard Hinnant324bb032010-08-22 00:02:43 +00006334
Howard Hinnante3e32912011-08-12 21:56:02 +00006335#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant54305402010-05-25 00:27:34 +00006336 template<class _UnaryOperation>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006337 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006338 piecewise_linear_distribution(initializer_list<result_type> __bl,
6339 _UnaryOperation __fw)
6340 : __p_(__bl, __fw) {}
Howard Hinnante3e32912011-08-12 21:56:02 +00006341#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnant54305402010-05-25 00:27:34 +00006342
6343 template<class _UnaryOperation>
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006344 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006345 piecewise_linear_distribution(size_t __nw, result_type __xmin,
6346 result_type __xmax, _UnaryOperation __fw)
6347 : __p_(__nw, __xmin, __xmax, __fw) {}
6348
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006349 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006350 explicit piecewise_linear_distribution(const param_type& __p)
6351 : __p_(__p) {}
6352
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006353 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006354 void reset() {}
6355
6356 // generating functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006357 template<class _URNG>
6358 _LIBCPP_INLINE_VISIBILITY
6359 result_type operator()(_URNG& __g)
Howard Hinnant54305402010-05-25 00:27:34 +00006360 {return (*this)(__g, __p_);}
6361 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p);
6362
6363 // property functions
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006364 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006365 vector<result_type> intervals() const {return __p_.intervals();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006366 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006367 vector<result_type> densities() const {return __p_.densities();}
Howard Hinnant54305402010-05-25 00:27:34 +00006368
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006369 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006370 param_type param() const {return __p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006371 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006372 void param(const param_type& __p) {__p_ = __p;}
6373
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006374 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006375 result_type min() const {return __p_.__b_.front();}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006376 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant54305402010-05-25 00:27:34 +00006377 result_type max() const {return __p_.__b_.back();}
6378
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006379 friend _LIBCPP_INLINE_VISIBILITY
6380 bool operator==(const piecewise_linear_distribution& __x,
6381 const piecewise_linear_distribution& __y)
Howard Hinnant54305402010-05-25 00:27:34 +00006382 {return __x.__p_ == __y.__p_;}
Howard Hinnantb9af2ea2010-09-22 18:02:38 +00006383 friend _LIBCPP_INLINE_VISIBILITY
6384 bool operator!=(const piecewise_linear_distribution& __x,
6385 const piecewise_linear_distribution& __y)
Howard Hinnant54305402010-05-25 00:27:34 +00006386 {return !(__x == __y);}
6387
6388 template <class _CharT, class _Traits, class _RT>
6389 friend
6390 basic_ostream<_CharT, _Traits>&
6391 operator<<(basic_ostream<_CharT, _Traits>& __os,
6392 const piecewise_linear_distribution<_RT>& __x);
Howard Hinnant324bb032010-08-22 00:02:43 +00006393
Howard Hinnant54305402010-05-25 00:27:34 +00006394 template <class _CharT, class _Traits, class _RT>
6395 friend
6396 basic_istream<_CharT, _Traits>&
6397 operator>>(basic_istream<_CharT, _Traits>& __is,
6398 piecewise_linear_distribution<_RT>& __x);
6399};
6400
6401template<class _RealType>
Howard Hinnant3c143ad2010-10-13 14:37:09 +00006402typename piecewise_linear_distribution<_RealType>::param_type &
6403piecewise_linear_distribution<_RealType>::param_type::operator=
6404 (const param_type& __rhs)
6405{
6406// These can throw
6407 __b_.reserve (__rhs.__b_.size ());
6408 __densities_.reserve(__rhs.__densities_.size());
6409 __areas_.reserve (__rhs.__areas_.size());
6410
6411// These can not throw
6412 __b_ = __rhs.__b_;
6413 __densities_ = __rhs.__densities_;
6414 __areas_ = __rhs.__areas_;
6415 return *this;
6416}
6417
6418
6419template<class _RealType>
Howard Hinnant54305402010-05-25 00:27:34 +00006420void
6421piecewise_linear_distribution<_RealType>::param_type::__init()
6422{
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006423 __areas_.assign(__densities_.size() - 1, result_type());
6424 result_type _S = 0;
Howard Hinnant54305402010-05-25 00:27:34 +00006425 for (size_t __i = 0; __i < __areas_.size(); ++__i)
6426 {
6427 __areas_[__i] = (__densities_[__i+1] + __densities_[__i]) *
6428 (__b_[__i+1] - __b_[__i]) * .5;
6429 _S += __areas_[__i];
6430 }
6431 for (size_t __i = __areas_.size(); __i > 1;)
6432 {
6433 --__i;
6434 __areas_[__i] = __areas_[__i-1] / _S;
6435 }
6436 __areas_[0] = 0;
6437 for (size_t __i = 1; __i < __areas_.size(); ++__i)
6438 __areas_[__i] += __areas_[__i-1];
6439 for (size_t __i = 0; __i < __densities_.size(); ++__i)
6440 __densities_[__i] /= _S;
6441}
6442
6443template<class _RealType>
6444piecewise_linear_distribution<_RealType>::param_type::param_type()
6445 : __b_(2),
6446 __densities_(2, 1.0),
6447 __areas_(1, 0.0)
6448{
6449 __b_[1] = 1;
6450}
6451
6452template<class _RealType>
6453template<class _InputIteratorB, class _InputIteratorW>
6454piecewise_linear_distribution<_RealType>::param_type::param_type(
6455 _InputIteratorB __fB, _InputIteratorB __lB, _InputIteratorW __fW)
6456 : __b_(__fB, __lB)
6457{
6458 if (__b_.size() < 2)
6459 {
6460 __b_.resize(2);
6461 __b_[0] = 0;
6462 __b_[1] = 1;
6463 __densities_.assign(2, 1.0);
6464 __areas_.assign(1, 0.0);
6465 }
6466 else
6467 {
6468 __densities_.reserve(__b_.size());
6469 for (size_t __i = 0; __i < __b_.size(); ++__i, ++__fW)
6470 __densities_.push_back(*__fW);
6471 __init();
6472 }
6473}
6474
Howard Hinnante3e32912011-08-12 21:56:02 +00006475#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
6476
Howard Hinnant54305402010-05-25 00:27:34 +00006477template<class _RealType>
6478template<class _UnaryOperation>
6479piecewise_linear_distribution<_RealType>::param_type::param_type(
6480 initializer_list<result_type> __bl, _UnaryOperation __fw)
6481 : __b_(__bl.begin(), __bl.end())
6482{
6483 if (__b_.size() < 2)
6484 {
6485 __b_.resize(2);
6486 __b_[0] = 0;
6487 __b_[1] = 1;
6488 __densities_.assign(2, 1.0);
6489 __areas_.assign(1, 0.0);
6490 }
6491 else
6492 {
6493 __densities_.reserve(__b_.size());
6494 for (size_t __i = 0; __i < __b_.size(); ++__i)
6495 __densities_.push_back(__fw(__b_[__i]));
6496 __init();
6497 }
6498}
6499
Howard Hinnante3e32912011-08-12 21:56:02 +00006500#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
6501
Howard Hinnant54305402010-05-25 00:27:34 +00006502template<class _RealType>
6503template<class _UnaryOperation>
6504piecewise_linear_distribution<_RealType>::param_type::param_type(
6505 size_t __nw, result_type __xmin, result_type __xmax, _UnaryOperation __fw)
6506 : __b_(__nw == 0 ? 2 : __nw + 1)
6507{
6508 size_t __n = __b_.size() - 1;
6509 result_type __d = (__xmax - __xmin) / __n;
6510 __densities_.reserve(__b_.size());
6511 for (size_t __i = 0; __i < __n; ++__i)
6512 {
6513 __b_[__i] = __xmin + __i * __d;
6514 __densities_.push_back(__fw(__b_[__i]));
6515 }
6516 __b_[__n] = __xmax;
6517 __densities_.push_back(__fw(__b_[__n]));
6518 __init();
6519}
6520
6521template<class _RealType>
6522template<class _URNG>
6523_RealType
6524piecewise_linear_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p)
6525{
6526 typedef uniform_real_distribution<result_type> _Gen;
6527 result_type __u = _Gen()(__g);
Howard Hinnant0949eed2011-06-30 21:18:19 +00006528 ptrdiff_t __k = _VSTD::upper_bound(__p.__areas_.begin(), __p.__areas_.end(),
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006529 __u) - __p.__areas_.begin() - 1;
Howard Hinnant54305402010-05-25 00:27:34 +00006530 __u -= __p.__areas_[__k];
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006531 const result_type __dk = __p.__densities_[__k];
6532 const result_type __dk1 = __p.__densities_[__k+1];
6533 const result_type __deltad = __dk1 - __dk;
Howard Hinnant54305402010-05-25 00:27:34 +00006534 const result_type __bk = __p.__b_[__k];
6535 if (__deltad == 0)
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006536 return __u / __dk + __bk;
Howard Hinnant54305402010-05-25 00:27:34 +00006537 const result_type __bk1 = __p.__b_[__k+1];
6538 const result_type __deltab = __bk1 - __bk;
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006539 return (__bk * __dk1 - __bk1 * __dk +
Howard Hinnant0949eed2011-06-30 21:18:19 +00006540 _VSTD::sqrt(__deltab * (__deltab * __dk * __dk + 2 * __deltad * __u))) /
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006541 __deltad;
Howard Hinnant54305402010-05-25 00:27:34 +00006542}
6543
6544template <class _CharT, class _Traits, class _RT>
6545basic_ostream<_CharT, _Traits>&
6546operator<<(basic_ostream<_CharT, _Traits>& __os,
6547 const piecewise_linear_distribution<_RT>& __x)
6548{
6549 __save_flags<_CharT, _Traits> _(__os);
6550 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed |
6551 ios_base::scientific);
6552 _CharT __sp = __os.widen(' ');
6553 __os.fill(__sp);
6554 size_t __n = __x.__p_.__b_.size();
6555 __os << __n;
6556 for (size_t __i = 0; __i < __n; ++__i)
6557 __os << __sp << __x.__p_.__b_[__i];
6558 __n = __x.__p_.__densities_.size();
6559 __os << __sp << __n;
6560 for (size_t __i = 0; __i < __n; ++__i)
6561 __os << __sp << __x.__p_.__densities_[__i];
6562 __n = __x.__p_.__areas_.size();
6563 __os << __sp << __n;
6564 for (size_t __i = 0; __i < __n; ++__i)
6565 __os << __sp << __x.__p_.__areas_[__i];
6566 return __os;
6567}
6568
6569template <class _CharT, class _Traits, class _RT>
6570basic_istream<_CharT, _Traits>&
6571operator>>(basic_istream<_CharT, _Traits>& __is,
6572 piecewise_linear_distribution<_RT>& __x)
6573{
6574 typedef piecewise_linear_distribution<_RT> _Eng;
6575 typedef typename _Eng::result_type result_type;
6576 typedef typename _Eng::param_type param_type;
Howard Hinnant54305402010-05-25 00:27:34 +00006577 __save_flags<_CharT, _Traits> _(__is);
6578 __is.flags(ios_base::dec | ios_base::skipws);
6579 size_t __n;
6580 __is >> __n;
6581 vector<result_type> __b(__n);
6582 for (size_t __i = 0; __i < __n; ++__i)
6583 __is >> __b[__i];
6584 __is >> __n;
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006585 vector<result_type> __densities(__n);
Howard Hinnant54305402010-05-25 00:27:34 +00006586 for (size_t __i = 0; __i < __n; ++__i)
6587 __is >> __densities[__i];
6588 __is >> __n;
Howard Hinnant9650b6c2010-11-18 17:01:36 +00006589 vector<result_type> __areas(__n);
Howard Hinnant54305402010-05-25 00:27:34 +00006590 for (size_t __i = 0; __i < __n; ++__i)
6591 __is >> __areas[__i];
6592 if (!__is.fail())
6593 {
6594 swap(__x.__p_.__b_, __b);
6595 swap(__x.__p_.__densities_, __densities);
6596 swap(__x.__p_.__areas_, __areas);
6597 }
6598 return __is;
6599}
6600
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00006601_LIBCPP_END_NAMESPACE_STD
6602
6603#endif // _LIBCPP_RANDOM