2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 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)
|
|
|
|
=============================================================================*/
|
2011-09-03 13:26:26 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIT_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIT_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/algorithm/fit/copy.hpp>
|
|
|
|
#include <sprout/algorithm/fit/copy_n.hpp>
|
|
|
|
#include <sprout/algorithm/fit/copy_if.hpp>
|
|
|
|
#include <sprout/algorithm/fit/copy_backward.hpp>
|
|
|
|
#include <sprout/algorithm/fit/transform.hpp>
|
|
|
|
#include <sprout/algorithm/fit/replace.hpp>
|
|
|
|
#include <sprout/algorithm/fit/replace_if.hpp>
|
|
|
|
#include <sprout/algorithm/fit/replace_copy.hpp>
|
|
|
|
#include <sprout/algorithm/fit/replace_copy_if.hpp>
|
|
|
|
#include <sprout/algorithm/fit/fill.hpp>
|
|
|
|
#include <sprout/algorithm/fit/fill_n.hpp>
|
|
|
|
#include <sprout/algorithm/fit/generate.hpp>
|
|
|
|
#include <sprout/algorithm/fit/generate_n.hpp>
|
2012-09-21 06:43:30 +00:00
|
|
|
#include <sprout/algorithm/fit/unfold.hpp>
|
|
|
|
#include <sprout/algorithm/fit/unfold_n.hpp>
|
2012-09-28 04:15:17 +00:00
|
|
|
#include <sprout/algorithm/fit/recurrence.hpp>
|
|
|
|
#include <sprout/algorithm/fit/recurrence_n.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fit/remove.hpp>
|
|
|
|
#include <sprout/algorithm/fit/remove_if.hpp>
|
|
|
|
#include <sprout/algorithm/fit/remove_copy.hpp>
|
|
|
|
#include <sprout/algorithm/fit/remove_copy_if.hpp>
|
|
|
|
#include <sprout/algorithm/fit/unique.hpp>
|
|
|
|
#include <sprout/algorithm/fit/unique_copy.hpp>
|
|
|
|
#include <sprout/algorithm/fit/reverse.hpp>
|
|
|
|
#include <sprout/algorithm/fit/reverse_copy.hpp>
|
|
|
|
#include <sprout/algorithm/fit/rotate.hpp>
|
|
|
|
#include <sprout/algorithm/fit/rotate_copy.hpp>
|
2011-10-19 13:47:59 +00:00
|
|
|
#include <sprout/algorithm/fit/shuffle.hpp>
|
2011-12-22 12:52:59 +00:00
|
|
|
#include <sprout/algorithm/fit/shuffle_result.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fit/partition.hpp>
|
|
|
|
#include <sprout/algorithm/fit/partition_copy.hpp>
|
|
|
|
#include <sprout/algorithm/fit/stable_partition.hpp>
|
|
|
|
#include <sprout/algorithm/fit/stable_partition_copy.hpp>
|
|
|
|
#include <sprout/algorithm/fit/sort.hpp>
|
|
|
|
#include <sprout/algorithm/fit/stable_sort.hpp>
|
|
|
|
#include <sprout/algorithm/fit/partial_sort.hpp>
|
|
|
|
#include <sprout/algorithm/fit/nth_element.hpp>
|
|
|
|
#include <sprout/algorithm/fit/merge.hpp>
|
|
|
|
#include <sprout/algorithm/fit/inplace_merge.hpp>
|
|
|
|
#include <sprout/algorithm/fit/set_union.hpp>
|
|
|
|
#include <sprout/algorithm/fit/set_intersection.hpp>
|
|
|
|
#include <sprout/algorithm/fit/set_difference.hpp>
|
|
|
|
#include <sprout/algorithm/fit/set_symmetric_difference.hpp>
|
|
|
|
#include <sprout/algorithm/fit/push_heap.hpp>
|
|
|
|
#include <sprout/algorithm/fit/pop_heap.hpp>
|
|
|
|
#include <sprout/algorithm/fit/make_heap.hpp>
|
|
|
|
#include <sprout/algorithm/fit/make_partial_heap.hpp>
|
|
|
|
#include <sprout/algorithm/fit/sort_heap.hpp>
|
2012-07-25 05:27:01 +00:00
|
|
|
#include <sprout/algorithm/fit/next_permutation.hpp>
|
|
|
|
#include <sprout/algorithm/fit/prev_permutation.hpp>
|
2012-10-13 13:11:32 +00:00
|
|
|
#include <sprout/algorithm/fit/copy_while.hpp>
|
|
|
|
#include <sprout/algorithm/fit/copy_until.hpp>
|
2012-10-13 12:06:32 +00:00
|
|
|
#include <sprout/algorithm/fit/clamp_range.hpp>
|
2013-01-20 11:49:37 +00:00
|
|
|
#include <sprout/algorithm/fit/clamp_range_copy.hpp>
|
2013-02-26 01:43:27 +00:00
|
|
|
#include <sprout/algorithm/fit/swap_element.hpp>
|
|
|
|
#include <sprout/algorithm/fit/swap_element_copy.hpp>
|
2012-07-25 14:10:01 +00:00
|
|
|
#include <sprout/algorithm/fit/random_swap.hpp>
|
|
|
|
#include <sprout/algorithm/fit/random_swap_result.hpp>
|
2011-12-22 12:52:59 +00:00
|
|
|
#include <sprout/algorithm/fit/bogo_sort.hpp>
|
|
|
|
#include <sprout/algorithm/fit/bogo_sort_result.hpp>
|
2012-07-25 14:10:01 +00:00
|
|
|
#include <sprout/algorithm/fit/bozo_sort.hpp>
|
|
|
|
#include <sprout/algorithm/fit/bozo_sort_result.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIT_HPP
|