2011-12-22 12:52:59 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIT_SHUFFLE_RESULT_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIT_SHUFFLE_RESULT_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/tuple/tuple/tuple.hpp>
|
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2011-12-22 12:52:59 +00:00
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
#include <sprout/algorithm/fixed/shuffle_result.hpp>
|
|
|
|
#include <sprout/algorithm/fit/result_of.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/sub_array/sub_array.hpp>
|
|
|
|
#include <sprout/sub_array/sub.hpp>
|
2011-12-22 12:52:59 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fit {
|
|
|
|
namespace detail {
|
|
|
|
template<typename Container, typename UniformRandomNumberGenerator, typename Shuffled>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<
|
2011-12-22 12:52:59 +00:00
|
|
|
typename sprout::fit::result_of::algorithm<Container>::type,
|
|
|
|
typename std::decay<UniformRandomNumberGenerator>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>
|
|
|
|
shuffle_result_impl_1(
|
2011-12-22 12:52:59 +00:00
|
|
|
Shuffled const& shuffled,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Container>::difference_type offset
|
2011-12-22 12:52:59 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::tuples::tuple<
|
|
|
|
typename sprout::fit::result_of::algorithm<Container>::type,
|
|
|
|
typename std::decay<UniformRandomNumberGenerator>::type
|
|
|
|
> result_type;
|
|
|
|
return result_type(
|
|
|
|
sprout::sub_copy(
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::get_internal(sprout::tuples::get<0>(shuffled)),
|
2011-12-22 12:52:59 +00:00
|
|
|
offset,
|
|
|
|
offset + sprout::size(sprout::tuples::get<0>(shuffled))
|
|
|
|
),
|
|
|
|
sprout::tuples::get<1>(shuffled)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename Container, typename UniformRandomNumberGenerator>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<
|
2011-12-22 12:52:59 +00:00
|
|
|
typename sprout::fit::result_of::algorithm<Container>::type,
|
|
|
|
typename std::decay<UniformRandomNumberGenerator>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>
|
|
|
|
shuffle_result_impl(
|
|
|
|
Container const& cont, UniformRandomNumberGenerator&& g,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Container>::difference_type offset
|
2011-12-22 12:52:59 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fit::detail::shuffle_result_impl_1<Container, UniformRandomNumberGenerator>(
|
|
|
|
sprout::fixed::shuffle_result(cont, sprout::forward<UniformRandomNumberGenerator>(g)),
|
|
|
|
offset
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// shuffle_result
|
|
|
|
//
|
|
|
|
template<typename Container, typename UniformRandomNumberGenerator>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<
|
2011-12-22 12:52:59 +00:00
|
|
|
typename sprout::fit::result_of::algorithm<Container>::type,
|
|
|
|
typename std::decay<UniformRandomNumberGenerator>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>
|
|
|
|
shuffle_result(Container const& cont, UniformRandomNumberGenerator&& g) {
|
2011-12-22 12:52:59 +00:00
|
|
|
return sprout::fit::detail::shuffle_result_impl(
|
2012-09-29 08:10:46 +00:00
|
|
|
cont, sprout::forward<UniformRandomNumberGenerator>(g),
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::internal_begin_offset(cont)
|
2011-12-22 12:52:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace fit
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIT_SHUFFLE_RESULT_HPP
|