]> AND Public Git Repository - simgrid.git/blobdiff - src/kernel/lmm/maxmin.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
codefactor: a few more annoying spaces
[simgrid.git] / src / kernel / lmm / maxmin.cpp
index 0eac307a9b3f52154d693db2ca5bba2be7a824af..96cc184dacea7ea9555844aebc44a2a6fff2e3f5 100644 (file)
@@ -137,8 +137,7 @@ void System::var_free(Variable* var)
   XBT_OUT();
 }
 
-System::System(bool selective_update) : cnst_light_tab(NULL),cnst_light_max_size(0),
-   selective_update_active(selective_update)
+System::System(bool selective_update) : selective_update_active(selective_update)
 {
   XBT_DEBUG("Setting selective_update_active flag to %d", selective_update_active);
 
@@ -160,9 +159,6 @@ System::~System()
   while ((cnst = extract_constraint()))
     cnst_free(cnst);
 
-  if(cnst_light_tab)
-    delete[] cnst_light_tab;
-
   xbt_mallocator_free(variable_mallocator_);
   delete modified_set_;
 }
@@ -508,13 +504,9 @@ template <class CnstList> void System::lmm_solve(CnstList& cnst_list)
   double min_usage = -1;
   double min_bound = -1;
 
-  if(cnst_list.size()>cnst_light_max_size){
-    cnst_light_max_size=cnst_list.size()*2;
-    if(cnst_light_tab)
-      delete [] cnst_light_tab;
-    cnst_light_tab=new ConstraintLight[cnst_light_max_size]();
-  }
-
+  XBT_DEBUG("Active constraints : %zu", cnst_list.size());
+  cnst_light_vec.reserve(cnst_list.size());
+  ConstraintLight* cnst_light_tab = cnst_light_vec.data();
   int cnst_light_num              = 0;
 
   for (Constraint& cnst : cnst_list) {
@@ -525,7 +517,7 @@ template <class CnstList> void System::lmm_solve(CnstList& cnst_list)
       continue;
     cnst.usage_ = 0;
     for (Element& elem : cnst.enabled_element_set_) {
-      xbt_assert(elem.variable->sharing_penalty_ > 0);
+      xbt_assert(elem.variable->sharing_penalty_ > 0.0);
       elem.variable->value_ = 0.0;
       if (elem.consumption_weight > 0) {
         if (cnst.sharing_policy_ != s4u::Link::SharingPolicy::FATPIPE)
@@ -555,31 +547,10 @@ template <class CnstList> void System::lmm_solve(CnstList& cnst_list)
     }
   }
 
-#if MAXMIN_PROF==CSV_PROF
-  start_init2 = high_resolution_clock::now();//FABIENDBG
-#endif
-
   saturated_variable_set_update(cnst_light_tab, saturated_constraints, this);
-  
-
-#if MAXMIN_PROF==CSV_PROF
-  high_resolution_clock::time_point start_main = high_resolution_clock::now();//FABIENDBG
-  int NVars=saturated_variable_set.size();//FABIENDBG
-  float init_duration1=duration_cast<duration<float> >(start_init2 - start_init).count();//FABIENDBG
-  float init_duration2=duration_cast<duration<float> >(start_main - start_init2).count();//FABIENDBG
-  float loop_duration;//FABIENDBG
-  float loop_max=0;//FABIENDBG
-  float loop_min=1E9;//FABIENDBG
-  float loop_avg=0;//FABIENDBG
-  float loop_std=0;//FABIENDBG
-  int loop_count=0;//FABIENDBG
-  high_resolution_clock::time_point start_loop,end_loop;//FABIENDBG
-#endif
 
   /* Saturated variables update */
   do {
-    high_resolution_clock::time_point start_loop = high_resolution_clock::now();//FABIENDBG
-
     /* Fix the variables that have to be */
     auto& var_list = saturated_variable_set;
     for (Variable const& var : var_list) {
@@ -698,7 +669,6 @@ template <class CnstList> void System::lmm_solve(CnstList& cnst_list)
     }
 
     saturated_variable_set_update(cnst_light_tab, saturated_constraints, this);
-
   } while (cnst_light_num > 0);
 
   modified_ = false;
@@ -710,7 +680,6 @@ template <class CnstList> void System::lmm_solve(CnstList& cnst_list)
   }
 
   check_concurrency();
-
 }
 
 /** @brief Attribute the value bound to var->bound.
@@ -835,7 +804,6 @@ void System::on_disabled_var(Constraint* cnstr)
 
   // Cannot use foreach loop, because System::enable_var() will modify disabled_element_set.. within the loop
   while (numelem-- && elem) {
-
     Element* nextelem;
     if (elem->disabled_element_set_hook.is_linked()) {
       auto iter = std::next(cnstr->disabled_element_set_.iterator_to(*elem));
@@ -986,6 +954,7 @@ int Constraint::get_variable_amount() const
   return std::count_if(std::begin(enabled_element_set_), std::end(enabled_element_set_),
                        [](const Element& elem) { return elem.consumption_weight > 0; });
 }
-}
-}
-}
+
+} // namespace lmm
+} // namespace kernel
+} // namespace simgrid