/*============================================================================= Copyright (c) 2011-2015 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_FIT_RANDOM_SWAP_HPP #define SPROUT_ALGORITHM_FIT_RANDOM_SWAP_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace fit { namespace detail { template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type random_swap_impl( Container const& cont, UniformRandomNumberGenerator&& g, typename sprout::container_traits::difference_type offset ) { return sprout::sub_copy( sprout::get_internal(sprout::fixed::random_swap(cont, SPROUT_FORWARD(UniformRandomNumberGenerator, g))), offset, offset + sprout::size(cont) ); } } // namespace detail // // random_swap // template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type random_swap(Container const& cont, UniformRandomNumberGenerator&& g) { return sprout::fit::detail::random_swap_impl( cont, SPROUT_FORWARD(UniformRandomNumberGenerator, g), sprout::internal_begin_offset(cont) ); } } // namespace fit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIT_RANDOM_SWAP_HPP