/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout 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) =============================================================================*/ #ifndef SPROUT_RANDOM_TAUS88_HPP #define SPROUT_RANDOM_TAUS88_HPP #include #include #include #include namespace sprout { namespace random { // // taus88 // typedef sprout::random::xor_combine_engine< sprout::random::xor_combine_engine< sprout::random::linear_feedback_shift_engine, 0, sprout::random::linear_feedback_shift_engine, 0 >, 0, sprout::random::linear_feedback_shift_engine, 0 > taus88; } // namespace random using sprout::random::taus88; } // namespace sprout #endif // #ifndef SPROUT_RANDOM_TAUS88_HPP