Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add tests for the Unfolding object
[simgrid.git] / src / mc / explo / udpor / EventSet.hpp
1 /* Copyright (c) 2007-2023. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_MC_UDPOR_EVENT_SET_HPP
7 #define SIMGRID_MC_UDPOR_EVENT_SET_HPP
8
9 #include "src/mc/explo/udpor/udpor_forward.hpp"
10
11 #include <cstddef>
12 #include <initializer_list>
13 #include <unordered_set>
14
15 namespace simgrid::mc::udpor {
16
17 class EventSet {
18 private:
19   std::unordered_set<UnfoldingEvent*> events_;
20
21 public:
22   EventSet()                           = default;
23   EventSet(const EventSet&)            = default;
24   EventSet& operator=(const EventSet&) = default;
25   EventSet& operator=(EventSet&&)      = default;
26   EventSet(EventSet&&)                 = default;
27   explicit EventSet(std::unordered_set<UnfoldingEvent*>&& raw_events) : events_(raw_events) {}
28   explicit EventSet(std::initializer_list<UnfoldingEvent*> event_list) : events_(std::move(event_list)) {}
29
30   inline auto begin() const { return this->events_.begin(); }
31   inline auto end() const { return this->events_.end(); }
32
33   void remove(UnfoldingEvent*);
34   void subtract(const EventSet&);
35   void subtract(const Configuration&);
36   EventSet subtracting(UnfoldingEvent*) const;
37   EventSet subtracting(const EventSet&) const;
38   EventSet subtracting(const Configuration&) const;
39
40   void insert(UnfoldingEvent*);
41   void form_union(const EventSet&);
42   void form_union(const Configuration&);
43   EventSet make_union(UnfoldingEvent*) const;
44   EventSet make_union(const EventSet&) const;
45   EventSet make_union(const Configuration&) const;
46
47   size_t size() const;
48   bool empty() const;
49   bool contains(UnfoldingEvent*) const;
50   bool is_subset_of(const EventSet&) const;
51
52   bool operator==(const EventSet& other) const { return this->events_ == other.events_; }
53   bool operator!=(const EventSet& other) const { return this->events_ != other.events_; }
54 };
55
56 } // namespace simgrid::mc::udpor
57 #endif