/
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/xor_combine.hpp
(7049B)
/* boost random/xor_combine.hpp header file * * Copyright Jens Maurer 2002 * 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$ * */ #ifndef BOOST_RANDOM_XOR_COMBINE_HPP #define BOOST_RANDOM_XOR_COMBINE_HPP #include <istream> #include <iosfwd> #include <cassert> #include <algorithm> // for std::min and std::max #include <boost/config.hpp> #include <boost/limits.hpp> #include <boost/cstdint.hpp> // uint32_t #include <boost/random/detail/config.hpp> #include <boost/random/detail/seed.hpp> #include <boost/random/detail/seed_impl.hpp> #include <boost/random/detail/operators.hpp> namespace boost { namespace random { /** * Instantiations of @c xor_combine_engine model a * \pseudo_random_number_generator. To produce its output it * invokes each of the base generators, shifts their results * and xors them together. */ template<class URNG1, int s1, class URNG2, int s2> class xor_combine_engine { public: typedef URNG1 base1_type; typedef URNG2 base2_type; typedef typename base1_type::result_type result_type; BOOST_STATIC_CONSTANT(bool, has_fixed_range = false); BOOST_STATIC_CONSTANT(int, shift1 = s1); BOOST_STATIC_CONSTANT(int, shift2 = s2); /** * Constructors a @c xor_combine_engine by default constructing * both base generators. */ xor_combine_engine() : _rng1(), _rng2() { } /** Constructs a @c xor_combine by copying two base generators. */ xor_combine_engine(const base1_type & rng1, const base2_type & rng2) : _rng1(rng1), _rng2(rng2) { } /** * Constructs a @c xor_combine_engine, seeding both base generators * with @c v. * * @xmlwarning * The exact algorithm used by this function may change in the future. * @endxmlwarning */ BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(xor_combine_engine, result_type, v) { seed(v); } /** * Constructs a @c xor_combine_engine, seeding both base generators * with values produced by @c seq. */ BOOST_RANDOM_DETAIL_SEED_SEQ_CONSTRUCTOR(xor_combine_engine, SeedSeq, seq) { seed(seq); } /** * Constructs a @c xor_combine_engine, seeding both base generators * with values from the iterator range [first, last) and changes * first to point to the element after the last one used. If there * are not enough elements in the range to seed both generators, * throws @c std::invalid_argument. */ template<class It> xor_combine_engine(It& first, It last) : _rng1(first, last), _rng2( /* advanced by other call */ first, last) { } /** Calls @c seed() for both base generators. */ void seed() { _rng1.seed(); _rng2.seed(); } /** @c seeds both base generators with @c v. */ BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(xor_combine_engine, result_type, v) { _rng1.seed(v); _rng2.seed(v); } /** @c seeds both base generators with values produced by @c seq. */ BOOST_RANDOM_DETAIL_SEED_SEQ_SEED(xor_combine_engine, SeedSeq, seq) { _rng1.seed(seq); _rng2.seed(seq); } /** * seeds both base generators with values from the iterator * range [first, last) and changes first to point to the element * after the last one used. If there are not enough elements in * the range to seed both generators, throws @c std::invalid_argument. */ template<class It> void seed(It& first, It last) { _rng1.seed(first, last); _rng2.seed(first, last); } /** Returns the first base generator. */ const base1_type& base1() const { return _rng1; } /** Returns the second base generator. */ const base2_type& base2() const { return _rng2; } /** Returns the next value of the generator. */ result_type operator()() { return (_rng1() << s1) ^ (_rng2() << s2); } /** 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) { _rng1.discard(z); _rng2.discard(z); } /** Returns the smallest value that the generator can produce. */ static result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () { return (std::min)((URNG1::min)(), (URNG2::min)()); } /** Returns the largest value that the generator can produce. */ static result_type max BOOST_PREVENT_MACRO_SUBSTITUTION () { return (std::max)((URNG1::min)(), (URNG2::max)()); } /** * Writes the textual representation of the generator to a @c std::ostream. */ BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR(os, xor_combine_engine, s) { os << s._rng1 << ' ' << s._rng2; return os; } /** * Reads the textual representation of the generator from a @c std::istream. */ BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(is, xor_combine_engine, s) { is >> s._rng1 >> std::ws >> s._rng2; return is; } /** Returns true if the two generators will produce identical sequences. */ BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(xor_combine_engine, x, y) { return x._rng1 == y._rng1 && x._rng2 == y._rng2; } /** Returns true if the two generators will produce different sequences. */ BOOST_RANDOM_DETAIL_INEQUALITY_OPERATOR(xor_combine_engine) private: base1_type _rng1; base2_type _rng2; }; #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION // A definition is required even for integral static constants template<class URNG1, int s1, class URNG2, int s2> const bool xor_combine_engine<URNG1, s1, URNG2, s2>::has_fixed_range; template<class URNG1, int s1, class URNG2, int s2> const int xor_combine_engine<URNG1, s1, URNG2, s2>::shift1; template<class URNG1, int s1, class URNG2, int s2> const int xor_combine_engine<URNG1, s1, URNG2, s2>::shift2; #endif /// \cond show_private /** Provided for backwards compatibility. */ template<class URNG1, int s1, class URNG2, int s2, typename URNG1::result_type v = 0> class xor_combine : public xor_combine_engine<URNG1, s1, URNG2, s2> { typedef xor_combine_engine<URNG1, s1, URNG2, s2> base_type; public: typedef typename base_type::result_type result_type; xor_combine() {} xor_combine(result_type val) : base_type(val) {} template<class It> xor_combine(It& first, It last) : base_type(first, last) {} xor_combine(const URNG1 & rng1, const URNG2 & rng2) : base_type(rng1, rng2) { } result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () const { return (std::min)((this->base1().min)(), (this->base2().min)()); } result_type max BOOST_PREVENT_MACRO_SUBSTITUTION () const { return (std::max)((this->base1().min)(), (this->base2().max)()); } }; /// \endcond } // namespace random } // namespace boost #endif // BOOST_RANDOM_XOR_COMBINE_HPP
Save
cmd:
run