Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use std::unique_ptr and remove explicit destructor.
[simgrid.git] / src / mc / Transition.hpp
index d956ac1..17754e6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2015-2019. The SimGrid Team.
+/* Copyright (c) 2015-2021. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -7,6 +7,9 @@
 #ifndef SIMGRID_MC_TRANSITION_HPP
 #define SIMGRID_MC_TRANSITION_HPP
 
+#include "simgrid/forward.h" // aid_t
+#include <string>
+
 namespace simgrid {
 namespace mc {
 
@@ -20,7 +23,7 @@ namespace mc {
  */
 class Transition {
 public:
-  int pid = 0;
+  aid_t aid_ = 0;
 
   /* Which transition was executed for this simcall
    *
@@ -30,10 +33,13 @@ public:
    *
    * * random can produce different values.
    */
-  int argument = 0;
+  int times_considered_ = 0;
+
+  /* Textual representation of the transition, to display backtraces */
+  std::string textual;
 };
 
-}
-}
+} // namespace mc
+} // namespace simgrid
 
 #endif