X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6..f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387:/src/kernel/resource/profile/Profile.hpp?ds=sidebyside diff --git a/src/kernel/resource/profile/Profile.hpp b/src/kernel/resource/profile/Profile.hpp index 5aa60588f4..71a2d8cea4 100644 --- a/src/kernel/resource/profile/Profile.hpp +++ b/src/kernel/resource/profile/Profile.hpp @@ -9,6 +9,7 @@ #include "simgrid/forward.h" #include "src/kernel/resource/profile/DatedValue.hpp" #include "src/kernel/resource/profile/FutureEvtSet.hpp" +#include "src/kernel/resource/profile/StochasticDatedValue.hpp" #include #include @@ -35,9 +36,13 @@ public: static Profile* from_string(const std::string& name, const std::string& input, double periodicity); // private: std::vector event_list; + std::vector stochastic_event_list; private: - FutureEvtSet* fes_ = nullptr; + FutureEvtSet* fes_ = nullptr; + bool stochastic = false; + bool stochasticloop = false; + DatedValue futureDV; }; } // namespace profile