random.hpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. // (C) Copyright John Maddock 2005.
  2. // (C) Copyright Henry S. Warren 2005.
  3. // Use, modification and distribution are subject to the
  4. // Boost Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #ifndef BOOST_TR1_RANDOM_HPP_INCLUDED
  7. # define BOOST_TR1_RANDOM_HPP_INCLUDED
  8. # include <boost/tr1/detail/config.hpp>
  9. #ifdef BOOST_HAS_TR1_RANDOM
  10. # if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
  11. # include_next BOOST_TR1_HEADER(random)
  12. # else
  13. # include <boost/tr1/detail/config_all.hpp>
  14. # include BOOST_TR1_STD_HEADER(BOOST_TR1_PATH(random))
  15. # endif
  16. #else
  17. // Boost.Random:
  18. #include <boost/random.hpp>
  19. #ifndef __SUNPRO_CC
  20. // Sunpros linker complains if we so much as include this...
  21. # include <boost/nondet_random.hpp>
  22. #endif
  23. #include <boost/tr1/detail/functor2iterator.hpp>
  24. #include <boost/type_traits/is_fundamental.hpp>
  25. #include <boost/type_traits/is_same.hpp>
  26. namespace std { namespace tr1{
  27. using ::boost::variate_generator;
  28. template<class UIntType, UIntType a, UIntType c, UIntType m>
  29. class linear_congruential
  30. {
  31. private:
  32. typedef ::boost::random::linear_congruential<UIntType, a, c, m, 0> impl_type;
  33. public:
  34. // types
  35. typedef UIntType result_type;
  36. // parameter values
  37. BOOST_STATIC_CONSTANT(UIntType, multiplier = a);
  38. BOOST_STATIC_CONSTANT(UIntType, increment = c);
  39. BOOST_STATIC_CONSTANT(UIntType, modulus = m);
  40. // constructors and member function
  41. explicit linear_congruential(unsigned long x0 = 1)
  42. : m_gen(x0){}
  43. linear_congruential(const linear_congruential& that)
  44. : m_gen(that.m_gen){}
  45. template<class Gen> linear_congruential(Gen& g)
  46. {
  47. init1(g, ::boost::is_same<Gen,linear_congruential>());
  48. }
  49. void seed(unsigned long x0 = 1)
  50. { m_gen.seed(x0); }
  51. template<class Gen> void seed(Gen& g)
  52. {
  53. init2(g, ::boost::is_fundamental<Gen>());
  54. }
  55. result_type min BOOST_PREVENT_MACRO_SUBSTITUTION() const
  56. { return (m_gen.min)(); }
  57. result_type max BOOST_PREVENT_MACRO_SUBSTITUTION() const
  58. { return (m_gen.max)(); }
  59. result_type operator()()
  60. {
  61. return m_gen();
  62. }
  63. bool operator==(const linear_congruential& that)const
  64. { return m_gen == that.m_gen; }
  65. bool operator!=(const linear_congruential& that)const
  66. { return m_gen != that.m_gen; }
  67. #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
  68. template<class CharT, class Traits>
  69. friend std::basic_ostream<CharT,Traits>&
  70. operator<<(std::basic_ostream<CharT,Traits>& os,
  71. const linear_congruential& lcg)
  72. {
  73. return os << lcg.m_gen;
  74. }
  75. template<class CharT, class Traits>
  76. friend std::basic_istream<CharT,Traits>&
  77. operator>>(std::basic_istream<CharT,Traits>& is,
  78. linear_congruential& lcg)
  79. {
  80. return is >> lcg.m_gen;
  81. }
  82. #endif
  83. private:
  84. template <class Gen>
  85. void init1(Gen& g, const ::boost::true_type&)
  86. {
  87. m_gen = g.m_gen;
  88. }
  89. template <class Gen>
  90. void init1(Gen& g, const ::boost::false_type&)
  91. {
  92. init2(g, ::boost::is_fundamental<Gen>());
  93. }
  94. template <class Gen>
  95. void init2(Gen& g, const ::boost::true_type&)
  96. {
  97. m_gen.seed(static_cast<unsigned long>(g));
  98. }
  99. template <class Gen>
  100. void init2(Gen& g, const ::boost::false_type&)
  101. {
  102. //typedef typename Gen::result_type gen_rt;
  103. boost::tr1_details::functor2iterator<Gen, unsigned long> f1(g), f2;
  104. m_gen.seed(f1, f2);
  105. }
  106. impl_type m_gen;
  107. };
  108. template<class UIntType, int w, int n, int m, int r,
  109. UIntType a, int u, int s, UIntType b, int t, UIntType c, int l>
  110. class mersenne_twister
  111. {
  112. typedef ::boost::random::mersenne_twister
  113. <UIntType, w, n, m, r, a, u, s, b, t, c, l, 0> imp_type;
  114. public:
  115. // types
  116. typedef UIntType result_type;
  117. // parameter values
  118. BOOST_STATIC_CONSTANT(int, word_size = w);
  119. BOOST_STATIC_CONSTANT(int, state_size = n);
  120. BOOST_STATIC_CONSTANT(int, shift_size = m);
  121. BOOST_STATIC_CONSTANT(int, mask_bits = r);
  122. BOOST_STATIC_CONSTANT(UIntType, parameter_a = a);
  123. BOOST_STATIC_CONSTANT(int, output_u = u);
  124. BOOST_STATIC_CONSTANT(int, output_s = s);
  125. BOOST_STATIC_CONSTANT(UIntType, output_b = b);
  126. BOOST_STATIC_CONSTANT(int, output_t = t);
  127. BOOST_STATIC_CONSTANT(UIntType, output_c = c);
  128. BOOST_STATIC_CONSTANT(int, output_l = l);
  129. // constructors and member function
  130. mersenne_twister(){}
  131. explicit mersenne_twister(unsigned long value)
  132. : m_gen(value == 0 ? 5489UL : value){}
  133. template<class Gen> mersenne_twister(Gen& g)
  134. {
  135. init1(g, ::boost::is_same<mersenne_twister,Gen>());
  136. }
  137. void seed()
  138. { m_gen.seed(); }
  139. void seed(unsigned long value)
  140. { m_gen.seed(value == 0 ? 5489UL : value); }
  141. template<class Gen> void seed(Gen& g)
  142. { init2(g, ::boost::is_fundamental<Gen>()); }
  143. result_type min BOOST_PREVENT_MACRO_SUBSTITUTION() const
  144. { return (m_gen.min)(); }
  145. result_type max BOOST_PREVENT_MACRO_SUBSTITUTION() const
  146. { return (m_gen.max)(); }
  147. result_type operator()()
  148. { return m_gen(); }
  149. bool operator==(const mersenne_twister& that)const
  150. { return m_gen == that.m_gen; }
  151. bool operator!=(const mersenne_twister& that)const
  152. { return m_gen != that.m_gen; }
  153. #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
  154. template<class CharT, class Traits>
  155. friend std::basic_ostream<CharT,Traits>&
  156. operator<<(std::basic_ostream<CharT,Traits>& os,
  157. const mersenne_twister& lcg)
  158. {
  159. return os << lcg.m_gen;
  160. }
  161. template<class CharT, class Traits>
  162. friend std::basic_istream<CharT,Traits>&
  163. operator>>(std::basic_istream<CharT,Traits>& is,
  164. mersenne_twister& lcg)
  165. {
  166. return is >> lcg.m_gen;
  167. }
  168. #endif
  169. private:
  170. template <class Gen>
  171. void init1(Gen& g, const ::boost::true_type&)
  172. {
  173. m_gen = g.m_gen;
  174. }
  175. template <class Gen>
  176. void init1(Gen& g, const ::boost::false_type&)
  177. {
  178. init2(g, ::boost::is_fundamental<Gen>());
  179. }
  180. template <class Gen>
  181. void init2(Gen& g, const ::boost::true_type&)
  182. {
  183. m_gen.seed(static_cast<unsigned long>(g == 0 ? 4357UL : g));
  184. }
  185. template <class Gen>
  186. void init2(Gen& g, const ::boost::false_type&)
  187. {
  188. m_gen.seed(g);
  189. }
  190. imp_type m_gen;
  191. };
  192. template<class IntType, IntType m, int s, int r>
  193. class subtract_with_carry
  194. {
  195. public:
  196. // types
  197. typedef IntType result_type;
  198. // parameter values
  199. BOOST_STATIC_CONSTANT(IntType, modulus = m);
  200. BOOST_STATIC_CONSTANT(int, long_lag = r);
  201. BOOST_STATIC_CONSTANT(int, short_lag = s);
  202. // constructors and member function
  203. subtract_with_carry(){}
  204. explicit subtract_with_carry(unsigned long value)
  205. : m_gen(value == 0 ? 19780503UL : value){}
  206. template<class Gen> subtract_with_carry(Gen& g)
  207. { init1(g, ::boost::is_same<Gen, subtract_with_carry<IntType, m, s, r> >()); }
  208. void seed(unsigned long value = 19780503ul)
  209. { m_gen.seed(value == 0 ? 19780503UL : value); }
  210. template<class Gen> void seed(Gen& g)
  211. { init2(g, ::boost::is_fundamental<Gen>()); }
  212. result_type min BOOST_PREVENT_MACRO_SUBSTITUTION() const
  213. { return (m_gen.min)(); }
  214. result_type max BOOST_PREVENT_MACRO_SUBSTITUTION() const
  215. { return (m_gen.max)(); }
  216. result_type operator()()
  217. { return m_gen(); }
  218. bool operator==(const subtract_with_carry& that)const
  219. { return m_gen == that.m_gen; }
  220. bool operator!=(const subtract_with_carry& that)const
  221. { return m_gen != that.m_gen; }
  222. #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
  223. template<class CharT, class Traits>
  224. friend std::basic_ostream<CharT,Traits>&
  225. operator<<(std::basic_ostream<CharT,Traits>& os,
  226. const subtract_with_carry& lcg)
  227. {
  228. return os << lcg.m_gen;
  229. }
  230. template<class CharT, class Traits>
  231. friend std::basic_istream<CharT,Traits>&
  232. operator>>(std::basic_istream<CharT,Traits>& is,
  233. subtract_with_carry& lcg)
  234. {
  235. return is >> lcg.m_gen;
  236. }
  237. #endif
  238. private:
  239. template <class Gen>
  240. void init1(Gen& g, const ::boost::true_type&)
  241. {
  242. m_gen = g.m_gen;
  243. }
  244. template <class Gen>
  245. void init1(Gen& g, const ::boost::false_type&)
  246. {
  247. init2(g, ::boost::is_fundamental<Gen>());
  248. }
  249. template <class Gen>
  250. void init2(Gen& g, const ::boost::true_type&)
  251. {
  252. m_gen.seed(static_cast<unsigned long>(g == 0 ? 19780503UL : g));
  253. }
  254. template <class Gen>
  255. void init2(Gen& g, const ::boost::false_type&)
  256. {
  257. m_gen.seed(g);
  258. }
  259. ::boost::random::subtract_with_carry<IntType, m, s, r, 0> m_gen;
  260. };
  261. template<class RealType, int w, int s, int r>
  262. class subtract_with_carry_01
  263. {
  264. public:
  265. // types
  266. typedef RealType result_type;
  267. // parameter values
  268. BOOST_STATIC_CONSTANT(int, word_size = w);
  269. BOOST_STATIC_CONSTANT(int, long_lag = r);
  270. BOOST_STATIC_CONSTANT(int, short_lag = s);
  271. // constructors and member function
  272. subtract_with_carry_01(){}
  273. explicit subtract_with_carry_01(unsigned long value)
  274. : m_gen(value == 0 ? 19780503UL : value){}
  275. template<class Gen> subtract_with_carry_01(Gen& g)
  276. { init1(g, ::boost::is_same<Gen, subtract_with_carry_01<RealType, w, s, r> >()); }
  277. void seed(unsigned long value = 19780503UL)
  278. { m_gen.seed(value == 0 ? 19780503UL : value); }
  279. template<class Gen> void seed(Gen& g)
  280. { init2(g, ::boost::is_fundamental<Gen>()); }
  281. result_type min BOOST_PREVENT_MACRO_SUBSTITUTION() const
  282. { return (m_gen.min)(); }
  283. result_type max BOOST_PREVENT_MACRO_SUBSTITUTION() const
  284. { return (m_gen.max)(); }
  285. result_type operator()()
  286. { return m_gen(); }
  287. bool operator==(const subtract_with_carry_01& that)const
  288. { return m_gen == that.m_gen; }
  289. bool operator!=(const subtract_with_carry_01& that)const
  290. { return m_gen != that.m_gen; }
  291. #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
  292. template<class CharT, class Traits>
  293. friend std::basic_ostream<CharT,Traits>&
  294. operator<<(std::basic_ostream<CharT,Traits>& os,
  295. const subtract_with_carry_01& lcg)
  296. {
  297. return os << lcg.m_gen;
  298. }
  299. template<class CharT, class Traits>
  300. friend std::basic_istream<CharT,Traits>&
  301. operator>>(std::basic_istream<CharT,Traits>& is,
  302. subtract_with_carry_01& lcg)
  303. {
  304. return is >> lcg.m_gen;
  305. }
  306. #endif
  307. private:
  308. template <class Gen>
  309. void init1(Gen& g, const ::boost::true_type&)
  310. {
  311. m_gen = g.m_gen;
  312. }
  313. template <class Gen>
  314. void init1(Gen& g, const ::boost::false_type&)
  315. {
  316. init2(g, ::boost::is_fundamental<Gen>());
  317. }
  318. template <class Gen>
  319. void init2(Gen& g, const ::boost::true_type&)
  320. {
  321. m_gen.seed(static_cast<unsigned long>(g == 0 ? 19780503UL : g));
  322. }
  323. template <class Gen>
  324. void init2(Gen& g, const ::boost::false_type&)
  325. {
  326. //typedef typename Gen::result_type gen_rt;
  327. boost::tr1_details::functor2iterator<Gen, unsigned long> f1(g), f2;
  328. m_gen.seed(f1, f2);
  329. }
  330. ::boost::random::subtract_with_carry_01<RealType, w, s, r, 0> m_gen;
  331. };
  332. using ::boost::random::discard_block;
  333. template<class UniformRandomNumberGenerator1, int s1, class UniformRandomNumberGenerator2, int s2>
  334. class xor_combine
  335. {
  336. public:
  337. // types
  338. typedef UniformRandomNumberGenerator1 base1_type;
  339. typedef UniformRandomNumberGenerator2 base2_type;
  340. typedef unsigned long result_type;
  341. // parameter values
  342. BOOST_STATIC_CONSTANT(int, shift1 = s1);
  343. BOOST_STATIC_CONSTANT(int, shift2 = s2);
  344. // constructors and member function
  345. xor_combine(){ init_minmax(); }
  346. xor_combine(const base1_type & rng1, const base2_type & rng2)
  347. : m_b1(rng1), m_b2(rng2) { init_minmax(); }
  348. xor_combine(unsigned long s)
  349. : m_b1(s), m_b2(s+1) { init_minmax(); }
  350. template<class Gen> xor_combine(Gen& g)
  351. {
  352. init_minmax();
  353. init1(g, ::boost::is_same<Gen, xor_combine<UniformRandomNumberGenerator1, s1, UniformRandomNumberGenerator2, s2> >());
  354. }
  355. void seed()
  356. {
  357. m_b1.seed();
  358. m_b2.seed();
  359. }
  360. void seed(unsigned long s)
  361. {
  362. m_b1.seed(s);
  363. m_b2.seed(s+1);
  364. }
  365. template<class Gen> void seed(Gen& g)
  366. {
  367. init2(g, ::boost::is_fundamental<Gen>());
  368. }
  369. const base1_type& base1() const
  370. { return m_b1; }
  371. const base2_type& base2() const
  372. { return m_b2; }
  373. result_type min BOOST_PREVENT_MACRO_SUBSTITUTION() const
  374. { return m_min; }
  375. result_type max BOOST_PREVENT_MACRO_SUBSTITUTION() const
  376. { return m_max; }
  377. result_type operator()()
  378. { return (m_b1() << s1) ^ (m_b2() << s2); }
  379. bool operator == (const xor_combine& that)const
  380. { return (m_b1 == that.m_b1) && (m_b2 == that.m_b2); }
  381. bool operator != (const xor_combine& that)const
  382. { return !(*this == that); }
  383. #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
  384. template<class CharT, class Traits>
  385. friend std::basic_ostream<CharT,Traits>&
  386. operator<<(std::basic_ostream<CharT,Traits>& os,
  387. const xor_combine& lcg)
  388. {
  389. return os << lcg.m_b1 << " " << lcg.m_b2;
  390. }
  391. template<class CharT, class Traits>
  392. friend std::basic_istream<CharT,Traits>&
  393. operator>>(std::basic_istream<CharT,Traits>& is,
  394. xor_combine& lcg)
  395. {
  396. return is >> lcg.m_b1 >> lcg.m_b2;
  397. }
  398. #endif
  399. private:
  400. void init_minmax();
  401. base1_type m_b1;
  402. base2_type m_b2;
  403. result_type m_min;
  404. result_type m_max;
  405. template <class Gen>
  406. void init1(Gen& g, const ::boost::true_type&)
  407. {
  408. m_b1 = g.m_b1;
  409. m_b2 = g.m_b2;
  410. }
  411. template <class Gen>
  412. void init1(Gen& g, const ::boost::false_type&)
  413. {
  414. init2(g, ::boost::is_fundamental<Gen>());
  415. }
  416. template <class Gen>
  417. void init2(Gen& g, const ::boost::true_type&)
  418. {
  419. m_b1.seed(static_cast<unsigned long>(g));
  420. m_b2.seed(static_cast<unsigned long>(g));
  421. }
  422. template <class Gen>
  423. void init2(Gen& g, const ::boost::false_type&)
  424. {
  425. m_b1.seed(g);
  426. m_b2.seed(g);
  427. }
  428. };
  429. template<class UniformRandomNumberGenerator1, int s1, class UniformRandomNumberGenerator2, int s2>
  430. void xor_combine<UniformRandomNumberGenerator1, s1, UniformRandomNumberGenerator2, s2>::init_minmax()
  431. {
  432. //
  433. // The following code is based on that given in "Hacker's Delight"
  434. // by Henry S. Warren, (Addison-Wesley, 2003), and at
  435. // http://www.hackersdelight.org/index.htm.
  436. // Used here by permission.
  437. //
  438. // calculation of minimum value:
  439. //
  440. result_type a = (m_b1.min)() << s1;
  441. result_type b = (m_b1.max)() << s1;
  442. result_type c = (m_b2.min)() << s2;
  443. result_type d = (m_b2.max)() << s2;
  444. result_type m, temp;
  445. m = 0x1uL << ((sizeof(result_type) * CHAR_BIT) - 1);
  446. while (m != 0) {
  447. if (~a & c & m) {
  448. temp = (a | m) & (static_cast<result_type>(0u) - m);
  449. if (temp <= b) a = temp;
  450. }
  451. else if (a & ~c & m) {
  452. temp = (c | m) & (static_cast<result_type>(0u) - m);
  453. if (temp <= d) c = temp;
  454. }
  455. m >>= 1;
  456. }
  457. m_min = a ^ c;
  458. //
  459. // calculation of maximum value:
  460. //
  461. if((((std::numeric_limits<result_type>::max)() >> s1) < (m_b1.max)())
  462. || ((((std::numeric_limits<result_type>::max)()) >> s2) < (m_b2.max)()))
  463. {
  464. m_max = (std::numeric_limits<result_type>::max)();
  465. return;
  466. }
  467. a = (m_b1.min)() << s1;
  468. b = (m_b1.max)() << s1;
  469. c = (m_b2.min)() << s2;
  470. d = (m_b2.max)() << s2;
  471. m = 0x1uL << ((sizeof(result_type) * CHAR_BIT) - 1);
  472. while (m != 0) {
  473. if (b & d & m) {
  474. temp = (b - m) | (m - 1);
  475. if (temp >= a) b = temp;
  476. else {
  477. temp = (d - m) | (m - 1);
  478. if (temp >= c) d = temp;
  479. }
  480. }
  481. m = m >> 1;
  482. }
  483. m_max = b ^ d;
  484. }
  485. typedef linear_congruential< ::boost::int32_t, 16807, 0, 2147483647> minstd_rand0;
  486. typedef linear_congruential< ::boost::int32_t, 48271, 0, 2147483647> minstd_rand;
  487. typedef mersenne_twister< ::boost::uint32_t, 32,624,397,31,0x9908b0df,11,7,0x9d2c5680,15,0xefc60000,18> mt19937;
  488. typedef subtract_with_carry_01<float, 24, 10, 24> ranlux_base_01;
  489. typedef subtract_with_carry_01<double, 48, 10, 24> ranlux64_base_01;
  490. typedef discard_block<subtract_with_carry< ::boost::int32_t, (1<<24), 10, 24>, 223, 24> ranlux3;
  491. typedef discard_block<subtract_with_carry< ::boost::int32_t, (1<<24), 10, 24>, 389, 24> ranlux4;
  492. typedef discard_block<subtract_with_carry_01<float, 24, 10, 24>, 223, 24> ranlux3_01;
  493. typedef discard_block<subtract_with_carry_01<float, 24, 10, 24>, 389, 24> ranlux4_01;
  494. #ifndef __SUNPRO_CC
  495. using ::boost::random_device;
  496. #endif
  497. using ::boost::uniform_int;
  498. class bernoulli_distribution
  499. {
  500. public:
  501. // types
  502. typedef int input_type;
  503. typedef bool result_type;
  504. // constructors and member function
  505. explicit bernoulli_distribution(double p = 0.5)
  506. : m_dist(p){}
  507. double p() const
  508. { return m_dist.p(); }
  509. void reset()
  510. { m_dist.reset(); }
  511. template<class UniformRandomNumberGenerator>
  512. result_type operator()(UniformRandomNumberGenerator& urng)
  513. {
  514. return m_dist(urng);
  515. }
  516. #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
  517. template<class CharT, class Traits>
  518. friend std::basic_ostream<CharT,Traits>&
  519. operator<<(std::basic_ostream<CharT,Traits>& os,
  520. const bernoulli_distribution& lcg)
  521. {
  522. return os << lcg.m_dist;
  523. }
  524. template<class CharT, class Traits>
  525. friend std::basic_istream<CharT,Traits>&
  526. operator>>(std::basic_istream<CharT,Traits>& is,
  527. bernoulli_distribution& lcg)
  528. {
  529. return is >> lcg.m_dist;
  530. }
  531. #endif
  532. private:
  533. ::boost::bernoulli_distribution<double> m_dist;
  534. };
  535. //using ::boost::bernoulli_distribution;
  536. using ::boost::geometric_distribution;
  537. using ::boost::poisson_distribution;
  538. using ::boost::binomial_distribution;
  539. using ::boost::uniform_real;
  540. using ::boost::exponential_distribution;
  541. using ::boost::normal_distribution;
  542. using ::boost::gamma_distribution;
  543. } }
  544. #endif
  545. #endif