2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2017-07-29 05:20:01 +00:00
|
|
|
Copyright (c) 2011-2017 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2014-05-29 16:22:00 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_RESULTS_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_RESULTS_HPP
|
2011-09-03 13:26:26 +00:00
|
|
|
|
2013-02-03 16:10:26 +00:00
|
|
|
#include <type_traits>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
2017-10-09 17:13:04 +00:00
|
|
|
#include <sprout/type_traits/identity.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
2013-11-20 13:04:11 +00:00
|
|
|
namespace results {
|
2011-09-03 13:26:26 +00:00
|
|
|
//
|
|
|
|
// algorithm
|
|
|
|
//
|
|
|
|
template<typename Result>
|
2017-10-09 17:13:04 +00:00
|
|
|
struct algorithm
|
|
|
|
: public sprout::identity<typename sprout::container_construct_traits<Result>::copied_type>
|
|
|
|
{};
|
|
|
|
|
2013-02-03 16:10:26 +00:00
|
|
|
//
|
|
|
|
// shuffle
|
|
|
|
//
|
|
|
|
template<typename Container, typename UniformRandomNumberGenerator>
|
2017-10-09 17:13:04 +00:00
|
|
|
struct shuffle
|
|
|
|
: public sprout::identity<
|
|
|
|
sprout::pair<
|
|
|
|
typename sprout::fixed::results::algorithm<Container>::type,
|
|
|
|
typename std::decay<UniformRandomNumberGenerator>::type
|
|
|
|
>
|
|
|
|
>
|
|
|
|
{};
|
2017-10-10 10:25:53 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// resized_relative
|
|
|
|
//
|
|
|
|
template<typename Result, typename sprout::container_traits<Result>::difference_type RelativeSize>
|
|
|
|
struct resized_relative
|
|
|
|
: public std::decay<
|
|
|
|
typename sprout::container_transform_traits<Result>
|
|
|
|
::template rebind_size<sprout::container_traits<Result>::static_size + RelativeSize>::type
|
|
|
|
>
|
|
|
|
{};
|
|
|
|
|
|
|
|
#if SPROUT_USE_TEMPLATE_ALIASES
|
|
|
|
template<typename Result>
|
|
|
|
using algorithm_t = typename sprout::fixed::results::algorithm<Result>::type;
|
|
|
|
|
|
|
|
template<typename Container, typename UniformRandomNumberGenerator>
|
|
|
|
using shuffle_t = typename sprout::fixed::results::shuffle<Container, UniformRandomNumberGenerator>::type;
|
|
|
|
|
|
|
|
template<typename Result, typename sprout::container_traits<Result>::difference_type RelativeSize>
|
|
|
|
using resized_relative_t = typename sprout::fixed::results::resized_relative<Result, RelativeSize>::type;
|
|
|
|
#endif // #if SPROUT_USE_TEMPLATE_ALIASES
|
2013-11-20 13:04:11 +00:00
|
|
|
} // namespace results
|
2011-09-03 13:26:26 +00:00
|
|
|
} // namespace fixed
|
|
|
|
|
2013-11-20 13:04:11 +00:00
|
|
|
namespace results {
|
|
|
|
using sprout::fixed::results::algorithm;
|
|
|
|
using sprout::fixed::results::shuffle;
|
2017-10-10 10:25:53 +00:00
|
|
|
using sprout::fixed::results::resized_relative;
|
|
|
|
|
|
|
|
#if SPROUT_USE_TEMPLATE_ALIASES
|
|
|
|
using sprout::fixed::results::algorithm_t;
|
|
|
|
using sprout::fixed::results::shuffle_t;
|
|
|
|
using sprout::fixed::results::resized_relative_t;
|
|
|
|
#endif // #if SPROUT_USE_TEMPLATE_ALIASES
|
2013-11-20 13:04:11 +00:00
|
|
|
} // namespace results
|
2011-09-03 13:26:26 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
2014-05-29 16:22:00 +00:00
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_RESULTS_HPP
|