/*============================================================================= 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_ALGORITHM_FIXED_RANDOM_SWAP_RESULT_HPP #define SPROUT_ALGORITHM_FIXED_RANDOM_SWAP_RESULT_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace fixed { namespace detail { template inline SPROUT_CONSTEXPR sprout::pair, typename std::decay::type> make_random_swap_result_indexes_2(Random const& rnd, std::ptrdiff_t i0) { typedef sprout::pair, typename std::decay::type> result_type; return result_type( sprout::array{{i0, rnd.result()}}, rnd.engine() ); } template inline SPROUT_CONSTEXPR sprout::pair, typename std::decay::type> make_random_swap_result_indexes_1(Random const& rnd) { return sprout::fixed::detail::make_random_swap_result_indexes_2( rnd(), rnd.result() ); } template inline SPROUT_CONSTEXPR sprout::pair, typename std::decay::type> make_random_swap_result_indexes(std::ptrdiff_t n, UniformRandomNumberGenerator&& g) { typedef sprout::pair, typename std::decay::type> result_type; return n > 1 ? sprout::fixed::detail::make_random_swap_result_indexes_1( SPROUT_WORKAROUND_DETAIL_UNIFORM_INT_DISTRIBUTION(0, n - 1)( sprout::forward(g) ) ) : result_type( sprout::array{{}}, sprout::forward(g) ) ; } template inline SPROUT_CONSTEXPR typename sprout::fixed::results::shuffle::type random_swap_result_impl_1(Container const& cont, RandomSwapped const& random_swapped) { typedef typename sprout::fixed::results::shuffle::type result_type; return sprout::first(random_swapped)[0] == sprout::first(random_swapped)[1] ? result_type(sprout::deep_copy(cont), sprout::second(random_swapped)) : result_type( sprout::fixed::swap_element( cont, sprout::next(sprout::begin(cont), sprout::first(random_swapped)[0]), sprout::next(sprout::begin(cont), sprout::first(random_swapped)[1]) ), sprout::second(random_swapped) ) ; } template inline SPROUT_CONSTEXPR typename sprout::fixed::results::shuffle::type random_swap_result_impl( Container const& cont, UniformRandomNumberGenerator&& g, typename sprout::container_traits::size_type size ) { return sprout::fixed::detail::random_swap_result_impl_1( cont, sprout::fixed::detail::make_random_swap_result_indexes( size, sprout::forward(g) ) ); } } // namespace detail // // random_swap_result // template inline SPROUT_CONSTEXPR typename sprout::fixed::results::shuffle::type random_swap_result(Container const& cont, UniformRandomNumberGenerator&& g) { return sprout::fixed::detail::random_swap_result_impl( cont, sprout::forward(g), sprout::size(cont) ); } } // namespace fixed using sprout::fixed::random_swap_result; } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIXED_RANDOM_SWAP_RESULT_HPP