Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Allow to disable the TCP windowing modeling by setting network/TCP-gamma to 0
[simgrid.git] / src / mc / udpor_global.hpp
index 89d4c8f9a38e5e872170bb0ae6f14ceb8789e510..1b3e90ea78b93dd09a8e3e71123e4f531e217303 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-2023. 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. */
@@ -8,9 +8,11 @@
 
 #include <iostream>
 #include <queue>
+#include <string_view>
 
-namespace simgrid {
-namespace mc {
+/* TODO: many method declared in this module are not implemented */
+
+namespace simgrid::mc {
 
 class UnfoldingEvent;
 using EventSet = std::deque<UnfoldingEvent*>;
@@ -74,7 +76,6 @@ public:
   bool isImmediateConflict1(UnfoldingEvent* evt, UnfoldingEvent* otherEvt) const;
 
   bool conflictWithConfig(UnfoldingEvent* event, Configuration const& config) const;
-  /* TODO: implement */
   bool operator==(const UnfoldingEvent&) const { return false; };
   void print() const;
 
@@ -82,7 +83,7 @@ public:
   inline void set_state_id(int sid) { state_id = sid; }
 
   inline std::string get_transition_tag() const { return transition_tag; }
-  inline void set_transition_tag(std::string const& tr_tag) { transition_tag = tr_tag; }
+  inline void set_transition_tag(std::string_view tr_tag) { transition_tag = tr_tag; }
 
 private:
   EventSet causes; // used to store directed ancestors of event e
@@ -93,6 +94,5 @@ private:
   bool transition_is_ISend(const UnfoldingEvent* testedEvt, const UnfoldingEvent* SdRcEvt) const;
   bool check_tr_concern_same_comm(bool& chk1, bool& chk2, UnfoldingEvent* evt1, UnfoldingEvent* evt2) const;
 };
-} // namespace mc
-} // namespace simgrid
+} // namespace simgrid::mc
 #endif