policies.hpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. // boost heap
  2. //
  3. // Copyright (C) 2010-2011 Tim Blechmann
  4. //
  5. // Distributed under the Boost Software License, Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_HEAP_POLICIES_HPP
  9. #define BOOST_HEAP_POLICIES_HPP
  10. #include <boost/parameter.hpp>
  11. #include <boost/mpl/bool.hpp>
  12. #include <boost/mpl/int.hpp>
  13. #include <boost/mpl/void.hpp>
  14. #include <boost/concept_check.hpp>
  15. #ifdef BOOST_HAS_PRAGMA_ONCE
  16. #pragma once
  17. #endif
  18. namespace boost {
  19. namespace heap {
  20. #ifndef BOOST_DOXYGEN_INVOKED
  21. BOOST_PARAMETER_TEMPLATE_KEYWORD(allocator)
  22. BOOST_PARAMETER_TEMPLATE_KEYWORD(compare)
  23. namespace tag { struct stable; }
  24. template <bool T>
  25. struct stable:
  26. boost::parameter::template_keyword<tag::stable, boost::mpl::bool_<T> >
  27. {};
  28. namespace tag { struct mutable_; }
  29. template <bool T>
  30. struct mutable_:
  31. boost::parameter::template_keyword<tag::mutable_, boost::mpl::bool_<T> >
  32. {};
  33. namespace tag { struct constant_time_size; }
  34. template <bool T>
  35. struct constant_time_size:
  36. boost::parameter::template_keyword<tag::constant_time_size, boost::mpl::bool_<T> >
  37. {};
  38. namespace tag { struct store_parent_pointer; }
  39. template <bool T>
  40. struct store_parent_pointer:
  41. boost::parameter::template_keyword<tag::store_parent_pointer, boost::mpl::bool_<T> >
  42. {};
  43. namespace tag { struct arity; }
  44. template <unsigned int T>
  45. struct arity:
  46. boost::parameter::template_keyword<tag::arity, boost::mpl::int_<T> >
  47. {};
  48. namespace tag { struct objects_per_page; }
  49. template <unsigned int T>
  50. struct objects_per_page:
  51. boost::parameter::template_keyword<tag::objects_per_page, boost::mpl::int_<T> >
  52. {};
  53. BOOST_PARAMETER_TEMPLATE_KEYWORD(stability_counter_type)
  54. namespace detail {
  55. namespace mpl = boost::mpl;
  56. template <typename bound_args, typename tag_type>
  57. struct has_arg
  58. {
  59. typedef typename boost::parameter::binding<bound_args, tag_type, mpl::void_>::type type;
  60. static const bool value = mpl::is_not_void_<type>::type::value;
  61. };
  62. template <typename bound_args>
  63. struct extract_stable
  64. {
  65. static const bool has_stable = has_arg<bound_args, tag::stable>::value;
  66. typedef typename mpl::if_c<has_stable,
  67. typename has_arg<bound_args, tag::stable>::type,
  68. mpl::bool_<false>
  69. >::type stable_t;
  70. static const bool value = stable_t::value;
  71. };
  72. template <typename bound_args>
  73. struct extract_mutable
  74. {
  75. static const bool has_mutable = has_arg<bound_args, tag::mutable_>::value;
  76. typedef typename mpl::if_c<has_mutable,
  77. typename has_arg<bound_args, tag::mutable_>::type,
  78. mpl::bool_<false>
  79. >::type mutable_t;
  80. static const bool value = mutable_t::value;
  81. };
  82. }
  83. #else
  84. /** \brief Specifies the predicate for the heap order
  85. */
  86. template <typename T>
  87. struct compare{};
  88. /** \brief Configure heap as mutable
  89. *
  90. * Certain heaps need to be configured specifically do be mutable.
  91. *
  92. * */
  93. template <bool T>
  94. struct mutable_{};
  95. /** \brief Specifies allocator for the internal memory management
  96. */
  97. template <typename T>
  98. struct allocator{};
  99. /** \brief Configure a heap as \b stable
  100. *
  101. * A priority queue is stable, if elements with the same priority are popped from the heap, in the same order as
  102. * they are inserted.
  103. * */
  104. template <bool T>
  105. struct stable{};
  106. /** \brief Specifies the type for stability counter
  107. *
  108. * */
  109. template <typename IntType>
  110. struct stability_counter_type{};
  111. /** \brief Configures complexity of <tt> size() </tt>
  112. *
  113. * Specifies, whether size() should have linear or constant complexity.
  114. * */
  115. template <bool T>
  116. struct constant_time_size{};
  117. /** \brief Store parent pointer in heap node.
  118. *
  119. * Maintaining a parent pointer adds some maintenance and size overhead, but iterating a heap is more efficient.
  120. * */
  121. template <bool T>
  122. struct store_parent_pointer{};
  123. /** \brief Specify arity.
  124. *
  125. * Specifies the arity of a D-ary heap
  126. * */
  127. template <unsigned int T>
  128. struct arity{};
  129. #endif
  130. } /* namespace heap */
  131. } /* namespace boost */
  132. #endif /* BOOST_HEAP_POLICIES_HPP */