Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / src / kernel / resource / profile / Profile.hpp
index 3c173db..8cd2754 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2004-2022. 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. */
@@ -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 <queue>
 #include <vector>
@@ -31,13 +32,20 @@ public:
   Event* schedule(FutureEvtSet* fes, resource::Resource* resource);
   DatedValue next(Event* event);
 
+  const std::vector<DatedValue>& get_event_list() const { return event_list; }
+  const std::vector<StochasticDatedValue>& get_stochastic_event_list() const { return stochastic_event_list; }
+
   static Profile* from_file(const std::string& path);
   static Profile* from_string(const std::string& name, const std::string& input, double periodicity);
-  // private:
-  std::vector<DatedValue> event_list;
 
 private:
-  FutureEvtSet* fes_ = nullptr;
+  std::vector<DatedValue> event_list;
+  std::vector<StochasticDatedValue> stochastic_event_list;
+
+  FutureEvtSet* fes_  = nullptr;
+  bool stochastic     = false;
+  bool stochasticloop = false;
+  DatedValue futureDV;
 };
 
 } // namespace profile