Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use simgrid::xbt::intrusive_erase().
[simgrid.git] / src / kernel / lmm / maxmin.cpp
1 /* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 /* \file callbacks.h */
7
8 #include "src/kernel/lmm/maxmin.hpp"
9 #include "xbt/backtrace.hpp"
10 #include "xbt/log.h"
11 #include "xbt/mallocator.h"
12 #include "xbt/sysdep.h"
13 #include "xbt/utility.hpp"
14 #include <algorithm>
15 #include <cmath>
16 #include <cstdlib>
17 #include <cxxabi.h>
18 #include <limits>
19 #include <vector>
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_maxmin, surf, "Logging specific to SURF (maxmin)");
22
23 double sg_maxmin_precision = 0.00001; /* Change this with --cfg=maxmin/precision:VALUE */
24 double sg_surf_precision   = 0.00001; /* Change this with --cfg=surf/precision:VALUE */
25 int sg_concurrency_limit   = -1;      /* Change this with --cfg=maxmin/concurrency-limit:VALUE */
26
27 namespace simgrid {
28 namespace kernel {
29 namespace lmm {
30
31 typedef std::vector<int> dyn_light_t;
32
33 int s_lmm_variable_t::Global_debug_id   = 1;
34 int s_lmm_constraint_t::Global_debug_id = 1;
35
36 int s_lmm_element_t::get_concurrency() const
37 {
38   // Ignore element with weight less than one (e.g. cross-traffic)
39   return (consumption_weight >= 1) ? 1 : 0;
40   // There are other alternatives, but they will change the behaviour of the model..
41   // So do not use it unless you want to make a new model.
42   // If you do, remember to change the variables concurrency share to reflect it.
43   // Potential examples are:
44   // return (elem->weight>0)?1:0;//Include element as soon  as weight is non-zero
45   // return (int)ceil(elem->weight);//Include element as the rounded-up integer value of the element weight
46 }
47
48 void s_lmm_element_t::decrease_concurrency()
49 {
50   xbt_assert(constraint->concurrency_current >= get_concurrency());
51   constraint->concurrency_current -= get_concurrency();
52 }
53
54 void s_lmm_element_t::increase_concurrency()
55 {
56   constraint->concurrency_current += get_concurrency();
57
58   if (constraint->concurrency_current > constraint->concurrency_maximum)
59     constraint->concurrency_maximum = constraint->concurrency_current;
60
61   xbt_assert(constraint->get_concurrency_limit() < 0 ||
62                  constraint->concurrency_current <= constraint->get_concurrency_limit(),
63              "Concurrency limit overflow!");
64 }
65
66 void s_lmm_system_t::check_concurrency() const
67 {
68   // These checks are very expensive, so do them only if we want to debug SURF LMM
69   if (not XBT_LOG_ISENABLED(surf_maxmin, xbt_log_priority_debug))
70     return;
71
72   for (s_lmm_constraint_t const& cnst : constraint_set) {
73     int concurrency       = 0;
74     for (s_lmm_element_t const& elem : cnst.enabled_element_set) {
75       xbt_assert(elem.variable->sharing_weight > 0);
76       concurrency += elem.get_concurrency();
77     }
78
79     for (s_lmm_element_t const& elem : cnst.disabled_element_set) {
80       // We should have staged variables only if concurrency is reached in some constraint
81       xbt_assert(cnst.get_concurrency_limit() < 0 || elem.variable->staged_weight == 0 ||
82                      elem.variable->get_min_concurrency_slack() < elem.variable->concurrency_share,
83                  "should not have staged variable!");
84     }
85
86     xbt_assert(cnst.get_concurrency_limit() < 0 || cnst.get_concurrency_limit() >= concurrency,
87                "concurrency check failed!");
88     xbt_assert(cnst.concurrency_current == concurrency, "concurrency_current is out-of-date!");
89   }
90
91   // Check that for each variable, all corresponding elements are in the same state (i.e. same element sets)
92   for (s_lmm_variable_t const& var : variable_set) {
93     if (var.cnsts.empty())
94       continue;
95
96     const s_lmm_element_t& elem = var.cnsts[0];
97     int belong_to_enabled       = elem.enabled_element_set_hook.is_linked();
98     int belong_to_disabled      = elem.disabled_element_set_hook.is_linked();
99     int belong_to_active        = elem.active_element_set_hook.is_linked();
100
101     for (s_lmm_element_t const& elem2 : var.cnsts) {
102       xbt_assert(belong_to_enabled == elem2.enabled_element_set_hook.is_linked(),
103                  "Variable inconsistency (1): enabled_element_set");
104       xbt_assert(belong_to_disabled == elem2.disabled_element_set_hook.is_linked(),
105                  "Variable inconsistency (2): disabled_element_set");
106       xbt_assert(belong_to_active == elem2.active_element_set_hook.is_linked(),
107                  "Variable inconsistency (3): active_element_set");
108     }
109   }
110 }
111
112 void s_lmm_system_t::var_free(lmm_variable_t var)
113 {
114   XBT_IN("(sys=%p, var=%p)", this, var);
115   modified = true;
116
117   // TODOLATER Can do better than that by leaving only the variable in only one enabled_element_set, call
118   // update_modified_set, and then remove it..
119   if (not var->cnsts.empty())
120     update_modified_set(var->cnsts[0].constraint);
121
122   for (s_lmm_element_t& elem : var->cnsts) {
123     if (var->sharing_weight > 0)
124       elem.decrease_concurrency();
125     if (elem.enabled_element_set_hook.is_linked())
126       simgrid::xbt::intrusive_erase(elem.constraint->enabled_element_set, elem);
127     if (elem.disabled_element_set_hook.is_linked())
128       simgrid::xbt::intrusive_erase(elem.constraint->disabled_element_set, elem);
129     if (elem.active_element_set_hook.is_linked())
130       simgrid::xbt::intrusive_erase(elem.constraint->active_element_set, elem);
131     int nelements = elem.constraint->enabled_element_set.size() + elem.constraint->disabled_element_set.size();
132     if (nelements == 0)
133       make_constraint_inactive(elem.constraint);
134     else
135       on_disabled_var(elem.constraint);
136   }
137
138   var->cnsts.clear();
139
140   check_concurrency();
141
142   xbt_mallocator_release(variable_mallocator, var);
143   XBT_OUT();
144 }
145
146 s_lmm_system_t::s_lmm_system_t(bool selective_update) : selective_update_active(selective_update)
147 {
148   modified        = false;
149   visited_counter = 1;
150
151   XBT_DEBUG("Setting selective_update_active flag to %d", selective_update_active);
152
153   keep_track          = nullptr;
154   variable_mallocator = xbt_mallocator_new(65536, s_lmm_system_t::variable_mallocator_new_f,
155                                            s_lmm_system_t::variable_mallocator_free_f, nullptr);
156   solve_fun = &lmm_solve;
157 }
158
159 s_lmm_system_t::~s_lmm_system_t()
160 {
161   lmm_variable_t var;
162   lmm_constraint_t cnst;
163
164   while ((var = extract_variable())) {
165     auto demangled = simgrid::xbt::demangle(typeid(*var->id).name());
166     XBT_WARN("Probable bug: a %s variable (#%d) not removed before the LMM system destruction.", demangled.get(),
167              var->id_int);
168     var_free(var);
169   }
170   while ((cnst = extract_constraint()))
171     cnst_free(cnst);
172
173   xbt_mallocator_free(variable_mallocator);
174 }
175
176 void s_lmm_system_t::cnst_free(lmm_constraint_t cnst)
177 {
178   make_constraint_inactive(cnst);
179   delete cnst;
180 }
181
182 s_lmm_constraint_t::s_lmm_constraint_t(void* id_value, double bound_value) : bound(bound_value), id(id_value)
183 {
184   id_int = Global_debug_id++;
185
186   remaining           = 0.0;
187   usage               = 0.0;
188   concurrency_limit   = sg_concurrency_limit;
189   concurrency_current = 0;
190   concurrency_maximum = 0;
191   sharing_policy      = 1; /* FIXME: don't hardcode the value */
192
193   lambda     = 0.0;
194   new_lambda = 0.0;
195   cnst_light = nullptr;
196 }
197
198 lmm_constraint_t s_lmm_system_t::constraint_new(void* id, double bound_value)
199 {
200   lmm_constraint_t cnst = new s_lmm_constraint_t(id, bound_value);
201   insert_constraint(cnst);
202   return cnst;
203 }
204
205 void* s_lmm_system_t::variable_mallocator_new_f()
206 {
207   return new s_lmm_variable_t;
208 }
209
210 void s_lmm_system_t::variable_mallocator_free_f(void* var)
211 {
212   delete static_cast<lmm_variable_t>(var);
213 }
214
215 lmm_variable_t s_lmm_system_t::variable_new(simgrid::surf::Action* id, double sharing_weight, double bound,
216                                             int number_of_constraints)
217 {
218   XBT_IN("(sys=%p, id=%p, weight=%f, bound=%f, num_cons =%d)", this, id, sharing_weight, bound, number_of_constraints);
219
220   lmm_variable_t var = static_cast<lmm_variable_t>(xbt_mallocator_get(variable_mallocator));
221   var->initialize(id, sharing_weight, bound, number_of_constraints, visited_counter - 1);
222   if (sharing_weight)
223     variable_set.push_front(*var);
224   else
225     variable_set.push_back(*var);
226
227   XBT_OUT(" returns %p", var);
228   return var;
229 }
230
231 void s_lmm_system_t::variable_free(lmm_variable_t var)
232 {
233   remove_variable(var);
234   var_free(var);
235 }
236
237 void s_lmm_system_t::expand(lmm_constraint_t cnst, lmm_variable_t var, double consumption_weight)
238 {
239   modified = true;
240
241   // Check if this variable already has an active element in this constraint
242   // If it does, substract it from the required slack
243   int current_share = 0;
244   if (var->concurrency_share > 1) {
245     for (s_lmm_element_t& elem : var->cnsts) {
246       if (elem.constraint == cnst && elem.enabled_element_set_hook.is_linked())
247         current_share += elem.get_concurrency();
248     }
249   }
250
251   // Check if we need to disable the variable
252   if (var->sharing_weight > 0 && var->concurrency_share - current_share > cnst->get_concurrency_slack()) {
253     double weight = var->sharing_weight;
254     disable_var(var);
255     for (s_lmm_element_t const& elem : var->cnsts)
256       on_disabled_var(elem.constraint);
257     consumption_weight = 0;
258     var->staged_weight = weight;
259     xbt_assert(not var->sharing_weight);
260   }
261
262   xbt_assert(var->cnsts.size() < var->cnsts.capacity(), "Too much constraints");
263
264   var->cnsts.resize(var->cnsts.size() + 1);
265   s_lmm_element_t& elem = var->cnsts.back();
266
267   elem.consumption_weight = consumption_weight;
268   elem.constraint         = cnst;
269   elem.variable           = var;
270
271   if (var->sharing_weight) {
272     elem.constraint->enabled_element_set.push_front(elem);
273     elem.increase_concurrency();
274   } else
275     elem.constraint->disabled_element_set.push_back(elem);
276
277   if (not selective_update_active) {
278     make_constraint_active(cnst);
279   } else if (elem.consumption_weight > 0 || var->sharing_weight > 0) {
280     make_constraint_active(cnst);
281     update_modified_set(cnst);
282     // TODOLATER: Why do we need this second call?
283     if (var->cnsts.size() > 1)
284       update_modified_set(var->cnsts[0].constraint);
285   }
286
287   check_concurrency();
288 }
289
290 void s_lmm_system_t::expand_add(lmm_constraint_t cnst, lmm_variable_t var, double value)
291 {
292   modified = true;
293
294   check_concurrency();
295
296   // BEWARE: In case you have multiple elements in one constraint, this will always add value to the first element.
297   auto elem_it = std::find_if(begin(var->cnsts), end(var->cnsts),
298                               [&cnst](s_lmm_element_t const& x) { return x.constraint == cnst; });
299   if (elem_it != end(var->cnsts)) {
300     s_lmm_element_t& elem = *elem_it;
301     if (var->sharing_weight)
302       elem.decrease_concurrency();
303
304     if (cnst->sharing_policy)
305       elem.consumption_weight += value;
306     else
307       elem.consumption_weight = std::max(elem.consumption_weight, value);
308
309     // We need to check that increasing value of the element does not cross the concurrency limit
310     if (var->sharing_weight) {
311       if (cnst->get_concurrency_slack() < elem.get_concurrency()) {
312         double weight = var->sharing_weight;
313         disable_var(var);
314         for (s_lmm_element_t const& elem2 : var->cnsts)
315           on_disabled_var(elem2.constraint);
316         var->staged_weight = weight;
317         xbt_assert(not var->sharing_weight);
318       }
319       elem.increase_concurrency();
320     }
321     update_modified_set(cnst);
322   } else
323     expand(cnst, var, value);
324
325   check_concurrency();
326 }
327
328 lmm_variable_t s_lmm_constraint_t::get_variable(const_lmm_element_t* elem) const
329 {
330   if (*elem == nullptr) {
331     // That is the first call, pick the first element among enabled_element_set (or disabled_element_set if
332     // enabled_element_set is empty)
333     if (not enabled_element_set.empty())
334       *elem = &enabled_element_set.front();
335     else if (not disabled_element_set.empty())
336       *elem = &disabled_element_set.front();
337     else
338       *elem = nullptr;
339   } else {
340     // elem is not null, so we carry on
341     if ((*elem)->enabled_element_set_hook.is_linked()) {
342       // Look at enabled_element_set, and jump to disabled_element_set when finished
343       auto iter = std::next(enabled_element_set.iterator_to(**elem));
344       if (iter != std::end(enabled_element_set))
345         *elem = &*iter;
346       else if (not disabled_element_set.empty())
347         *elem = &disabled_element_set.front();
348       else
349         *elem = nullptr;
350     } else {
351       auto iter = std::next(disabled_element_set.iterator_to(**elem));
352       *elem     = iter != std::end(disabled_element_set) ? &*iter : nullptr;
353     }
354   }
355   if (*elem)
356     return (*elem)->variable;
357   else
358     return nullptr;
359 }
360
361 // if we modify the list between calls, normal version may loop forever
362 // this safe version ensures that we browse the list elements only once
363 lmm_variable_t s_lmm_constraint_t::get_variable_safe(const_lmm_element_t* elem, const_lmm_element_t* nextelem,
364                                                      int* numelem) const
365 {
366   if (*elem == nullptr) {
367     *numelem = enabled_element_set.size() + disabled_element_set.size() - 1;
368     if (not enabled_element_set.empty())
369       *elem = &enabled_element_set.front();
370     else if (not disabled_element_set.empty())
371       *elem = &disabled_element_set.front();
372     else
373       *elem = nullptr;
374   } else {
375     *elem = *nextelem;
376     if (*numelem > 0) {
377       (*numelem)--;
378     } else
379       return nullptr;
380   }
381   if (*elem) {
382     // elem is not null, so we carry on
383     if ((*elem)->enabled_element_set_hook.is_linked()) {
384       // Look at enabled_element_set, and jump to disabled_element_set when finished
385       auto iter = std::next(enabled_element_set.iterator_to(**elem));
386       if (iter != std::end(enabled_element_set))
387         *nextelem = &*iter;
388       else if (not disabled_element_set.empty())
389         *nextelem = &disabled_element_set.front();
390       else
391         *nextelem = nullptr;
392     } else {
393       auto iter = std::next(disabled_element_set.iterator_to(**elem));
394       *nextelem = iter != std::end(disabled_element_set) ? &*iter : nullptr;
395     }
396     return (*elem)->variable;
397   } else
398     return nullptr;
399 }
400
401 static inline void saturated_constraints_update(double usage, int cnst_light_num, dyn_light_t& saturated_constraints,
402                                                 double* min_usage)
403 {
404   xbt_assert(usage > 0, "Impossible");
405
406   if (*min_usage < 0 || *min_usage > usage) {
407     *min_usage = usage;
408     XBT_HERE(" min_usage=%f (cnst->remaining / cnst->usage =%f)", *min_usage, usage);
409     saturated_constraints.assign(1, cnst_light_num);
410   } else if (*min_usage == usage) {
411     saturated_constraints.emplace_back(cnst_light_num);
412   }
413 }
414
415 static inline void saturated_variable_set_update(s_lmm_constraint_light_t* cnst_light_tab,
416                                                  const dyn_light_t& saturated_constraints, lmm_system_t sys)
417 {
418   /* Add active variables (i.e. variables that need to be set) from the set of constraints to saturate
419    * (cnst_light_tab)*/
420   for (int const& saturated_cnst : saturated_constraints) {
421     s_lmm_constraint_light_t& cnst = cnst_light_tab[saturated_cnst];
422     for (s_lmm_element_t const& elem : cnst.cnst->active_element_set) {
423       // Visiting active_element_set, so, by construction, should never get a zero weight, correct?
424       xbt_assert(elem.variable->sharing_weight > 0);
425       if (elem.consumption_weight > 0 && not elem.variable->saturated_variable_set_hook.is_linked())
426         sys->saturated_variable_set.push_back(*elem.variable);
427     }
428   }
429 }
430
431 template <class ElemList>
432 static void format_lmm_element_list(const ElemList& elem_list, int sharing_policy, double& sum, std::string& buf)
433 {
434   for (s_lmm_element_t const& elem : elem_list) {
435     buf += std::to_string(elem.consumption_weight) + ".'" + std::to_string(elem.variable->id_int) + "'(" +
436            std::to_string(elem.variable->value) + ")" + (sharing_policy ? " + " : " , ");
437     if (sharing_policy)
438       sum += elem.consumption_weight * elem.variable->value;
439     else
440       sum = std::max(sum, elem.consumption_weight * elem.variable->value);
441   }
442 }
443
444 void s_lmm_system_t::print() const
445 {
446   std::string buf = std::string("MAX-MIN ( ");
447
448   /* Printing Objective */
449   for (s_lmm_variable_t const& var : variable_set)
450     buf += "'" + std::to_string(var.id_int) + "'(" + std::to_string(var.sharing_weight) + ") ";
451   buf += ")";
452   XBT_DEBUG("%20s", buf.c_str());
453   buf.clear();
454
455   XBT_DEBUG("Constraints");
456   /* Printing Constraints */
457   for (s_lmm_constraint_t const& cnst : active_constraint_set) {
458     double sum            = 0.0;
459     // Show  the enabled variables
460     buf += "\t";
461     buf += cnst.sharing_policy ? "(" : "max(";
462     format_lmm_element_list(cnst.enabled_element_set, cnst.sharing_policy, sum, buf);
463     // TODO: Adding disabled elements only for test compatibility, but do we really want them to be printed?
464     format_lmm_element_list(cnst.disabled_element_set, cnst.sharing_policy, sum, buf);
465
466     buf += "0) <= " + std::to_string(cnst.bound) + " ('" + std::to_string(cnst.id_int) + "')";
467
468     if (not cnst.sharing_policy) {
469       buf += " [MAX-Constraint]";
470     }
471     XBT_DEBUG("%s", buf.c_str());
472     buf.clear();
473     xbt_assert(not double_positive(sum - cnst.bound, cnst.bound * sg_maxmin_precision),
474                "Incorrect value (%f is not smaller than %f): %g", sum, cnst.bound, sum - cnst.bound);
475   }
476
477   XBT_DEBUG("Variables");
478   /* Printing Result */
479   for (s_lmm_variable_t const& var : variable_set) {
480     if (var.bound > 0) {
481       XBT_DEBUG("'%d'(%f) : %f (<=%f)", var.id_int, var.sharing_weight, var.value, var.bound);
482       xbt_assert(not double_positive(var.value - var.bound, var.bound * sg_maxmin_precision),
483                  "Incorrect value (%f is not smaller than %f", var.value, var.bound);
484     } else {
485       XBT_DEBUG("'%d'(%f) : %f", var.id_int, var.sharing_weight, var.value);
486     }
487   }
488 }
489
490 void s_lmm_system_t::solve()
491 {
492   if (modified) {
493     XBT_IN("(sys=%p)", this);
494     /* Compute Usage and store the variables that reach the maximum. If selective_update_active is true, only
495      * constraints that changed are considered. Otherwise all constraints with active actions are considered.
496      */
497     if (selective_update_active)
498       solve(modified_constraint_set);
499     else
500       solve(active_constraint_set);
501     XBT_OUT();
502   }
503 }
504
505 template <class CnstList> void s_lmm_system_t::solve(CnstList& cnst_list)
506 {
507   double min_usage = -1;
508   double min_bound = -1;
509
510   XBT_DEBUG("Active constraints : %zu", cnst_list.size());
511   /* Init: Only modified code portions: reset the value of active variables */
512   for (s_lmm_constraint_t const& cnst : cnst_list) {
513     for (s_lmm_element_t const& elem : cnst.enabled_element_set) {
514       xbt_assert(elem.variable->sharing_weight > 0.0);
515       elem.variable->value = 0.0;
516     }
517   }
518
519   s_lmm_constraint_light_t* cnst_light_tab = new s_lmm_constraint_light_t[cnst_list.size()]();
520   int cnst_light_num                       = 0;
521   dyn_light_t saturated_constraints;
522
523   for (s_lmm_constraint_t& cnst : cnst_list) {
524     /* INIT: Collect constraints that actually need to be saturated (i.e remaining  and usage are strictly positive)
525      * into cnst_light_tab. */
526     cnst.remaining = cnst.bound;
527     if (not double_positive(cnst.remaining, cnst.bound * sg_maxmin_precision))
528       continue;
529     cnst.usage = 0;
530     for (s_lmm_element_t& elem : cnst.enabled_element_set) {
531       xbt_assert(elem.variable->sharing_weight > 0);
532       if (elem.consumption_weight > 0) {
533         if (cnst.sharing_policy)
534           cnst.usage += elem.consumption_weight / elem.variable->sharing_weight;
535         else if (cnst.usage < elem.consumption_weight / elem.variable->sharing_weight)
536           cnst.usage = elem.consumption_weight / elem.variable->sharing_weight;
537
538         elem.make_active();
539         simgrid::surf::Action* action = static_cast<simgrid::surf::Action*>(elem.variable->id);
540         if (keep_track && not action->is_linked())
541           keep_track->push_back(*action);
542       }
543     }
544     XBT_DEBUG("Constraint '%d' usage: %f remaining: %f concurrency: %i<=%i<=%i", cnst.id_int, cnst.usage,
545               cnst.remaining, cnst.concurrency_current, cnst.concurrency_maximum, cnst.get_concurrency_limit());
546     /* Saturated constraints update */
547
548     if (cnst.usage > 0) {
549       cnst_light_tab[cnst_light_num].cnst                 = &cnst;
550       cnst.cnst_light                                     = &cnst_light_tab[cnst_light_num];
551       cnst_light_tab[cnst_light_num].remaining_over_usage = cnst.remaining / cnst.usage;
552       saturated_constraints_update(cnst_light_tab[cnst_light_num].remaining_over_usage, cnst_light_num,
553                                    saturated_constraints, &min_usage);
554       xbt_assert(not cnst.active_element_set.empty(),
555                  "There is no sense adding a constraint that has no active element!");
556       cnst_light_num++;
557     }
558   }
559
560   saturated_variable_set_update(cnst_light_tab, saturated_constraints, this);
561
562   /* Saturated variables update */
563   do {
564     /* Fix the variables that have to be */
565     auto& var_list = saturated_variable_set;
566     for (s_lmm_variable_t const& var : var_list) {
567       if (var.sharing_weight <= 0.0)
568         DIE_IMPOSSIBLE;
569       /* First check if some of these variables could reach their upper bound and update min_bound accordingly. */
570       XBT_DEBUG("var=%d, var.bound=%f, var.weight=%f, min_usage=%f, var.bound*var.weight=%f", var.id_int, var.bound,
571                 var.sharing_weight, min_usage, var.bound * var.sharing_weight);
572       if ((var.bound > 0) && (var.bound * var.sharing_weight < min_usage)) {
573         if (min_bound < 0)
574           min_bound = var.bound * var.sharing_weight;
575         else
576           min_bound = std::min(min_bound, (var.bound * var.sharing_weight));
577         XBT_DEBUG("Updated min_bound=%f", min_bound);
578       }
579     }
580
581     while (not var_list.empty()) {
582       s_lmm_variable_t& var = var_list.front();
583       if (min_bound < 0) {
584         // If no variable could reach its bound, deal iteratively the constraints usage ( at worst one constraint is
585         // saturated at each cycle)
586         var.value = min_usage / var.sharing_weight;
587         XBT_DEBUG("Setting var (%d) value to %f\n", var.id_int, var.value);
588       } else {
589         // If there exist a variable that can reach its bound, only update it (and other with the same bound) for now.
590         if (double_equals(min_bound, var.bound * var.sharing_weight, sg_maxmin_precision)) {
591           var.value = var.bound;
592           XBT_DEBUG("Setting %p (%d) value to %f\n", &var, var.id_int, var.value);
593         } else {
594           // Variables which bound is different are not considered for this cycle, but they will be afterwards.
595           XBT_DEBUG("Do not consider %p (%d) \n", &var, var.id_int);
596           var_list.pop_front();
597           continue;
598         }
599       }
600       XBT_DEBUG("Min usage: %f, Var(%d).weight: %f, Var(%d).value: %f ", min_usage, var.id_int, var.sharing_weight,
601                 var.id_int, var.value);
602
603       /* Update the usage of contraints where this variable is involved */
604       for (s_lmm_element_t& elem : var.cnsts) {
605         lmm_constraint_t cnst = elem.constraint;
606         if (cnst->sharing_policy) {
607           // Remember: shared constraints require that sum(elem.value * var.value) < cnst->bound
608           double_update(&(cnst->remaining), elem.consumption_weight * var.value, cnst->bound * sg_maxmin_precision);
609           double_update(&(cnst->usage), elem.consumption_weight / var.sharing_weight, sg_maxmin_precision);
610           // If the constraint is saturated, remove it from the set of active constraints (light_tab)
611           if (not double_positive(cnst->usage, sg_maxmin_precision) ||
612               not double_positive(cnst->remaining, cnst->bound * sg_maxmin_precision)) {
613             if (cnst->cnst_light) {
614               int index = (cnst->cnst_light - cnst_light_tab);
615               XBT_DEBUG("index: %d \t cnst_light_num: %d \t || usage: %f remaining: %f bound: %f  ", index,
616                         cnst_light_num, cnst->usage, cnst->remaining, cnst->bound);
617               cnst_light_tab[index]                  = cnst_light_tab[cnst_light_num - 1];
618               cnst_light_tab[index].cnst->cnst_light = &cnst_light_tab[index];
619               cnst_light_num--;
620               cnst->cnst_light = nullptr;
621             }
622           } else {
623             cnst->cnst_light->remaining_over_usage = cnst->remaining / cnst->usage;
624           }
625           elem.make_inactive();
626         } else {
627           // Remember: non-shared constraints only require that max(elem.value * var.value) < cnst->bound
628           cnst->usage = 0.0;
629           elem.make_inactive();
630           for (s_lmm_element_t& elem2 : cnst->enabled_element_set) {
631             xbt_assert(elem2.variable->sharing_weight > 0);
632             if (elem2.variable->value > 0)
633               continue;
634             if (elem2.consumption_weight > 0)
635               cnst->usage = std::max(cnst->usage, elem2.consumption_weight / elem2.variable->sharing_weight);
636           }
637           // If the constraint is saturated, remove it from the set of active constraints (light_tab)
638           if (not double_positive(cnst->usage, sg_maxmin_precision) ||
639               not double_positive(cnst->remaining, cnst->bound * sg_maxmin_precision)) {
640             if (cnst->cnst_light) {
641               int index = (cnst->cnst_light - cnst_light_tab);
642               XBT_DEBUG("index: %d \t cnst_light_num: %d \t || \t cnst: %p \t cnst->cnst_light: %p "
643                         "\t cnst_light_tab: %p usage: %f remaining: %f bound: %f  ",
644                         index, cnst_light_num, cnst, cnst->cnst_light, cnst_light_tab, cnst->usage, cnst->remaining,
645                         cnst->bound);
646               cnst_light_tab[index]                  = cnst_light_tab[cnst_light_num - 1];
647               cnst_light_tab[index].cnst->cnst_light = &cnst_light_tab[index];
648               cnst_light_num--;
649               cnst->cnst_light = nullptr;
650             }
651           } else {
652             cnst->cnst_light->remaining_over_usage = cnst->remaining / cnst->usage;
653             xbt_assert(not cnst->active_element_set.empty(),
654                        "Should not keep a maximum constraint that has no active"
655                        " element! You want to check the maxmin precision and possible rounding effects.");
656           }
657         }
658       }
659       var_list.pop_front();
660     }
661
662     /* Find out which variables reach the maximum */
663     min_usage = -1;
664     min_bound = -1;
665     saturated_constraints.clear();
666     int pos;
667     for (pos = 0; pos < cnst_light_num; pos++) {
668       xbt_assert(not cnst_light_tab[pos].cnst->active_element_set.empty(),
669                  "Cannot saturate more a constraint that has"
670                  " no active element! You may want to change the maxmin precision (--cfg=maxmin/precision:<new_value>)"
671                  " because of possible rounding effects.\n\tFor the record, the usage of this constraint is %g while "
672                  "the maxmin precision to which it is compared is %g.\n\tThe usage of the previous constraint is %g.",
673                  cnst_light_tab[pos].cnst->usage, sg_maxmin_precision, cnst_light_tab[pos - 1].cnst->usage);
674       saturated_constraints_update(cnst_light_tab[pos].remaining_over_usage, pos, saturated_constraints, &min_usage);
675     }
676
677     saturated_variable_set_update(cnst_light_tab, saturated_constraints, this);
678
679   } while (cnst_light_num > 0);
680
681   modified = false;
682   if (selective_update_active)
683     remove_all_modified_set();
684
685   if (XBT_LOG_ISENABLED(surf_maxmin, xbt_log_priority_debug)) {
686     print();
687   }
688
689   check_concurrency();
690
691   delete[] cnst_light_tab;
692 }
693
694 void lmm_solve(lmm_system_t sys)
695 {
696   sys->solve();
697 }
698
699 /** \brief Attribute the value bound to var->bound.
700  *
701  *  \param sys the lmm_system_t
702  *  \param var the lmm_variable_t
703  *  \param bound the new bound to associate with var
704  *
705  *  Makes var->bound equal to bound. Whenever this function is called a change is  signed in the system. To
706  *  avoid false system changing detection it is a good idea to test (bound != 0) before calling it.
707  */
708 void s_lmm_system_t::update_variable_bound(lmm_variable_t var, double bound)
709 {
710   modified   = true;
711   var->bound = bound;
712
713   if (not var->cnsts.empty())
714     update_modified_set(var->cnsts[0].constraint);
715 }
716
717 void s_lmm_variable_t::initialize(simgrid::surf::Action* id_value, double sharing_weight_value, double bound_value,
718                                   int number_of_constraints, unsigned visited_value)
719 {
720   id     = id_value;
721   id_int = Global_debug_id++;
722   cnsts.reserve(number_of_constraints);
723   sharing_weight    = sharing_weight_value;
724   staged_weight     = 0.0;
725   bound             = bound_value;
726   concurrency_share = 1;
727   value             = 0.0;
728   visited           = visited_value;
729   mu                = 0.0;
730   new_mu            = 0.0;
731   func_f            = func_f_def;
732   func_fp           = func_fp_def;
733   func_fpi          = func_fpi_def;
734
735   xbt_assert(not variable_set_hook.is_linked());
736   xbt_assert(not saturated_variable_set_hook.is_linked());
737 }
738
739 int s_lmm_variable_t::get_min_concurrency_slack() const
740 {
741   int minslack = std::numeric_limits<int>::max();
742   for (s_lmm_element_t const& elem : cnsts) {
743     int slack = elem.constraint->get_concurrency_slack();
744     if (slack < minslack) {
745       // This is only an optimization, to avoid looking at more constraints when slack is already zero
746       if (slack == 0)
747         return 0;
748       minslack = slack;
749     }
750   }
751   return minslack;
752 }
753
754 // Small remark: In this implementation of lmm_enable_var and lmm_disable_var, we will meet multiple times with var when
755 // running sys->update_modified_set.
756 // A priori not a big performance issue, but we might do better by calling sys->update_modified_set within the for loops
757 // (after doing the first for enabling==1, and before doing the last for disabling==1)
758 void s_lmm_system_t::enable_var(lmm_variable_t var)
759 {
760   xbt_assert(not XBT_LOG_ISENABLED(surf_maxmin, xbt_log_priority_debug) || var->can_enable());
761
762   var->sharing_weight = var->staged_weight;
763   var->staged_weight  = 0;
764
765   // Enabling the variable, move var to list head. Subtlety is: here, we need to call update_modified_set AFTER
766   // moving at least one element of var.
767
768   simgrid::xbt::intrusive_erase(variable_set, *var);
769   variable_set.push_front(*var);
770   for (s_lmm_element_t& elem : var->cnsts) {
771     simgrid::xbt::intrusive_erase(elem.constraint->disabled_element_set, elem);
772     elem.constraint->enabled_element_set.push_front(elem);
773     elem.increase_concurrency();
774   }
775   if (not var->cnsts.empty())
776     update_modified_set(var->cnsts[0].constraint);
777
778   // When used within on_disabled_var, we would get an assertion fail, because transiently there can be variables
779   // that are staged and could be activated.
780   // Anyway, caller functions all call check_concurrency() in the end.
781 }
782
783 void s_lmm_system_t::disable_var(lmm_variable_t var)
784 {
785   xbt_assert(not var->staged_weight, "Staged weight should have been cleared");
786   // Disabling the variable, move to var to list tail. Subtlety is: here, we need to call update_modified_set
787   // BEFORE moving the last element of var.
788   simgrid::xbt::intrusive_erase(variable_set, *var);
789   variable_set.push_back(*var);
790   if (not var->cnsts.empty())
791     update_modified_set(var->cnsts[0].constraint);
792   for (s_lmm_element_t& elem : var->cnsts) {
793     simgrid::xbt::intrusive_erase(elem.constraint->enabled_element_set, elem);
794     elem.constraint->disabled_element_set.push_back(elem);
795     if (elem.active_element_set_hook.is_linked())
796       simgrid::xbt::intrusive_erase(elem.constraint->active_element_set, elem);
797     elem.decrease_concurrency();
798   }
799
800   var->sharing_weight = 0.0;
801   var->staged_weight  = 0.0;
802   var->value          = 0.0;
803   check_concurrency();
804 }
805
806 /* /brief Find variables that can be enabled and enable them.
807  *
808  * Assuming that the variable has already been removed from non-zero weights
809  * Can we find a staged variable to add?
810  * If yes, check that none of the constraints that this variable is involved in is at the limit of its concurrency
811  * And then add it to enabled variables
812  */
813 void s_lmm_system_t::on_disabled_var(lmm_constraint_t cnstr)
814 {
815   if (cnstr->get_concurrency_limit() < 0)
816     return;
817
818   int numelem = cnstr->disabled_element_set.size();
819   if (not numelem)
820     return;
821
822   lmm_element_t elem = &cnstr->disabled_element_set.front();
823
824   // Cannot use foreach loop, because lmm_enable_var will modify disabled_element_set.. within the loop
825   while (numelem-- && elem) {
826
827     lmm_element_t nextelem;
828     if (elem->disabled_element_set_hook.is_linked()) {
829       auto iter = std::next(cnstr->disabled_element_set.iterator_to(*elem));
830       nextelem  = iter != std::end(cnstr->disabled_element_set) ? &*iter : nullptr;
831     } else {
832       nextelem = nullptr;
833     }
834
835     if (elem->variable->staged_weight > 0 && elem->variable->can_enable()) {
836       // Found a staged variable
837       // TODOLATER: Add random timing function to model reservation protocol fuzziness? Then how to make sure that
838       // staged variables will eventually be called?
839       enable_var(elem->variable);
840     }
841
842     xbt_assert(cnstr->concurrency_current <= cnstr->get_concurrency_limit(), "Concurrency overflow!");
843     if (cnstr->concurrency_current == cnstr->get_concurrency_limit())
844       break;
845
846     elem = nextelem;
847   }
848
849   // We could get an assertion fail, because transiently there can be variables that are staged and could be activated.
850   // And we need to go through all constraints of the disabled var before getting back a coherent state.
851   // Anyway, caller functions all call check_concurrency() in the end.
852 }
853
854 /* \brief update the weight of a variable, and enable/disable it.
855  * @return Returns whether a change was made
856  */
857 void s_lmm_system_t::update_variable_weight(lmm_variable_t var, double weight)
858 {
859   xbt_assert(weight >= 0, "Variable weight should not be negative!");
860
861   if (weight == var->sharing_weight)
862     return;
863
864   int enabling_var  = (weight > 0 && var->sharing_weight <= 0);
865   int disabling_var = (weight <= 0 && var->sharing_weight > 0);
866
867   XBT_IN("(sys=%p, var=%p, weight=%f)", this, var, weight);
868
869   modified = true;
870
871   // Are we enabling this variable?
872   if (enabling_var) {
873     var->staged_weight = weight;
874     int minslack       = var->get_min_concurrency_slack();
875     if (minslack < var->concurrency_share) {
876       XBT_DEBUG("Staging var (instead of enabling) because min concurrency slack %i, with weight %f and concurrency"
877                 " share %i",
878                 minslack, weight, var->concurrency_share);
879       return;
880     }
881     XBT_DEBUG("Enabling var with min concurrency slack %i", minslack);
882     enable_var(var);
883   } else if (disabling_var) {
884     // Are we disabling this variable?
885     disable_var(var);
886   } else {
887     var->sharing_weight = weight;
888   }
889
890   check_concurrency();
891
892   XBT_OUT();
893 }
894
895 void s_lmm_system_t::update_constraint_bound(lmm_constraint_t cnst, double bound)
896 {
897   modified = true;
898   update_modified_set(cnst);
899   cnst->bound = bound;
900 }
901
902 /** \brief Update the constraint set propagating recursively to other constraints so the system should not be entirely
903  *  computed.
904  *
905  *  \param sys the lmm_system_t
906  *  \param cnst the lmm_constraint_t affected by the change
907  *
908  *  A recursive algorithm to optimize the system recalculation selecting only constraints that have changed. Each
909  *  constraint change is propagated to the list of constraints for each variable.
910  */
911 void s_lmm_system_t::update_modified_set_rec(lmm_constraint_t cnst)
912 {
913   for (s_lmm_element_t const& elem : cnst->enabled_element_set) {
914     lmm_variable_t var = elem.variable;
915     for (s_lmm_element_t const& elem2 : var->cnsts) {
916       if (var->visited == visited_counter)
917         break;
918       if (elem2.constraint != cnst && not elem2.constraint->modified_constraint_set_hook.is_linked()) {
919         modified_constraint_set.push_back(*elem2.constraint);
920         update_modified_set_rec(elem2.constraint);
921       }
922     }
923     // var will be ignored in later visits as long as sys->visited_counter does not move
924     var->visited = visited_counter;
925   }
926 }
927
928 void s_lmm_system_t::update_modified_set(lmm_constraint_t cnst)
929 {
930   /* nothing to do if selective update isn't active */
931   if (selective_update_active && not cnst->modified_constraint_set_hook.is_linked()) {
932     modified_constraint_set.push_back(*cnst);
933     update_modified_set_rec(cnst);
934   }
935 }
936
937 void s_lmm_system_t::remove_all_modified_set()
938 {
939   // We cleverly un-flag all variables just by incrementing visited_counter
940   // In effect, the var->visited value will no more be equal to visited counter
941   // To be clean, when visited counter has wrapped around, we force these var->visited values so that variables that
942   // were in the modified a long long time ago are not wrongly skipped here, which would lead to very nasty bugs
943   // (i.e. not readibily reproducible, and requiring a lot of run time before happening).
944   if (++visited_counter == 1) {
945     /* the counter wrapped around, reset each variable->visited */
946     for (s_lmm_variable_t& var : variable_set)
947       var.visited = 0;
948   }
949   modified_constraint_set.clear();
950 }
951
952 /**
953  * Returns resource load (in flop per second, or byte per second, or similar)
954  *
955  * If the resource is shared (the default case), the load is sum of resource usage made by every variables located on
956  * this resource.
957  *
958  * If the resource is not shared (ie in FATPIPE mode), then the load is the max (not the sum) of all resource usages
959  * located on this resource.
960  *
961  * \param cnst the lmm_constraint_t associated to the resource
962  */
963 double s_lmm_constraint_t::get_usage() const
964 {
965   double result              = 0.0;
966   if (sharing_policy) {
967     for (s_lmm_element_t const& elem : enabled_element_set)
968       if (elem.consumption_weight > 0)
969         result += elem.consumption_weight * elem.variable->value;
970   } else {
971     for (s_lmm_element_t const& elem : enabled_element_set)
972       if (elem.consumption_weight > 0)
973         result = std::max(result, elem.consumption_weight * elem.variable->value);
974   }
975   return result;
976 }
977
978 int s_lmm_constraint_t::get_variable_amount() const
979 {
980   return std::count_if(std::begin(enabled_element_set), std::end(enabled_element_set),
981                        [](const s_lmm_element_t& elem) { return elem.consumption_weight > 0; });
982 }
983 }
984 }
985 }