linear_congruential.hpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. /* boost random/linear_congruential.hpp header file
  2. *
  3. * Copyright Jens Maurer 2000-2001
  4. * Distributed under the Boost Software License, Version 1.0. (See
  5. * accompanying file LICENSE_1_0.txt or copy at
  6. * http://www.boost.org/LICENSE_1_0.txt)
  7. *
  8. * See http://www.boost.org for most recent version including documentation.
  9. *
  10. * $Id$
  11. *
  12. * Revision history
  13. * 2001-02-18 moved to individual header files
  14. */
  15. #ifndef BOOST_RANDOM_LINEAR_CONGRUENTIAL_HPP
  16. #define BOOST_RANDOM_LINEAR_CONGRUENTIAL_HPP
  17. #include <iostream>
  18. #include <stdexcept>
  19. #include <boost/assert.hpp>
  20. #include <boost/config.hpp>
  21. #include <boost/cstdint.hpp>
  22. #include <boost/limits.hpp>
  23. #include <boost/static_assert.hpp>
  24. #include <boost/integer/static_log2.hpp>
  25. #include <boost/mpl/if.hpp>
  26. #include <boost/type_traits/is_arithmetic.hpp>
  27. #include <boost/random/detail/config.hpp>
  28. #include <boost/random/detail/const_mod.hpp>
  29. #include <boost/random/detail/seed.hpp>
  30. #include <boost/random/detail/seed_impl.hpp>
  31. #include <boost/detail/workaround.hpp>
  32. #include <boost/random/detail/disable_warnings.hpp>
  33. namespace boost {
  34. namespace random {
  35. /**
  36. * Instantiations of class template linear_congruential_engine model a
  37. * \pseudo_random_number_generator. Linear congruential pseudo-random
  38. * number generators are described in:
  39. *
  40. * @blockquote
  41. * "Mathematical methods in large-scale computing units", D. H. Lehmer,
  42. * Proc. 2nd Symposium on Large-Scale Digital Calculating Machines,
  43. * Harvard University Press, 1951, pp. 141-146
  44. * @endblockquote
  45. *
  46. * Let x(n) denote the sequence of numbers returned by some pseudo-random
  47. * number generator. Then for the linear congruential generator,
  48. * x(n+1) := (a * x(n) + c) mod m. Parameters for the generator are
  49. * x(0), a, c, m. The template parameter IntType shall denote an integral
  50. * type. It must be large enough to hold values a, c, and m. The template
  51. * parameters a and c must be smaller than m.
  52. *
  53. * Note: The quality of the generator crucially depends on the choice of
  54. * the parameters. User code should use one of the sensibly parameterized
  55. * generators such as minstd_rand instead.
  56. */
  57. template<class IntType, IntType a, IntType c, IntType m>
  58. class linear_congruential_engine
  59. {
  60. public:
  61. typedef IntType result_type;
  62. // Required for old Boost.Random concept
  63. BOOST_STATIC_CONSTANT(bool, has_fixed_range = false);
  64. BOOST_STATIC_CONSTANT(IntType, multiplier = a);
  65. BOOST_STATIC_CONSTANT(IntType, increment = c);
  66. BOOST_STATIC_CONSTANT(IntType, modulus = m);
  67. BOOST_STATIC_CONSTANT(IntType, default_seed = 1);
  68. BOOST_STATIC_ASSERT(std::numeric_limits<IntType>::is_integer);
  69. BOOST_STATIC_ASSERT(m == 0 || a < m);
  70. BOOST_STATIC_ASSERT(m == 0 || c < m);
  71. /**
  72. * Constructs a @c linear_congruential_engine, using the default seed
  73. */
  74. linear_congruential_engine() { seed(); }
  75. /**
  76. * Constructs a @c linear_congruential_engine, seeding it with @c x0.
  77. */
  78. BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(linear_congruential_engine,
  79. IntType, x0)
  80. { seed(x0); }
  81. /**
  82. * Constructs a @c linear_congruential_engine, seeding it with values
  83. * produced by a call to @c seq.generate().
  84. */
  85. BOOST_RANDOM_DETAIL_SEED_SEQ_CONSTRUCTOR(linear_congruential_engine,
  86. SeedSeq, seq)
  87. { seed(seq); }
  88. /**
  89. * Constructs a @c linear_congruential_engine and seeds it
  90. * with values taken from the itrator range [first, last)
  91. * and adjusts first to point to the element after the last one
  92. * used. If there are not enough elements, throws @c std::invalid_argument.
  93. *
  94. * first and last must be input iterators.
  95. */
  96. template<class It>
  97. linear_congruential_engine(It& first, It last)
  98. {
  99. seed(first, last);
  100. }
  101. // compiler-generated copy constructor and assignment operator are fine
  102. /**
  103. * Calls seed(default_seed)
  104. */
  105. void seed() { seed(default_seed); }
  106. /**
  107. * If c mod m is zero and x0 mod m is zero, changes the current value of
  108. * the generator to 1. Otherwise, changes it to x0 mod m. If c is zero,
  109. * distinct seeds in the range [1,m) will leave the generator in distinct
  110. * states. If c is not zero, the range is [0,m).
  111. */
  112. BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(linear_congruential_engine, IntType, x0)
  113. {
  114. // wrap _x if it doesn't fit in the destination
  115. if(modulus == 0) {
  116. _x = x0;
  117. } else {
  118. _x = x0 % modulus;
  119. }
  120. // handle negative seeds
  121. if(_x <= 0 && _x != 0) {
  122. _x += modulus;
  123. }
  124. // adjust to the correct range
  125. if(increment == 0 && _x == 0) {
  126. _x = 1;
  127. }
  128. BOOST_ASSERT(_x >= (min)());
  129. BOOST_ASSERT(_x <= (max)());
  130. }
  131. /**
  132. * Seeds a @c linear_congruential_engine using values from a SeedSeq.
  133. */
  134. BOOST_RANDOM_DETAIL_SEED_SEQ_SEED(linear_congruential_engine, SeedSeq, seq)
  135. { seed(detail::seed_one_int<IntType, m>(seq)); }
  136. /**
  137. * seeds a @c linear_congruential_engine with values taken
  138. * from the itrator range [first, last) and adjusts @c first to
  139. * point to the element after the last one used. If there are
  140. * not enough elements, throws @c std::invalid_argument.
  141. *
  142. * @c first and @c last must be input iterators.
  143. */
  144. template<class It>
  145. void seed(It& first, It last)
  146. { seed(detail::get_one_int<IntType, m>(first, last)); }
  147. /**
  148. * Returns the smallest value that the @c linear_congruential_engine
  149. * can produce.
  150. */
  151. static result_type min BOOST_PREVENT_MACRO_SUBSTITUTION ()
  152. { return c == 0 ? 1 : 0; }
  153. /**
  154. * Returns the largest value that the @c linear_congruential_engine
  155. * can produce.
  156. */
  157. static result_type max BOOST_PREVENT_MACRO_SUBSTITUTION ()
  158. { return modulus-1; }
  159. /** Returns the next value of the @c linear_congruential_engine. */
  160. IntType operator()()
  161. {
  162. _x = const_mod<IntType, m>::mult_add(a, _x, c);
  163. return _x;
  164. }
  165. /** Fills a range with random values */
  166. template<class Iter>
  167. void generate(Iter first, Iter last)
  168. { detail::generate_from_int(*this, first, last); }
  169. /** Advances the state of the generator by @c z. */
  170. void discard(boost::uintmax_t z)
  171. {
  172. typedef const_mod<IntType, m> mod_type;
  173. IntType b_inv = mod_type::invert(a-1);
  174. IntType b_gcd = mod_type::mult(a-1, b_inv);
  175. if(b_gcd == 1) {
  176. IntType a_z = mod_type::pow(a, z);
  177. _x = mod_type::mult_add(a_z, _x,
  178. mod_type::mult(mod_type::mult(c, b_inv), a_z - 1));
  179. } else {
  180. // compute (a^z - 1)*c % (b_gcd * m) / (b / b_gcd) * inv(b / b_gcd)
  181. // we're storing the intermediate result / b_gcd
  182. IntType a_zm1_over_gcd = 0;
  183. IntType a_km1_over_gcd = (a - 1) / b_gcd;
  184. boost::uintmax_t exponent = z;
  185. while(exponent != 0) {
  186. if(exponent % 2 == 1) {
  187. a_zm1_over_gcd =
  188. mod_type::mult_add(
  189. b_gcd,
  190. mod_type::mult(a_zm1_over_gcd, a_km1_over_gcd),
  191. mod_type::add(a_zm1_over_gcd, a_km1_over_gcd));
  192. }
  193. a_km1_over_gcd = mod_type::mult_add(
  194. b_gcd,
  195. mod_type::mult(a_km1_over_gcd, a_km1_over_gcd),
  196. mod_type::add(a_km1_over_gcd, a_km1_over_gcd));
  197. exponent /= 2;
  198. }
  199. IntType a_z = mod_type::mult_add(b_gcd, a_zm1_over_gcd, 1);
  200. IntType num = mod_type::mult(c, a_zm1_over_gcd);
  201. b_inv = mod_type::invert((a-1)/b_gcd);
  202. _x = mod_type::mult_add(a_z, _x, mod_type::mult(b_inv, num));
  203. }
  204. }
  205. friend bool operator==(const linear_congruential_engine& x,
  206. const linear_congruential_engine& y)
  207. { return x._x == y._x; }
  208. friend bool operator!=(const linear_congruential_engine& x,
  209. const linear_congruential_engine& y)
  210. { return !(x == y); }
  211. #if !defined(BOOST_RANDOM_NO_STREAM_OPERATORS)
  212. /** Writes a @c linear_congruential_engine to a @c std::ostream. */
  213. template<class CharT, class Traits>
  214. friend std::basic_ostream<CharT,Traits>&
  215. operator<<(std::basic_ostream<CharT,Traits>& os,
  216. const linear_congruential_engine& lcg)
  217. {
  218. return os << lcg._x;
  219. }
  220. /** Reads a @c linear_congruential_engine from a @c std::istream. */
  221. template<class CharT, class Traits>
  222. friend std::basic_istream<CharT,Traits>&
  223. operator>>(std::basic_istream<CharT,Traits>& is,
  224. linear_congruential_engine& lcg)
  225. {
  226. lcg.read(is);
  227. return is;
  228. }
  229. #endif
  230. private:
  231. /// \cond show_private
  232. template<class CharT, class Traits>
  233. void read(std::basic_istream<CharT, Traits>& is) {
  234. IntType x;
  235. if(is >> x) {
  236. if(x >= (min)() && x <= (max)()) {
  237. _x = x;
  238. } else {
  239. is.setstate(std::ios_base::failbit);
  240. }
  241. }
  242. }
  243. /// \endcond
  244. IntType _x;
  245. };
  246. #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
  247. // A definition is required even for integral static constants
  248. template<class IntType, IntType a, IntType c, IntType m>
  249. const bool linear_congruential_engine<IntType, a, c, m>::has_fixed_range;
  250. template<class IntType, IntType a, IntType c, IntType m>
  251. const IntType linear_congruential_engine<IntType,a,c,m>::multiplier;
  252. template<class IntType, IntType a, IntType c, IntType m>
  253. const IntType linear_congruential_engine<IntType,a,c,m>::increment;
  254. template<class IntType, IntType a, IntType c, IntType m>
  255. const IntType linear_congruential_engine<IntType,a,c,m>::modulus;
  256. template<class IntType, IntType a, IntType c, IntType m>
  257. const IntType linear_congruential_engine<IntType,a,c,m>::default_seed;
  258. #endif
  259. /// \cond show_deprecated
  260. // provided for backwards compatibility
  261. template<class IntType, IntType a, IntType c, IntType m, IntType val = 0>
  262. class linear_congruential : public linear_congruential_engine<IntType, a, c, m>
  263. {
  264. typedef linear_congruential_engine<IntType, a, c, m> base_type;
  265. public:
  266. linear_congruential(IntType x0 = 1) : base_type(x0) {}
  267. template<class It>
  268. linear_congruential(It& first, It last) : base_type(first, last) {}
  269. };
  270. /// \endcond
  271. /**
  272. * The specialization \minstd_rand0 was originally suggested in
  273. *
  274. * @blockquote
  275. * A pseudo-random number generator for the System/360, P.A. Lewis,
  276. * A.S. Goodman, J.M. Miller, IBM Systems Journal, Vol. 8, No. 2,
  277. * 1969, pp. 136-146
  278. * @endblockquote
  279. *
  280. * It is examined more closely together with \minstd_rand in
  281. *
  282. * @blockquote
  283. * "Random Number Generators: Good ones are hard to find",
  284. * Stephen K. Park and Keith W. Miller, Communications of
  285. * the ACM, Vol. 31, No. 10, October 1988, pp. 1192-1201
  286. * @endblockquote
  287. */
  288. typedef linear_congruential_engine<uint32_t, 16807, 0, 2147483647> minstd_rand0;
  289. /** The specialization \minstd_rand was suggested in
  290. *
  291. * @blockquote
  292. * "Random Number Generators: Good ones are hard to find",
  293. * Stephen K. Park and Keith W. Miller, Communications of
  294. * the ACM, Vol. 31, No. 10, October 1988, pp. 1192-1201
  295. * @endblockquote
  296. */
  297. typedef linear_congruential_engine<uint32_t, 48271, 0, 2147483647> minstd_rand;
  298. #if !defined(BOOST_NO_INT64_T) && !defined(BOOST_NO_INTEGRAL_INT64_T)
  299. /**
  300. * Class @c rand48 models a \pseudo_random_number_generator. It uses
  301. * the linear congruential algorithm with the parameters a = 0x5DEECE66D,
  302. * c = 0xB, m = 2**48. It delivers identical results to the @c lrand48()
  303. * function available on some systems (assuming lcong48 has not been called).
  304. *
  305. * It is only available on systems where @c uint64_t is provided as an
  306. * integral type, so that for example static in-class constants and/or
  307. * enum definitions with large @c uint64_t numbers work.
  308. */
  309. class rand48
  310. {
  311. public:
  312. typedef boost::uint32_t result_type;
  313. BOOST_STATIC_CONSTANT(bool, has_fixed_range = false);
  314. /**
  315. * Returns the smallest value that the generator can produce
  316. */
  317. static uint32_t min BOOST_PREVENT_MACRO_SUBSTITUTION () { return 0; }
  318. /**
  319. * Returns the largest value that the generator can produce
  320. */
  321. static uint32_t max BOOST_PREVENT_MACRO_SUBSTITUTION ()
  322. { return 0x7FFFFFFF; }
  323. /** Seeds the generator with the default seed. */
  324. rand48() : lcf(cnv(static_cast<uint32_t>(1))) {}
  325. /**
  326. * Constructs a \rand48 generator with x(0) := (x0 << 16) | 0x330e.
  327. */
  328. BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(rand48, result_type, x0)
  329. { seed(x0); }
  330. /**
  331. * Seeds the generator with values produced by @c seq.generate().
  332. */
  333. BOOST_RANDOM_DETAIL_SEED_SEQ_CONSTRUCTOR(rand48, SeedSeq, seq)
  334. { seed(seq); }
  335. /**
  336. * Seeds the generator using values from an iterator range,
  337. * and updates first to point one past the last value consumed.
  338. */
  339. template<class It> rand48(It& first, It last) : lcf(first, last) { }
  340. // compiler-generated copy ctor and assignment operator are fine
  341. /** Seeds the generator with the default seed. */
  342. void seed() { seed(static_cast<uint32_t>(1)); }
  343. /**
  344. * Changes the current value x(n) of the generator to (x0 << 16) | 0x330e.
  345. */
  346. BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(rand48, result_type, x0)
  347. { lcf.seed(cnv(x0)); }
  348. /**
  349. * Seeds the generator using values from an iterator range,
  350. * and updates first to point one past the last value consumed.
  351. */
  352. template<class It> void seed(It& first, It last) { lcf.seed(first,last); }
  353. /**
  354. * Seeds the generator with values produced by @c seq.generate().
  355. */
  356. BOOST_RANDOM_DETAIL_SEED_SEQ_SEED(rand48, SeedSeq, seq)
  357. { lcf.seed(seq); }
  358. /** Returns the next value of the generator. */
  359. uint32_t operator()() { return static_cast<uint32_t>(lcf() >> 17); }
  360. /** Advances the state of the generator by @c z. */
  361. void discard(boost::uintmax_t z) { lcf.discard(z); }
  362. /** Fills a range with random values */
  363. template<class Iter>
  364. void generate(Iter first, Iter last)
  365. {
  366. for(; first != last; ++first) {
  367. *first = (*this)();
  368. }
  369. }
  370. #ifndef BOOST_RANDOM_NO_STREAM_OPERATORS
  371. /** Writes a @c rand48 to a @c std::ostream. */
  372. template<class CharT,class Traits>
  373. friend std::basic_ostream<CharT,Traits>&
  374. operator<<(std::basic_ostream<CharT,Traits>& os, const rand48& r)
  375. { os << r.lcf; return os; }
  376. /** Reads a @c rand48 from a @c std::istream. */
  377. template<class CharT,class Traits>
  378. friend std::basic_istream<CharT,Traits>&
  379. operator>>(std::basic_istream<CharT,Traits>& is, rand48& r)
  380. { is >> r.lcf; return is; }
  381. #endif
  382. /**
  383. * Returns true if the two generators will produce identical
  384. * sequences of values.
  385. */
  386. friend bool operator==(const rand48& x, const rand48& y)
  387. { return x.lcf == y.lcf; }
  388. /**
  389. * Returns true if the two generators will produce different
  390. * sequences of values.
  391. */
  392. friend bool operator!=(const rand48& x, const rand48& y)
  393. { return !(x == y); }
  394. private:
  395. /// \cond show_private
  396. typedef random::linear_congruential_engine<uint64_t,
  397. // xxxxULL is not portable
  398. uint64_t(0xDEECE66DUL) | (uint64_t(0x5) << 32),
  399. 0xB, uint64_t(1)<<48> lcf_t;
  400. lcf_t lcf;
  401. static boost::uint64_t cnv(boost::uint32_t x)
  402. { return (static_cast<uint64_t>(x) << 16) | 0x330e; }
  403. /// \endcond
  404. };
  405. #endif /* !BOOST_NO_INT64_T && !BOOST_NO_INTEGRAL_INT64_T */
  406. } // namespace random
  407. using random::minstd_rand0;
  408. using random::minstd_rand;
  409. using random::rand48;
  410. } // namespace boost
  411. #include <boost/random/detail/enable_warnings.hpp>
  412. #endif // BOOST_RANDOM_LINEAR_CONGRUENTIAL_HPP