Warning, file /include/boost/random/taus88.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #ifndef BOOST_RANDOM_TAUS88_HPP
0016 #define BOOST_RANDOM_TAUS88_HPP
0017
0018 #include <boost/random/linear_feedback_shift.hpp>
0019 #include <boost/random/xor_combine.hpp>
0020
0021 namespace boost {
0022 namespace random {
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033 typedef xor_combine_engine<
0034 xor_combine_engine<
0035 linear_feedback_shift_engine<uint32_t, 32, 31, 13, 12>, 0,
0036 linear_feedback_shift_engine<uint32_t, 32, 29, 2, 4>, 0>, 0,
0037 linear_feedback_shift_engine<uint32_t, 32, 28, 3, 17>, 0> taus88;
0038
0039 }
0040
0041 using random::taus88;
0042
0043 }
0044
0045 #endif