#ifndef SPROUT_ALGORITHM_FIT_RANDOM_SWAP_HPP #define SPROUT_ALGORITHM_FIT_RANDOM_SWAP_HPP #include #include #include #include #include #include #include namespace sprout { namespace fit { namespace detail { template inline SPROUT_CONSTEXPR typename sprout::fit::result_of::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(g))), offset, offset + sprout::size(cont) ); } } // namespace detail // // random_swap // template inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm::type random_swap(Container const& cont, UniformRandomNumberGenerator&& g) { return sprout::fit::detail::random_swap_impl( cont, sprout::forward(g), sprout::internal_begin_offset(cont) ); } } // namespace fit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIT_RANDOM_SWAP_HPP