2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 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)
|
|
|
|
=============================================================================*/
|
2011-09-03 13:26:26 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|
|
|
|
|
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>
|
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>
|
|
|
|
struct algorithm {
|
|
|
|
public:
|
2012-03-31 07:24:13 +00:00
|
|
|
typedef typename sprout::container_construct_traits<Result>::copied_type type;
|
2011-09-03 13:26:26 +00:00
|
|
|
};
|
2013-02-03 16:10:26 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// shuffle
|
|
|
|
//
|
|
|
|
template<typename Container, typename UniformRandomNumberGenerator>
|
|
|
|
struct shuffle {
|
|
|
|
public:
|
|
|
|
typedef sprout::pair<
|
2013-11-20 13:04:11 +00:00
|
|
|
typename sprout::fixed::results::algorithm<Container>::type,
|
2013-02-03 16:10:26 +00:00
|
|
|
typename std::decay<UniformRandomNumberGenerator>::type
|
|
|
|
> type;
|
|
|
|
};
|
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;
|
|
|
|
} // namespace results
|
2011-09-03 13:26:26 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_RESULT_OF_HPP
|