X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..5c1ff1a0b5e8c17d3445ec743ad91e0ffd7dbe5f:/src/mc/Transition.hpp diff --git a/src/mc/Transition.hpp b/src/mc/Transition.hpp index 7c2e93f473..1e9a58a026 100644 --- a/src/mc/Transition.hpp +++ b/src/mc/Transition.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2020. 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,8 @@ #ifndef SIMGRID_MC_TRANSITION_HPP #define SIMGRID_MC_TRANSITION_HPP +#include + namespace simgrid { namespace mc { @@ -30,7 +32,10 @@ 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