Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
CpuCas01: set updateAlgo as initializer
[simgrid.git] / include / simgrid / kernel / resource / Model.hpp
index 1e1bebb..b803d87 100644 (file)
@@ -20,15 +20,17 @@ class XBT_PUBLIC Model {
 public:
   /** @brief Possible update mechanisms */
   enum class UpdateAlgo {
-    Full,        /**< Full update mechanism: the remaining time of every action is recomputed at each step */
-    Lazy,        /**< Lazy update mechanism: only the modified actions get recomputed.
-                         It may be slower than full if your system is tightly coupled to the point where every action
-                         gets recomputed anyway. In that case, you'd better not try to be cleaver with lazy and go for
-                         a simple full update.  */
-    UM_UNDEFINED /**< Mechanism not defined */
+    Full,     /**< Full update mechanism: the remaining time of every action is recomputed at each step */
+    Lazy,     /**< Lazy update mechanism: only the modified actions get recomputed.
+                      It may be slower than full if your system is tightly coupled to the point where every action
+                      gets recomputed anyway. In that case, you'd better not try to be cleaver with lazy and go for
+                      a simple full update.  */
+    Undefined /**< Mechanism not defined */
   };
 
   Model();
+  Model(Model::UpdateAlgo algo);
+
   virtual ~Model();
 
   /** @brief Get the set of [actions](@ref Action) in *ready* state */
@@ -52,10 +54,7 @@ public:
   /** @brief Set the maxmin system of the current Model */
   void set_maxmin_system(lmm::System* system) { maxmin_system_ = system; }
 
-  /**
-   * @brief Get the update mechanism of the current Model
-   * @see e_UM_t
-   */
+  /** @brief Get the update mechanism of the current Model */
   UpdateAlgo getUpdateMechanism() const { return update_mechanism_; }
   void setUpdateMechanism(UpdateAlgo mechanism) { update_mechanism_ = mechanism; }
 
@@ -95,7 +94,7 @@ public:
 
 private:
   lmm::System* maxmin_system_           = nullptr;
-  UpdateAlgo update_mechanism_          = UpdateAlgo::UM_UNDEFINED;
+  UpdateAlgo update_mechanism_          = UpdateAlgo::Undefined;
   Action::StateSet* ready_action_set_   = new Action::StateSet(); /**< Actions in state SURF_ACTION_READY */
   Action::StateSet* running_action_set_ = new Action::StateSet(); /**< Actions in state SURF_ACTION_RUNNING */
   Action::StateSet* failed_action_set_  = new Action::StateSet(); /**< Actions in state SURF_ACTION_FAILED */