X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0d667daf38b65d998e61054cb52211c8e4d7283d..6cf83e2b8b91315daaf30dc22f610af68c6d672c:/include/xbt/utility.hpp diff --git a/include/xbt/utility.hpp b/include/xbt/utility.hpp index 095130f8a1..2a2c38260e 100644 --- a/include/xbt/utility.hpp +++ b/include/xbt/utility.hpp @@ -1,14 +1,34 @@ -/* Copyright (c) 2016. The SimGrid Team. +/* Copyright (c) 2016-2019. 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 namespace simgrid { namespace xbt { +/** @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; } +}; + +/** @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)); +} + // integer_sequence and friends from C++14 // We need them to implement `apply` from C++17. @@ -37,10 +57,6 @@ namespace xbt { */ template class integer_sequence { - static constexpr std::size_t size() - { - return std::tuple_size::value; - } }; namespace bits { @@ -78,3 +94,4 @@ static_assert(std::is_same< index_sequence_for, make_index_seq } } +#endif