/
usr
/
include
/
boost
/
random
/
/usr/include/boost/random
mkdir
upload
Name
Size
Mode
Actions
detail/
-
0755
rm
additive_combine.hpp
8826
0644
edit
dl
rm
bernoulli_distribution.hpp
5608
0644
edit
dl
rm
beta_distribution.hpp
5900
0644
edit
dl
rm
binomial_distribution.hpp
12985
0644
edit
dl
rm
cauchy_distribution.hpp
6528
0644
edit
dl
rm
chi_squared_distribution.hpp
6322
0644
edit
dl
rm
discard_block.hpp
7991
0644
edit
dl
rm
discrete_distribution.hpp
21137
0644
edit
dl
rm
exponential_distribution.hpp
20895
0644
edit
dl
rm
extreme_value_distribution.hpp
5611
0644
edit
dl
rm
faure.hpp
11474
0644
edit
dl
rm
fisher_f_distribution.hpp
5924
0644
edit
dl
rm
gamma_distribution.hpp
9166
0644
edit
dl
rm
generate_canonical.hpp
2954
0644
edit
dl
rm
geometric_distribution.hpp
7339
0644
edit
dl
rm
hyperexponential_distribution.hpp
36980
0644
edit
dl
rm
independent_bits.hpp
9117
0644
edit
dl
rm
inversive_congruential.hpp
9550
0644
edit
dl
rm
lagged_fibonacci.hpp
18256
0644
edit
dl
rm
laplace_distribution.hpp
5743
0644
edit
dl
rm
linear_congruential.hpp
16214
0644
edit
dl
rm
linear_feedback_shift.hpp
7162
0644
edit
dl
rm
lognormal_distribution.hpp
8051
0644
edit
dl
rm
mersenne_twister.hpp
24094
0644
edit
dl
rm
negative_binomial_distribution.hpp
6911
0644
edit
dl
rm
niederreiter_base2.hpp
11736
0644
edit
dl
rm
non_central_chi_squared_distribution.hpp
7724
0644
edit
dl
rm
normal_distribution.hpp
17441
0644
edit
dl
rm
piecewise_constant_distribution.hpp
17186
0644
edit
dl
rm
piecewise_linear_distribution.hpp
18802
0644
edit
dl
rm
poisson_distribution.hpp
10145
0644
edit
dl
rm
random_device.hpp
5032
0644
edit
dl
rm
random_number_generator.hpp
1958
0644
edit
dl
rm
ranlux.hpp
3292
0644
edit
dl
rm
seed_seq.hpp
3792
0644
edit
dl
rm
shuffle_order.hpp
9181
0644
edit
dl
rm
shuffle_output.hpp
1352
0644
edit
dl
rm
sobol.hpp
7704
0644
edit
dl
rm
student_t_distribution.hpp
5633
0644
edit
dl
rm
subtract_with_carry.hpp
21590
0644
edit
dl
rm
taus88.hpp
1164
0644
edit
dl
rm
traits.hpp
4165
0644
edit
dl
rm
triangle_distribution.hpp
7033
0644
edit
dl
rm
uniform_01.hpp
7538
0644
edit
dl
rm
uniform_int.hpp
2909
0644
edit
dl
rm
uniform_int_distribution.hpp
16199
0644
edit
dl
rm
uniform_on_sphere.hpp
8812
0644
edit
dl
rm
uniform_real.hpp
2449
0644
edit
dl
rm
uniform_real_distribution.hpp
7726
0644
edit
dl
rm
uniform_smallint.hpp
12230
0644
edit
dl
rm
variate_generator.hpp
3708
0644
edit
dl
rm
weibull_distribution.hpp
5524
0644
edit
dl
rm
xor_combine.hpp
7049
0644
edit
dl
rm
Edit:
/usr/include/boost/random/additive_combine.hpp
(8826B)
/* boost random/additive_combine.hpp header file * * Copyright Jens Maurer 2000-2001 * Distributed under the Boost Software License, Version 1.0. (See * accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) * * See http://www.boost.org for most recent version including documentation. * * $Id$ * * Revision history * 2001-02-18 moved to individual header files */ #ifndef BOOST_RANDOM_ADDITIVE_COMBINE_HPP #define BOOST_RANDOM_ADDITIVE_COMBINE_HPP #include <istream> #include <iosfwd> #include <algorithm> // for std::min and std::max #include <boost/config.hpp> #include <boost/cstdint.hpp> #include <boost/random/detail/config.hpp> #include <boost/random/detail/operators.hpp> #include <boost/random/detail/seed.hpp> #include <boost/random/linear_congruential.hpp> namespace boost { namespace random { /** * An instantiation of class template @c additive_combine_engine models a * \pseudo_random_number_generator. It combines two multiplicative * \linear_congruential_engine number generators, i.e. those with @c c = 0. * It is described in * * @blockquote * "Efficient and Portable Combined Random Number Generators", Pierre L'Ecuyer, * Communications of the ACM, Vol. 31, No. 6, June 1988, pp. 742-749, 774 * @endblockquote * * The template parameters MLCG1 and MLCG2 shall denote two different * \linear_congruential_engine number generators, each with c = 0. Each * invocation returns a random number * X(n) := (MLCG1(n) - MLCG2(n)) mod (m1 - 1), * where m1 denotes the modulus of MLCG1. */ template<class MLCG1, class MLCG2> class additive_combine_engine { public: typedef MLCG1 first_base; typedef MLCG2 second_base; typedef typename MLCG1::result_type result_type; // Required by old Boost.Random concept BOOST_STATIC_CONSTANT(bool, has_fixed_range = false); /** * Returns the smallest value that the generator can produce */ static result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () { return 1; } /** * Returns the largest value that the generator can produce */ static result_type max BOOST_PREVENT_MACRO_SUBSTITUTION () { return MLCG1::modulus-1; } /** * Constructs an @c additive_combine_engine using the * default constructors of the two base generators. */ additive_combine_engine() : _mlcg1(), _mlcg2() { } /** * Constructs an @c additive_combine_engine, using seed as * the constructor argument for both base generators. */ BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(additive_combine_engine, result_type, seed_arg) { _mlcg1.seed(seed_arg); _mlcg2.seed(seed_arg); } /** * Constructs an @c additive_combine_engine, using seq as * the constructor argument for both base generators. * * @xmlwarning * The semantics of this function are liable to change. * A @c seed_seq is designed to generate all the seeds * in one shot, but this seeds the two base engines * independantly and probably ends up giving the same * sequence to both. * @endxmlwarning */ BOOST_RANDOM_DETAIL_SEED_SEQ_CONSTRUCTOR(additive_combine_engine, SeedSeq, seq) { _mlcg1.seed(seq); _mlcg2.seed(seq); } /** * Constructs an @c additive_combine_engine, using * @c seed1 and @c seed2 as the constructor argument to * the first and second base generators, respectively. */ additive_combine_engine(typename MLCG1::result_type seed1, typename MLCG2::result_type seed2) : _mlcg1(seed1), _mlcg2(seed2) { } /** * Contructs an @c additive_combine_engine with * values from the range defined by the input iterators first * and last. first will be modified to point to the element * after the last one used. * * Throws: @c std::invalid_argument if the input range is too small. * * Exception Safety: Basic */ template<class It> additive_combine_engine(It& first, It last) : _mlcg1(first, last), _mlcg2(first, last) { } /** * Seeds an @c additive_combine_engine using the default * seeds of the two base generators. */ void seed() { _mlcg1.seed(); _mlcg2.seed(); } /** * Seeds an @c additive_combine_engine, using @c seed as the * seed for both base generators. */ BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(additive_combine_engine, result_type, seed_arg) { _mlcg1.seed(seed_arg); _mlcg2.seed(seed_arg); } /** * Seeds an @c additive_combine_engine, using @c seq to * seed both base generators. * * See the warning on the corresponding constructor. */ BOOST_RANDOM_DETAIL_SEED_SEQ_SEED(additive_combine_engine, SeedSeq, seq) { _mlcg1.seed(seq); _mlcg2.seed(seq); } /** * Seeds an @c additive_combine generator, using @c seed1 and @c seed2 as * the seeds to the first and second base generators, respectively. */ void seed(typename MLCG1::result_type seed1, typename MLCG2::result_type seed2) { _mlcg1.seed(seed1); _mlcg2.seed(seed2); } /** * Seeds an @c additive_combine_engine with * values from the range defined by the input iterators first * and last. first will be modified to point to the element * after the last one used. * * Throws: @c std::invalid_argument if the input range is too small. * * Exception Safety: Basic */ template<class It> void seed(It& first, It last) { _mlcg1.seed(first, last); _mlcg2.seed(first, last); } /** Returns the next value of the generator. */ result_type operator()() { result_type val1 = _mlcg1(); result_type val2 = _mlcg2(); if(val2 < val1) return val1 - val2; else return val1 - val2 + MLCG1::modulus - 1; } /** Fills a range with random values */ template<class Iter> void generate(Iter first, Iter last) { detail::generate_from_int(*this, first, last); } /** Advances the state of the generator by @c z. */ void discard(boost::uintmax_t z) { _mlcg1.discard(z); _mlcg2.discard(z); } /** * Writes the state of an @c additive_combine_engine to a @c * std::ostream. The textual representation of an @c * additive_combine_engine is the textual representation of * the first base generator followed by the textual representation * of the second base generator. */ BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR(os, additive_combine_engine, r) { os << r._mlcg1 << ' ' << r._mlcg2; return os; } /** * Reads the state of an @c additive_combine_engine from a * @c std::istream. */ BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(is, additive_combine_engine, r) { is >> r._mlcg1 >> std::ws >> r._mlcg2; return is; } /** * Returns: true iff the two @c additive_combine_engines will * produce the same sequence of values. */ BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(additive_combine_engine, x, y) { return x._mlcg1 == y._mlcg1 && x._mlcg2 == y._mlcg2; } /** * Returns: true iff the two @c additive_combine_engines will * produce different sequences of values. */ BOOST_RANDOM_DETAIL_INEQUALITY_OPERATOR(additive_combine_engine) private: MLCG1 _mlcg1; MLCG2 _mlcg2; }; #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION template<class MLCG1, class MLCG2> const bool additive_combine_engine<MLCG1, MLCG2>::has_fixed_range; #endif /// \cond show_deprecated /** Provided for backwards compatibility. */ template<class MLCG1, class MLCG2, typename MLCG1::result_type val = 0> class additive_combine : public additive_combine_engine<MLCG1, MLCG2> { typedef additive_combine_engine<MLCG1, MLCG2> base_t; public: typedef typename base_t::result_type result_type; additive_combine() {} template<class T> additive_combine(T& arg) : base_t(arg) {} template<class T> additive_combine(const T& arg) : base_t(arg) {} template<class It> additive_combine(It& first, It last) : base_t(first, last) {} }; /// \endcond /** * The specialization \ecuyer1988 was suggested in * * @blockquote * "Efficient and Portable Combined Random Number Generators", Pierre L'Ecuyer, * Communications of the ACM, Vol. 31, No. 6, June 1988, pp. 742-749, 774 * @endblockquote */ typedef additive_combine_engine< linear_congruential_engine<uint32_t, 40014, 0, 2147483563>, linear_congruential_engine<uint32_t, 40692, 0, 2147483399> > ecuyer1988; } // namespace random using random::ecuyer1988; } // namespace boost #endif // BOOST_RANDOM_ADDITIVE_COMBINE_HPP
Save
cmd:
run