X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f20fe8a11db9e893dbf55a03d4cf6132bdc4c65c..4b0fa756ae6e58a74c374a519389ecb9e8b6a4d9:/include/xbt/utility.hpp diff --git a/include/xbt/utility.hpp b/include/xbt/utility.hpp index 09d8db40bf..be9d287f56 100644 --- a/include/xbt/utility.hpp +++ b/include/xbt/utility.hpp @@ -1,80 +1,52 @@ -/* Copyright (c) 2016. The SimGrid Team. +/* Copyright (c) 2016-2020. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ +#ifndef XBT_UTILITY_HPP +#define XBT_UTILITY_HPP + #include +#include namespace simgrid { namespace xbt { -// integer_sequence and friends from C++14 -// We need them to implement `apply` from C++17. - -/** A compile-time sequence of integers (from C++14) - * - * `index_sequence` represents the sequence `(1,5,7,9)`. - * - * @code{.cpp} - * template - * auto extract_tuple(T&& t, integer_sequence) - * -> decltype(std::make_tuple(std::get(std::forward(t))...)) - * { - * return std::make_tuple(std::get(std::forward(t))...); - * } +/** @brief A hash which works with more stuff * - * int main() - * { - * integer_sequence seq; - * auto a = std::make_tuple(1, 2.0, false, 'a'); - * auto b = extract_tuple(a, seq); - * std::cout << std::get<0>(b) << '\n'; // 2 - * std::cout << std::get<1>(b) << '\n'; // a - * return 0; - * } - * @endcode + * It can hash pairs: the standard hash currently doesn't include this. */ -template -class integer_sequence { - static constexpr std::size_t size() +template class hash : public std::hash { +}; + +template class hash> { +public: + std::size_t operator()(std::pair const& x) const { - return std::tuple_size::value; + hash h1; + hash h2; + return h1(x.first) ^ h2(x.second); } }; -namespace bits { - template - struct make_integer_sequence : - public make_integer_sequence - {}; - template - struct make_integer_sequence { - typedef integer_sequence type; - }; -} - -/** A compile-time sequence of integers of the form `(0,1,2,3,...,N-1)` (from C++14) */ -template -using make_integer_sequence = typename simgrid::xbt::bits::make_integer_sequence::type; - -/** A compile-time sequence of indices (from C++14) */ -template -using index_sequence = integer_sequence; - -/** A compile-time sequence of indices of the form `(0,1,2,3,...,N-1)` (from C++14) */ -template -using make_index_sequence = make_integer_sequence; - -/** Convert a type parameter pack into a index_sequence (from C++14) */ -template -using index_sequence_for = make_index_sequence; +/** @brief Comparator class for using with std::priority_queue or boost::heap. + * + * Compare two std::pair by their first element (of type double), and return true when the first is greater than the + * second. Useful to have priority queues with the smallest element on top. + */ +template class HeapComparator { +public: + bool operator()(const Pair& a, const Pair& b) const { return a.first > b.first; } +}; -static_assert(std::is_same< make_index_sequence<0>, index_sequence<> >::value, "seq0"); -static_assert(std::is_same< make_index_sequence<1>, index_sequence<0> >::value, "seq1"); -static_assert(std::is_same< make_index_sequence<2>, index_sequence<0, 1> >::value, "seq2"); -static_assert(std::is_same< make_index_sequence<3>, index_sequence<0, 1, 2> >::value, "seq3"); -static_assert(std::is_same< index_sequence_for, make_index_sequence<3> >::value, "seq4"); +/** @brief Erase an element given by reference from a boost::intrusive::list. + */ +template inline void intrusive_erase(List& list, Elem& elem) +{ + list.erase(list.iterator_to(elem)); +} } } +#endif