X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/611d822b02f836d7abe031cced6adc4281ef4356..e93b242ba3891342ca1957d4c767aefd26b066a1:/src/mc/Transition.hpp diff --git a/src/mc/Transition.hpp b/src/mc/Transition.hpp index 1c3bf93b37..17754e6cbe 100644 --- a/src/mc/Transition.hpp +++ b/src/mc/Transition.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2018. 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 + namespace simgrid { namespace mc { @@ -18,8 +21,9 @@ namespace mc { * in things like waitany and for associating a given value of MC_random() * calls. */ -struct Transition { - int pid = 0; +class Transition { +public: + aid_t aid_ = 0; /* Which transition was executed for this simcall * @@ -29,10 +33,13 @@ struct Transition { * * * 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