Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
db0a09805d51ee5e248daa904c9ea90c969dd97d
[simgrid.git] / src / kernel / lmm / maxmin.hpp
1 /* Copyright (c) 2004-2018. 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 #ifndef SURF_MAXMIN_HPP
7 #define SURF_MAXMIN_HPP
8
9 #include "src/internal_config.h"
10 #include "src/kernel/resource/Action.hpp"
11 #include "src/surf/surf_interface.hpp"
12 #include "surf/surf.hpp"
13 #include "xbt/asserts.h"
14 #include "xbt/mallocator.h"
15 #include "xbt/misc.h"
16 #include "xbt/utility.hpp"
17 #include <boost/intrusive/list.hpp>
18 #include <cmath>
19 #include <limits>
20 #include <vector>
21
22 namespace simgrid {
23 namespace kernel {
24 namespace lmm {
25
26 /** @addtogroup SURF_lmm
27  * @details
28  * A linear maxmin solver to resolve inequations systems.
29  *
30  * Most SimGrid model rely on a "fluid/steady-state" modeling that simulate the sharing of resources between actions at
31  * relatively coarse-grain.  Such sharing is generally done by solving a set of linear inequations. Let's take an
32  * example and assume we have the variables \f$x_1\f$, \f$x_2\f$, \f$x_3\f$, and \f$x_4\f$ . Let's say that \f$x_1\f$
33  * and \f$x_2\f$ correspond to activities running and the same CPU \f$A\f$ whose capacity is \f$C_A\f$. In such a
34  * case, we need to enforce:
35  *
36  *   \f[ x_1 + x_2 \leq C_A \f]
37  *
38  * Likewise, if \f$x_3\f$ (resp. \f$x_4\f$) corresponds to a network flow \f$F_3\f$ (resp. \f$F_4\f$) that goes through
39  * a set of links \f$L_1\f$ and \f$L_2\f$ (resp. \f$L_2\f$ and \f$L_3\f$), then we need to enforce:
40  *
41  *   \f[ x_3  \leq C_{L_1} \f]
42  *   \f[ x_3 + x_4 \leq C_{L_2} \f]
43  *   \f[ x_4 \leq C_{L_3} \f]
44  *
45  * One could set every variable to 0 to make sure the constraints are satisfied but this would obviously not be very
46  * realistic. A possible objective is to try to maximize the minimum of the \f$x_i\f$ . This ensures that all the
47  * \f$x_i\f$ are positive and "as large as possible".
48  *
49  * This is called *max-min fairness* and is the most commonly used objective in SimGrid. Another possibility is to
50  * maximize \f$\sum_if(x_i)\f$, where \f$f\f$ is a strictly increasing concave function.
51  *
52  * Constraint:
53  *  - bound (set)
54  *  - shared (set)
55  *  - usage (computed)
56  *
57  * Variable:
58  *  - weight (set)
59  *  - bound (set)
60  *  - value (computed)
61  *
62  * Element:
63  *  - value (set)
64  *
65  * A possible system could be:
66  * - three variables: `var1`, `var2`, `var3`
67  * - two constraints: `cons1`, `cons2`
68  * - four elements linking:
69  *  - `elem1` linking `var1` and `cons1`
70  *  - `elem2` linking `var2` and `cons1`
71  *  - `elem3` linking `var2` and `cons2`
72  *  - `elem4` linking `var3` and `cons2`
73  *
74  * And the corresponding inequations will be:
75  *
76  *     var1.value <= var1.bound
77  *     var2.value <= var2.bound
78  *     var3.value <= var3.bound
79  *     var1.weight * var1.value * elem1.value + var2.weight * var2.value * elem2.value <= cons1.bound
80  *     var2.weight * var2.value * elem3.value + var3.weight * var3.value * elem4.value <= cons2.bound
81  *
82  * where `var1.value`, `var2.value` and `var3.value` are the unknown values.
83  *
84  * If a constraint is not shared, the sum is replaced by a max.
85  * For example, a third non-shared constraint `cons3` and the associated elements `elem5` and `elem6` could write as:
86  *
87  *     max( var1.weight * var1.value * elem5.value  ,  var3.weight * var3.value * elem6.value ) <= cons3.bound
88  *
89  * This is useful for the sharing of resources for various models.
90  * For instance, for the network model, each link is associated to a constraint and each communication to a variable.
91  *
92  * Implementation details
93  *
94  * For implementation reasons, we are interested in distinguishing variables that actually participate to the
95  * computation of constraints, and those who are part of the equations but are stuck to zero.
96  * We call enabled variables, those which var.weight is strictly positive. Zero-weight variables are called disabled
97  * variables.
98  * Unfortunately this concept of enabled/disabled variables intersects with active/inactive variable.
99  * Semantically, the intent is similar, but the conditions under which a variable is active is slightly more strict
100  * than the conditions for it to be enabled.
101  * A variable is active only if its var.value is non-zero (and, by construction, its var.weight is non-zero).
102  * In general, variables remain disabled after their creation, which often models an initialization phase (e.g. first
103  * packet propagating in the network). Then, it is enabled by the corresponding model. Afterwards, the max-min solver
104  * (lmm_solve()) activates it when appropriate. It is possible that the variable is again disabled, e.g. to model the
105  * pausing of an action.
106  *
107  * Concurrency limit and maximum
108  *
109  * We call concurrency, the number of variables that can be enabled at any time for each constraint.
110  * From a model perspective, this "concurrency" often represents the number of actions that actually compete for one
111  * constraint.
112  * The LMM solver is able to limit the concurrency for each constraint, and to monitor its maximum value.
113  *
114  * One may want to limit the concurrency of constraints for essentially three reasons:
115  *  - Keep LMM system in a size that can be solved (it does not react very well with tens of thousands of variables per
116  *    constraint)
117  *  - Stay within parameters where the fluid model is accurate enough.
118  *  - Model serialization effects
119  *
120  * The concurrency limit can also be set to a negative value to disable concurrency limit. This can improve performance
121  * slightly.
122  *
123  * Overall, each constraint contains three fields related to concurrency:
124  *  - concurrency_limit which is the limit enforced by the solver
125  *  - concurrency_current which is the current concurrency
126  *  - concurrency_maximum which is the observed maximum concurrency
127  *
128  * Variables also have one field related to concurrency: concurrency_share.
129  * In effect, in some cases, one variable is involved multiple times (i.e. two elements) in a constraint.
130  * For example, cross-traffic is modeled using 2 elements per constraint.
131  * concurrency_share formally corresponds to the maximum number of elements that associate the variable and any given
132  * constraint.
133  */
134
135 /** @{ @ingroup SURF_lmm */
136
137 /**
138  * @brief Solve the lmm system
139  * @param sys The lmm system to solve
140  */
141 XBT_PUBLIC void lmm_solve(lmm_system_t sys);
142
143 XBT_PUBLIC void lagrange_solve(lmm_system_t sys);
144 XBT_PUBLIC void bottleneck_solve(lmm_system_t sys);
145
146 /** Default functions associated to the chosen protocol. When using the lagrangian approach. */
147
148 XBT_PUBLIC void set_default_protocol_function(double (*func_f)(const Variable& var, double x),
149                                               double (*func_fp)(const Variable& var, double x),
150                                               double (*func_fpi)(const Variable& var, double x));
151
152 XBT_PUBLIC double func_reno_f(const Variable& var, double x);
153 XBT_PUBLIC double func_reno_fp(const Variable& var, double x);
154 XBT_PUBLIC double func_reno_fpi(const Variable& var, double x);
155
156 XBT_PUBLIC double func_reno2_f(const Variable& var, double x);
157 XBT_PUBLIC double func_reno2_fp(const Variable& var, double x);
158 XBT_PUBLIC double func_reno2_fpi(const Variable& var, double x);
159
160 XBT_PUBLIC double func_vegas_f(const Variable& var, double x);
161 XBT_PUBLIC double func_vegas_fp(const Variable& var, double x);
162 XBT_PUBLIC double func_vegas_fpi(const Variable& var, double x);
163
164 /**
165  * @brief LMM element
166  * Elements can be seen as glue between constraint objects and variable objects.
167  * Basically, each variable will have a set of elements, one for each constraint where it is involved.
168  * Then, it is used to list all variables involved in constraint through constraint's xxx_element_set lists, or
169  * vice-versa list all constraints for a given variable.
170  */
171 XBT_PUBLIC_CLASS Element
172 {
173 public:
174   int get_concurrency() const;
175   void decrease_concurrency();
176   void increase_concurrency();
177
178   void make_active();
179   void make_inactive();
180
181   /* hookup to constraint */
182   boost::intrusive::list_member_hook<> enabled_element_set_hook;
183   boost::intrusive::list_member_hook<> disabled_element_set_hook;
184   boost::intrusive::list_member_hook<> active_element_set_hook;
185
186   Constraint* constraint;
187   Variable* variable;
188
189   // consumption_weight: impact of 1 byte or flop of your application onto the resource (in byte or flop)
190   //   - if CPU, then probably 1.
191   //   - If network, then 1 in forward direction and 0.05 backward for the ACKs
192   double consumption_weight;
193 };
194
195 struct ConstraintLight {
196   double remaining_over_usage;
197   Constraint* cnst;
198 };
199
200 /**
201  * @brief LMM constraint
202  * Each constraint contains several partially overlapping logical sets of elements:
203  * \li Disabled elements which variable's weight is zero. This variables are not at all processed by LMM, but eventually
204  *     the corresponding action will enable it (at least this is the idea).
205  * \li Enabled elements which variable's weight is non-zero. They are utilized in some LMM functions.
206  * \li Active elements which variable's weight is non-zero (i.e. it is enabled) AND its element value is non-zero.
207  *     LMM_solve iterates over active elements during resolution, dynamically making them active or unactive.
208  */
209 XBT_PUBLIC_CLASS Constraint
210 {
211 public:
212   Constraint() = delete;
213   Constraint(void* id_value, double bound_value);
214
215   /** @brief Unshare a constraint. */
216   void unshare() { sharing_policy = 0; }
217
218   /**
219    * @brief Check if a constraint is shared (shared by default)
220    * @return 1 if shared, 0 otherwise
221    */
222   int get_sharing_policy() const { return sharing_policy; }
223
224   /**
225    * @brief Get the usage of the constraint after the last lmm solve
226    * @return The usage of the constraint
227    */
228   double get_usage() const;
229   int get_variable_amount() const;
230
231   /**
232    * @brief Sets the concurrency limit for this constraint
233    * @param limit The concurrency limit to use for this constraint
234    */
235   void set_concurrency_limit(int limit)
236   {
237     xbt_assert(limit < 0 || concurrency_maximum <= limit,
238                "New concurrency limit should be larger than observed concurrency maximum. Maybe you want to call"
239                " concurrency_maximum_reset() to reset the maximum?");
240     concurrency_limit = limit;
241   }
242
243   /**
244    * @brief Gets the concurrency limit for this constraint
245    * @return The concurrency limit used by this constraint
246    */
247   int get_concurrency_limit() const { return concurrency_limit; }
248
249   /**
250    * @brief Reset the concurrency maximum for a given variable (we will update the maximum to reflect constraint
251    * evolution).
252    */
253   void reset_concurrency_maximum() { concurrency_maximum = 0; }
254
255   /**
256    * @brief Get the concurrency maximum for a given variable (which reflects constraint evolution).
257    * @return the maximum concurrency of the constraint
258    */
259   int get_concurrency_maximum() const
260   {
261     xbt_assert(concurrency_limit < 0 || concurrency_maximum <= concurrency_limit,
262                "Very bad: maximum observed concurrency is higher than limit. This is a bug of SURF, please report it.");
263     return concurrency_maximum;
264   }
265
266   int get_concurrency_slack() const
267   {
268     return concurrency_limit < 0 ? std::numeric_limits<int>::max() : concurrency_limit - concurrency_current;
269   }
270
271   /**
272    * @brief Get a var associated to a constraint
273    * @details Get the first variable of the next variable of elem if elem is not NULL
274    * @param elem A element of constraint of the constraint or NULL
275    * @return A variable associated to a constraint
276    */
277   Variable* get_variable(const_lmm_element_t * elem) const;
278
279   /**
280    * @brief Get a var associated to a constraint
281    * @details Get the first variable of the next variable of elem if elem is not NULL
282    * @param elem A element of constraint of the constraint or NULL
283    * @param nextelem A element of constraint of the constraint or NULL, the one after elem
284    * @param numelem parameter representing the number of elements to go
285    * @return A variable associated to a constraint
286    */
287   Variable* get_variable_safe(const_lmm_element_t * elem, const_lmm_element_t * nextelem, int* numelem) const;
288
289   /**
290    * @brief Get the data associated to a constraint
291    * @return The data associated to the constraint
292    */
293   void* get_id() const { return id; }
294
295   /* hookup to system */
296   boost::intrusive::list_member_hook<> constraint_set_hook;
297   boost::intrusive::list_member_hook<> active_constraint_set_hook;
298   boost::intrusive::list_member_hook<> modified_constraint_set_hook;
299   boost::intrusive::list_member_hook<> saturated_constraint_set_hook;
300   boost::intrusive::list<Element, boost::intrusive::member_hook<Element, boost::intrusive::list_member_hook<>,
301                                                                 &Element::enabled_element_set_hook>>
302       enabled_element_set;
303   boost::intrusive::list<Element, boost::intrusive::member_hook<Element, boost::intrusive::list_member_hook<>,
304                                                                 &Element::disabled_element_set_hook>>
305       disabled_element_set;
306   boost::intrusive::list<Element, boost::intrusive::member_hook<Element, boost::intrusive::list_member_hook<>,
307                                                                 &Element::active_element_set_hook>>
308       active_element_set;
309   double remaining;
310   double usage;
311   double bound;
312   // TODO MARTIN Check maximum value across resources at the end of simulation and give a warning is more than e.g. 500
313   int concurrency_current; /* The current concurrency */
314   int concurrency_maximum; /* The maximum number of (enabled and disabled) variables associated to the constraint at any
315                             * given time (essentially for tracing)*/
316
317   int sharing_policy; /* see @e_surf_link_sharing_policy_t (0: FATPIPE, 1: SHARED, 2: SPLITDUPLEX) */
318   int id_int;
319   double lambda;
320   double new_lambda;
321   lmm_constraint_light_t cnst_light;
322
323 private:
324   static int Global_debug_id;
325   int concurrency_limit; /* The maximum number of variables that may be enabled at any time (stage variables if
326                           * necessary) */
327   void* id;
328 };
329
330 /**
331  * @brief LMM variable
332  *
333  * When something prevents us from enabling a variable, we "stage" the weight that we would have like to set, so that as
334  * soon as possible we enable the variable with desired weight
335  */
336 XBT_PUBLIC_CLASS Variable
337 {
338 public:
339   void initialize(simgrid::kernel::resource::Action * id_value, double sharing_weight_value, double bound_value,
340                   int number_of_constraints, unsigned visited_value);
341
342   /**
343    * @brief Get the value of the variable after the last lmm solve
344    * @return The value of the variable
345    */
346   double get_value() const { return value; }
347
348   /**
349    * @brief Get the maximum value of the variable (-1.0 if no maximum value)
350    * @return The bound of the variable
351    */
352   double get_bound() const { return bound; }
353
354   /**
355    * @brief Set the concurrent share of the variable
356    * @param value The new concurrency share
357    */
358   void set_concurrency_share(short int value) { concurrency_share = value; }
359
360   /**
361    * @brief Get the numth constraint associated to the variable
362    * @param num The rank of constraint we want to get
363    * @return The numth constraint
364    */
365   Constraint* get_constraint(unsigned num) const { return num < cnsts.size() ? cnsts[num].constraint : nullptr; }
366
367   /**
368    * @brief Get the weigth of the numth constraint associated to the variable
369    * @param num The rank of constraint we want to get
370    * @return The numth constraint
371    */
372   double get_constraint_weight(unsigned num) const { return num < cnsts.size() ? cnsts[num].consumption_weight : 0.0; }
373
374   /**
375    * @brief Get the number of constraint associated to a variable
376    * @return The number of constraint associated to the variable
377    */
378   int get_number_of_constraint() const { return cnsts.size(); }
379
380   /**
381    * @brief Get the data associated to a variable
382    * @return The data associated to the variable
383    */
384   simgrid::kernel::resource::Action* get_id() const { return id; }
385
386   /**
387    * @brief Get the weight of a variable
388    * @return The weight of the variable
389    */
390   double get_weight() const { return sharing_weight; }
391
392   /** @brief Measure the minimum concurrency slack across all constraints where the given var is involved */
393   int get_min_concurrency_slack() const;
394
395   /** @brief Check if a variable can be enabled
396    * Make sure to set staged_weight before, if your intent is only to check concurrency
397    */
398   int can_enable() const { return staged_weight > 0 && get_min_concurrency_slack() >= concurrency_share; }
399
400   /* hookup to system */
401   boost::intrusive::list_member_hook<> variable_set_hook;
402   boost::intrusive::list_member_hook<> saturated_variable_set_hook;
403
404   std::vector<Element> cnsts;
405
406   // sharing_weight: variable's impact on the resource during the sharing
407   //   if == 0, the variable is not considered by LMM
408   //   on CPU, actions with N threads have a sharing of N
409   //   on network, the actions with higher latency have a lesser sharing_weight
410   double sharing_weight;
411
412   double staged_weight; /* If non-zero, variable is staged for addition as soon as maxconcurrency constraints will be
413                          * met */
414   double bound;
415   double value;
416   short int concurrency_share; /* The maximum number of elements that variable will add to a constraint */
417   simgrid::kernel::resource::Action* id;
418   int id_int;
419   unsigned visited; /* used by System::update_modified_set() */
420   /* \begin{For Lagrange only} */
421   double mu;
422   double new_mu;
423   double (*func_f)(const Variable& var, double x);   /* (f)    */
424   double (*func_fp)(const Variable& var, double x);  /* (f')    */
425   double (*func_fpi)(const Variable& var, double x); /* (f')^{-1}    */
426   /* \end{For Lagrange only} */
427
428 private:
429   static int Global_debug_id;
430 };
431
432 inline void Element::make_active()
433 {
434   constraint->active_element_set.push_front(*this);
435 }
436 inline void Element::make_inactive()
437 {
438   if (active_element_set_hook.is_linked())
439     simgrid::xbt::intrusive_erase(constraint->active_element_set, *this);
440 }
441
442 /**
443  * @brief LMM system
444  */
445 XBT_PUBLIC_CLASS System
446 {
447 public:
448   /**
449    * @brief Create a new Linear MaxMim system
450    * @param selective_update whether we should do lazy updates
451    */
452   explicit System(bool selective_update);
453   /** @brief Free an existing Linear MaxMin system */
454   ~System();
455
456   /**
457    * @brief Create a new Linear MaxMin constraint
458    * @param id Data associated to the constraint (e.g.: a network link)
459    * @param bound_value The bound value of the constraint
460    */
461   Constraint* constraint_new(void* id, double bound_value);
462
463   /**
464    * @brief Create a new Linear MaxMin variable
465    * @param id Data associated to the variable (e.g.: a network communication)
466    * @param weight_value The weight of the variable (0.0 if not used)
467    * @param bound The maximum value of the variable (-1.0 if no maximum value)
468    * @param number_of_constraints The maximum number of constraint to associate to the variable
469    */
470   Variable* variable_new(simgrid::kernel::resource::Action * id, double weight_value, double bound,
471                          int number_of_constraints);
472
473   /**
474    * @brief Free a variable
475    * @param var The variable to free
476    */
477   void variable_free(Variable * var);
478
479   /**
480    * @brief Associate a variable to a constraint with a coefficient
481    * @param cnst A constraint
482    * @param var A variable
483    * @param value The coefficient associated to the variable in the constraint
484    */
485   void expand(Constraint * cnst, Variable * var, double value);
486
487   /**
488    * @brief Add value to the coefficient between a constraint and a variable or create one
489    * @param cnst A constraint
490    * @param var A variable
491    * @param value The value to add to the coefficient associated to the variable in the constraint
492    */
493   void expand_add(Constraint * cnst, Variable * var, double value);
494
495   /**
496    * @brief Update the bound of a variable
497    * @param var A constraint
498    * @param bound The new bound
499    */
500   void update_variable_bound(Variable * var, double bound);
501
502   /**
503    * @brief Update the weight of a variable
504    * @param var A variable
505    * @param weight The new weight of the variable
506    */
507   void update_variable_weight(Variable * var, double weight);
508
509   /**
510    * @brief Update a constraint bound
511    * @param cnst A constraint
512    * @param bound The new bound of the consrtaint
513    */
514   void update_constraint_bound(Constraint * cnst, double bound);
515
516   /**
517    * @brief [brief description]
518    * @param cnst A constraint
519    * @return [description]
520    */
521   int constraint_used(Constraint * cnst) { return cnst->active_constraint_set_hook.is_linked(); }
522
523   /** @brief Print the lmm system */
524   void print() const;
525
526   /** @brief Solve the lmm system */
527   void solve();
528
529 private:
530   static void* variable_mallocator_new_f();
531   static void variable_mallocator_free_f(void* var);
532
533   void var_free(Variable * var);
534   void cnst_free(Constraint * cnst);
535   Variable* extract_variable()
536   {
537     if (variable_set.empty())
538       return nullptr;
539     Variable* res = &variable_set.front();
540     variable_set.pop_front();
541     return res;
542   }
543   Constraint* extract_constraint()
544   {
545     if (constraint_set.empty())
546       return nullptr;
547     Constraint* res = &constraint_set.front();
548     constraint_set.pop_front();
549     return res;
550   }
551   void insert_constraint(Constraint * cnst) { constraint_set.push_back(*cnst); }
552   void remove_variable(Variable * var)
553   {
554     if (var->variable_set_hook.is_linked())
555       simgrid::xbt::intrusive_erase(variable_set, *var);
556     if (var->saturated_variable_set_hook.is_linked())
557       simgrid::xbt::intrusive_erase(saturated_variable_set, *var);
558   }
559   void make_constraint_active(Constraint * cnst)
560   {
561     if (not cnst->active_constraint_set_hook.is_linked())
562       active_constraint_set.push_back(*cnst);
563   }
564   void make_constraint_inactive(Constraint * cnst)
565   {
566     if (cnst->active_constraint_set_hook.is_linked())
567       simgrid::xbt::intrusive_erase(active_constraint_set, *cnst);
568     if (cnst->modified_constraint_set_hook.is_linked())
569       simgrid::xbt::intrusive_erase(modified_constraint_set, *cnst);
570   }
571
572   void enable_var(Variable * var);
573   void disable_var(Variable * var);
574   void on_disabled_var(Constraint * cnstr);
575
576   /**
577    * @brief Update the value of element linking the constraint and the variable
578    * @param cnst A constraint
579    * @param var A variable
580    * @param value The new value
581    */
582   void update(Constraint * cnst, Variable * var, double value);
583
584   void update_modified_set(Constraint * cnst);
585   void update_modified_set_rec(Constraint * cnst);
586
587   /** @brief Remove all constraints of the modified_constraint_set. */
588   void remove_all_modified_set();
589   void check_concurrency() const;
590
591   template <class CnstList> void solve(CnstList& cnst_list);
592 public:
593   bool modified;
594   boost::intrusive::list<Variable, boost::intrusive::member_hook<Variable, boost::intrusive::list_member_hook<>,
595                                                                  &Variable::variable_set_hook>>
596       variable_set;
597   boost::intrusive::list<Constraint, boost::intrusive::member_hook<Constraint, boost::intrusive::list_member_hook<>,
598                                                                    &Constraint::active_constraint_set_hook>>
599       active_constraint_set;
600   boost::intrusive::list<Variable, boost::intrusive::member_hook<Variable, boost::intrusive::list_member_hook<>,
601                                                                  &Variable::saturated_variable_set_hook>>
602       saturated_variable_set;
603   boost::intrusive::list<Constraint, boost::intrusive::member_hook<Constraint, boost::intrusive::list_member_hook<>,
604                                                                    &Constraint::saturated_constraint_set_hook>>
605       saturated_constraint_set;
606
607   simgrid::kernel::resource::ActionLmmListPtr keep_track;
608
609   void (*solve_fun)(lmm_system_t self);
610
611 private:
612   bool selective_update_active; /* flag to update partially the system only selecting changed portions */
613   unsigned visited_counter;     /* used by System::update_modified_set() and System::remove_all_modified_set() to
614                                  * cleverly (un-)flag the constraints (more details in these functions) */
615   boost::intrusive::list<Constraint, boost::intrusive::member_hook<Constraint, boost::intrusive::list_member_hook<>,
616                                                                    &Constraint::constraint_set_hook>>
617       constraint_set;
618   boost::intrusive::list<Constraint, boost::intrusive::member_hook<Constraint, boost::intrusive::list_member_hook<>,
619                                                                    &Constraint::modified_constraint_set_hook>>
620       modified_constraint_set;
621   xbt_mallocator_t variable_mallocator;
622 };
623
624 extern XBT_PRIVATE double (*func_f_def)(const Variable&, double);
625 extern XBT_PRIVATE double (*func_fp_def)(const Variable&, double);
626 extern XBT_PRIVATE double (*func_fpi_def)(const Variable&, double);
627
628 /** @} */
629 }
630 }
631 }
632
633 #endif