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