PATH:
opt
/
cpanel
/
ea-ruby27
/
src
/
passenger-release-6.1.2
/
src
/
cxx_supportlib
/
vendor-modified
/
boost
/
random
/* boost random/ranlux.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$ * * Revision history * 2001-02-18 created */ #ifndef BOOST_RANDOM_RANLUX_HPP #define BOOST_RANDOM_RANLUX_HPP #include <boost/config.hpp> #include <boost/random/subtract_with_carry.hpp> #include <boost/random/discard_block.hpp> namespace boost { namespace random { namespace detail { /** * The ranlux family of generators are described in * * @blockquote * "A portable high-quality random number generator for lattice field theory * calculations", M. Luescher, Computer Physics Communications, 79 (1994) * pp 100-110. * @endblockquote * * The levels are given in * * @blockquote * "RANLUX: A Fortran implementation of the high-quality * pseudorandom number generator of Luescher", F. James, * Computer Physics Communications 79 (1994) 111-114 * @endblockquote */ class ranlux_documentation {}; } typedef subtract_with_carry_engine<uint32_t, 24, 10, 24> ranlux_base; typedef subtract_with_carry_01_engine<float, 24, 10, 24> ranlux_base_01; typedef subtract_with_carry_01_engine<double, 48, 10, 24> ranlux64_base_01; /** @copydoc boost::random::detail::ranlux_documentation */ typedef discard_block_engine<ranlux_base, 223, 24> ranlux3; /** @copydoc boost::random::detail::ranlux_documentation */ typedef discard_block_engine<ranlux_base, 389, 24> ranlux4; /** @copydoc boost::random::detail::ranlux_documentation */ typedef discard_block_engine<ranlux_base_01, 223, 24> ranlux3_01; /** @copydoc boost::random::detail::ranlux_documentation */ typedef discard_block_engine<ranlux_base_01, 389, 24> ranlux4_01; /** @copydoc boost::random::detail::ranlux_documentation */ typedef discard_block_engine<ranlux64_base_01, 223, 24> ranlux64_3_01; /** @copydoc boost::random::detail::ranlux_documentation */ typedef discard_block_engine<ranlux64_base_01, 389, 24> ranlux64_4_01; #if !defined(BOOST_NO_INT64_T) && !defined(BOOST_NO_INTEGRAL_INT64_T) typedef subtract_with_carry_engine<uint64_t, 48, 10, 24> ranlux64_base; /** @copydoc boost::random::detail::ranlux_documentation */ typedef discard_block_engine<ranlux64_base, 223, 24> ranlux64_3; /** @copydoc boost::random::detail::ranlux_documentation */ typedef discard_block_engine<ranlux64_base, 389, 24> ranlux64_4; #endif /* !BOOST_NO_INT64_T && !BOOST_NO_INTEGRAL_INT64_T */ typedef subtract_with_carry_engine<uint32_t, 24, 10, 24> ranlux24_base; typedef subtract_with_carry_engine<uint64_t, 48, 5, 12> ranlux48_base; typedef discard_block_engine<ranlux24_base, 223, 23> ranlux24; #if !defined(BOOST_NO_INT64_T) && !defined(BOOST_NO_INTEGRAL_INT64_T) typedef discard_block_engine<ranlux48_base, 389, 11> ranlux48; #endif } using random::ranlux3; using random::ranlux4; using random::ranlux3_01; using random::ranlux4_01; using random::ranlux64_3_01; using random::ranlux64_4_01; #if !defined(BOOST_NO_INT64_T) && !defined(BOOST_NO_INTEGRAL_INT64_T) using random::ranlux64_3; using random::ranlux64_4; #endif } // namespace boost #endif // BOOST_RANDOM_LINEAR_CONGRUENTIAL_HPP
[-] uniform_smallint.hpp
[edit]
[-] weibull_distribution.hpp
[edit]
[-] xor_combine.hpp
[edit]
[-] generate_canonical.hpp
[edit]
[-] traits.hpp
[edit]
[-] laplace_distribution.hpp
[edit]
[-] hyperexponential_distribution.hpp
[edit]
[-] student_t_distribution.hpp
[edit]
[-] lagged_fibonacci.hpp
[edit]
[-] uniform_int.hpp
[edit]
[-] binomial_distribution.hpp
[edit]
[-] uniform_on_sphere.hpp
[edit]
[-] bernoulli_distribution.hpp
[edit]
[-] triangle_distribution.hpp
[edit]
[-] beta_distribution.hpp
[edit]
[-] subtract_with_carry.hpp
[edit]
[-] uniform_01.hpp
[edit]
[-] discrete_distribution.hpp
[edit]
[-] variate_generator.hpp
[edit]
[-] taus88.hpp
[edit]
[-] generalized_inverse_gaussian_distribution.hpp
[edit]
[-] random_number_generator.hpp
[edit]
[-] exponential_distribution.hpp
[edit]
[+]
..
[-] inverse_gaussian_distribution.hpp
[edit]
[-] xoshiro.hpp
[edit]
[-] inversive_congruential.hpp
[edit]
[-] cauchy_distribution.hpp
[edit]
[-] faure.hpp
[edit]
[-] chi_squared_distribution.hpp
[edit]
[-] linear_congruential.hpp
[edit]
[-] mersenne_twister.hpp
[edit]
[-] lognormal_distribution.hpp
[edit]
[-] uniform_int_distribution.hpp
[edit]
[-] geometric_distribution.hpp
[edit]
[-] piecewise_linear_distribution.hpp
[edit]
[-] independent_bits.hpp
[edit]
[-] extreme_value_distribution.hpp
[edit]
[-] splitmix64.hpp
[edit]
[-] gamma_distribution.hpp
[edit]
[-] niederreiter_base2.hpp
[edit]
[-] poisson_distribution.hpp
[edit]
[-] mixmax.hpp
[edit]
[-] uniform_real_distribution.hpp
[edit]
[-] discard_block.hpp
[edit]
[-] seed_seq.hpp
[edit]
[-] normal_distribution.hpp
[edit]
[-] fisher_f_distribution.hpp
[edit]
[-] negative_binomial_distribution.hpp
[edit]
[-] shuffle_output.hpp
[edit]
[-] linear_feedback_shift.hpp
[edit]
[-] additive_combine.hpp
[edit]
[+]
detail
[-] shuffle_order.hpp
[edit]
[-] random_device.hpp
[edit]
[-] sobol.hpp
[edit]
[-] ranlux.hpp
[edit]
[-] uniform_real.hpp
[edit]
[-] non_central_chi_squared_distribution.hpp
[edit]
[-] piecewise_constant_distribution.hpp
[edit]