X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0d667daf38b65d998e61054cb52211c8e4d7283d..255192ad7c234ae1f6631d080b0d2d9cfc60ec1b:/include/xbt/utility.hpp diff --git a/include/xbt/utility.hpp b/include/xbt/utility.hpp index 095130f8a1..c2315dbbf4 100644 --- a/include/xbt/utility.hpp +++ b/include/xbt/utility.hpp @@ -1,14 +1,34 @@ -/* Copyright (c) 2016. The SimGrid Team. +/* Copyright (c) 2016-2017. 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. @@ -78,3 +98,4 @@ static_assert(std::is_same< index_sequence_for, make_index_seq } } +#endif