Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add `udpor` namespace
[simgrid.git] / src / mc / udpor_global.cpp
index be3726b..1177ff3 100644 (file)
@@ -9,25 +9,8 @@
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_udpor_global, mc, "udpor_global");
 
-namespace simgrid::mc {
+namespace simgrid::mc::udpor {
 
-EventSet EvtSetTools::makeUnion(const EventSet& s1, const EventSet& s2)
-{
-  EventSet res = s1;
-  for (auto evt : s2)
-    EvtSetTools::pushBack(res, evt);
-  return res;
-}
+// TODO: Implement methods on EventSet as appropriate
 
-void EvtSetTools::pushBack(EventSet& events, UnfoldingEvent* e)
-{
-  if (not EvtSetTools::contains(events, e))
-    events.push_back(e);
-}
-
-bool EvtSetTools::contains(const EventSet& events, const UnfoldingEvent* e)
-{
-  return std::any_of(events.begin(), events.end(), [e](const UnfoldingEvent* evt) { return *evt == *e; });
-}
-
-} // namespace simgrid::mc
+} // namespace simgrid::mc::udpor