Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
preshot sonar (dead code; equality test between double)
[simgrid.git] / src / surf / network_cm02.cpp
1 /* Copyright (c) 2013-2022. 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 #include "src/surf/network_cm02.hpp"
7 #include "simgrid/kernel/routing/NetZoneImpl.hpp"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/s4u/Host.hpp"
10 #include "simgrid/sg_config.hpp"
11 #include "src/kernel/EngineImpl.hpp"
12 #include "src/kernel/resource/StandardLinkImpl.hpp"
13 #include "src/kernel/resource/WifiLinkImpl.hpp"
14 #include "src/kernel/resource/profile/Event.hpp"
15 #include "src/surf/surf_interface.hpp"
16
17 #include <algorithm>
18 #include <numeric>
19
20 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(res_network);
21
22 double sg_latency_factor     = 1.0; /* default value; can be set by model or from command line */
23 double sg_bandwidth_factor   = 1.0; /* default value; can be set by model or from command line */
24 double sg_weight_S_parameter = 0.0; /* default value; can be set by model or from command line */
25
26 /************************************************************************/
27 /* New model based on optimizations discussed during Pedro Velho's thesis*/
28 /************************************************************************/
29 /* @techreport{VELHO:2011:HAL-00646896:1, */
30 /*      url = {http://hal.inria.fr/hal-00646896/en/}, */
31 /*      title = {{Flow-level network models: have we reached the limits?}}, */
32 /*      author = {Velho, Pedro and Schnorr, Lucas and Casanova, Henri and Legrand, Arnaud}, */
33 /*      type = {Rapport de recherche}, */
34 /*      institution = {INRIA}, */
35 /*      number = {RR-7821}, */
36 /*      year = {2011}, */
37 /*      month = Nov, */
38 /*      pdf = {http://hal.inria.fr/hal-00646896/PDF/rr-validity.pdf}, */
39 /*  } */
40 void surf_network_model_init_LegrandVelho()
41 {
42   auto net_model = std::make_shared<simgrid::kernel::resource::NetworkCm02Model>("Network_LegrandVelho");
43   auto* engine   = simgrid::kernel::EngineImpl::get_instance();
44   engine->add_model(net_model);
45   engine->get_netzone_root()->set_network_model(net_model);
46
47   simgrid::config::set_default<double>("network/latency-factor", 13.01);
48   simgrid::config::set_default<double>("network/bandwidth-factor", 0.97);
49   simgrid::config::set_default<double>("network/weight-S", 20537);
50 }
51
52 /***************************************************************************/
53 /* The nice TCP sharing model designed by Loris Marchal and Henri Casanova */
54 /***************************************************************************/
55 /* @TechReport{      rr-lip2002-40, */
56 /*   author        = {Henri Casanova and Loris Marchal}, */
57 /*   institution   = {LIP}, */
58 /*   title         = {A Network Model for Simulation of Grid Application}, */
59 /*   number        = {2002-40}, */
60 /*   month         = {oct}, */
61 /*   year          = {2002} */
62 /* } */
63 void surf_network_model_init_CM02()
64 {
65   simgrid::config::set_default<double>("network/latency-factor", 1.0);
66   simgrid::config::set_default<double>("network/bandwidth-factor", 1.0);
67   simgrid::config::set_default<double>("network/weight-S", 0.0);
68
69   auto net_model = std::make_shared<simgrid::kernel::resource::NetworkCm02Model>("Network_CM02");
70   auto* engine   = simgrid::kernel::EngineImpl::get_instance();
71   engine->add_model(net_model);
72   engine->get_netzone_root()->set_network_model(net_model);
73 }
74
75 namespace simgrid {
76 namespace kernel {
77 namespace resource {
78
79 NetworkCm02Model::NetworkCm02Model(const std::string& name) : NetworkModel(name)
80 {
81   std::string optim = config::get_value<std::string>("network/optim");
82   bool select       = config::get_value<bool>("network/maxmin-selective-update");
83
84   if (optim == "Lazy") {
85     set_update_algorithm(Model::UpdateAlgo::LAZY);
86     xbt_assert(select || config::is_default("network/maxmin-selective-update"),
87                "You cannot disable network selective update when using the lazy update mechanism");
88     select = true;
89   }
90
91   set_maxmin_system(new lmm::System(select));
92   loopback_ = create_link("__loopback__", {config::get_value<double>("network/loopback-bw")});
93   loopback_->set_sharing_policy(s4u::Link::SharingPolicy::FATPIPE, {});
94   loopback_->set_latency(config::get_value<double>("network/loopback-lat"));
95   loopback_->seal();
96 }
97
98 void NetworkCm02Model::check_lat_factor_cb()
99 {
100   if (not simgrid::config::is_default("network/latency-factor")) {
101     throw std::invalid_argument(
102         "NetworkModelIntf: Cannot mix network/latency-factor and callback configuration. Choose only one of them.");
103   }
104 }
105
106 void NetworkCm02Model::check_bw_factor_cb()
107 {
108   if (not simgrid::config::is_default("network/bandwidth-factor")) {
109     throw std::invalid_argument(
110         "NetworkModelIntf: Cannot mix network/bandwidth-factor and callback configuration. Choose only one of them.");
111   }
112 }
113
114 void NetworkCm02Model::set_lat_factor_cb(const std::function<NetworkFactorCb>& cb)
115 {
116   if (not cb)
117     throw std::invalid_argument("NetworkModelIntf: Invalid callback");
118   check_lat_factor_cb();
119
120   lat_factor_cb_ = cb;
121 }
122
123 void NetworkCm02Model::set_bw_factor_cb(const std::function<NetworkFactorCb>& cb)
124 {
125   if (not cb)
126     throw std::invalid_argument("NetworkModelIntf: Invalid callback");
127   check_bw_factor_cb();
128
129   bw_factor_cb_ = cb;
130 }
131
132 StandardLinkImpl* NetworkCm02Model::create_link(const std::string& name, const std::vector<double>& bandwidths)
133 {
134   xbt_assert(bandwidths.size() == 1, "Non-WIFI links must use only 1 bandwidth.");
135   auto link = new NetworkCm02Link(name, bandwidths[0], get_maxmin_system());
136   link->set_model(this);
137   return link;
138 }
139
140 StandardLinkImpl* NetworkCm02Model::create_wifi_link(const std::string& name, const std::vector<double>& bandwidths)
141 {
142   auto link = new WifiLinkImpl(name, bandwidths, get_maxmin_system());
143   link->set_model(this);
144   return link;
145 }
146
147 void NetworkCm02Model::update_actions_state_lazy(double now, double /*delta*/)
148 {
149   while (not get_action_heap().empty() && double_equals(get_action_heap().top_date(), now, sg_surf_precision)) {
150     auto* action = static_cast<NetworkCm02Action*>(get_action_heap().pop());
151     XBT_DEBUG("Something happened to action %p", action);
152
153     // if I am wearing a latency hat
154     if (action->get_type() == ActionHeap::Type::latency) {
155       XBT_DEBUG("Latency paid for action %p. Activating", action);
156       get_maxmin_system()->update_variable_penalty(action->get_variable(), action->sharing_penalty_);
157       get_action_heap().remove(action);
158       action->set_last_update();
159
160       // if I am wearing a max_duration or normal hat
161     } else if (action->get_type() == ActionHeap::Type::max_duration || action->get_type() == ActionHeap::Type::normal) {
162       // no need to communicate anymore
163       // assume that flows that reached max_duration have remaining of 0
164       XBT_DEBUG("Action %p finished", action);
165       action->finish(Action::State::FINISHED);
166       get_action_heap().remove(action);
167     }
168   }
169 }
170
171 void NetworkCm02Model::update_actions_state_full(double /*now*/, double delta)
172 {
173   for (auto it = std::begin(*get_started_action_set()); it != std::end(*get_started_action_set());) {
174     auto& action = static_cast<NetworkCm02Action&>(*it);
175     ++it; // increment iterator here since the following calls to action.finish() may invalidate it
176     XBT_DEBUG("Something happened to action %p", &action);
177     double deltap = delta;
178     if (action.latency_ > 0) {
179       if (action.latency_ > deltap) {
180         double_update(&action.latency_, deltap, sg_surf_precision);
181         deltap = 0.0;
182       } else {
183         double_update(&deltap, action.latency_, sg_surf_precision);
184         action.latency_ = 0.0;
185       }
186       if (action.latency_ <= 0.0 && not action.is_suspended())
187         get_maxmin_system()->update_variable_penalty(action.get_variable(), action.sharing_penalty_);
188     }
189
190     if (not action.get_variable()->get_number_of_constraint()) {
191       /* There is actually no link used, hence an infinite bandwidth. This happens often when using models like
192        * vivaldi. In such case, just make sure that the action completes immediately.
193        */
194       action.update_remains(action.get_remains());
195     }
196     action.update_remains(action.get_rate() * delta);
197
198     if (action.get_max_duration() != NO_MAX_DURATION)
199       action.update_max_duration(delta);
200
201     if (((action.get_remains() <= 0) && (action.get_variable()->get_penalty() > 0)) ||
202         ((action.get_max_duration() != NO_MAX_DURATION) && (action.get_max_duration() <= 0))) {
203       action.finish(Action::State::FINISHED);
204     }
205   }
206 }
207
208 void NetworkCm02Model::comm_action_expand_constraints(const s4u::Host* src, const s4u::Host* dst,
209                                                       const NetworkCm02Action* action,
210                                                       const std::vector<StandardLinkImpl*>& route,
211                                                       const std::vector<StandardLinkImpl*>& back_route) const
212 {
213   /* expand route links constraints for route and back_route */
214   const WifiLinkImpl* src_wifi_link = nullptr;
215   const WifiLinkImpl* dst_wifi_link = nullptr;
216   if (not route.empty() && route.front()->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
217     src_wifi_link = static_cast<WifiLinkImpl*>(route.front());
218   }
219   if (route.size() > 1 && route.back()->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
220     dst_wifi_link = static_cast<WifiLinkImpl*>(route.back());
221   }
222
223   /* WI-FI links needs special treatment, do it here */
224   if (src_wifi_link != nullptr) {
225     /* In case of 0Mbps data rate, don't consider it in the LMM */
226     if (src_wifi_link->get_host_rate(src) > 0)
227       get_maxmin_system()->expand(src_wifi_link->get_constraint(), action->get_variable(),
228                                   1.0 / src_wifi_link->get_host_rate(src));
229     else
230       get_maxmin_system()->update_variable_penalty(action->get_variable(), 0);
231   }
232   if (dst_wifi_link != nullptr) {
233     if (dst_wifi_link->get_host_rate(dst) > 0)
234       get_maxmin_system()->expand(dst_wifi_link->get_constraint(), action->get_variable(),
235                                   1.0 / dst_wifi_link->get_host_rate(dst));
236     else
237       get_maxmin_system()->update_variable_penalty(action->get_variable(), 0);
238   }
239
240   for (auto const* link : route) {
241     if (link->get_sharing_policy() != s4u::Link::SharingPolicy::WIFI)
242       get_maxmin_system()->expand(link->get_constraint(), action->get_variable(), 1.0);
243   }
244
245   if (cfg_crosstraffic) {
246     XBT_DEBUG("Crosstraffic active: adding backward flow using 5%% of the available bandwidth");
247     if (dst_wifi_link != nullptr)
248       get_maxmin_system()->expand(dst_wifi_link->get_constraint(), action->get_variable(),
249                                   .05 / dst_wifi_link->get_host_rate(dst));
250     if (src_wifi_link != nullptr)
251       get_maxmin_system()->expand(src_wifi_link->get_constraint(), action->get_variable(),
252                                   .05 / src_wifi_link->get_host_rate(src));
253
254     for (auto const* link : back_route) {
255       if (link->get_sharing_policy() != s4u::Link::SharingPolicy::WIFI)
256         get_maxmin_system()->expand(link->get_constraint(), action->get_variable(), .05);
257     }
258     // Change concurrency_share here, if you want that cross-traffic is included in the SURF concurrency
259     // (You would also have to change simgrid::kernel::lmm::Element::get_concurrency())
260     // action->getVariable()->set_concurrency_share(2)
261   }
262 }
263
264 NetworkCm02Action* NetworkCm02Model::comm_action_create(s4u::Host* src, s4u::Host* dst, double size,
265                                                         const std::vector<StandardLinkImpl*>& route, bool failed)
266 {
267   WifiLinkImpl* src_wifi_link = nullptr;
268   WifiLinkImpl* dst_wifi_link = nullptr;
269   /* many checks related to Wi-Fi links */
270   if (not route.empty() && route.front()->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
271     src_wifi_link = static_cast<WifiLinkImpl*>(route.front());
272     xbt_assert(src_wifi_link->get_host_rate(src) != -1,
273                "The route from %s to %s begins with the WIFI link %s, but the host %s does not seem attached to that "
274                "WIFI link. Did you call link->set_host_rate()?",
275                src->get_cname(), dst->get_cname(), src_wifi_link->get_cname(), src->get_cname());
276   }
277   if (route.size() > 1 && route.back()->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
278     dst_wifi_link = static_cast<WifiLinkImpl*>(route.back());
279     xbt_assert(dst_wifi_link->get_host_rate(dst) != -1,
280                "The route from %s to %s ends with the WIFI link %s, but the host %s does not seem attached to that "
281                "WIFI link. Did you call link->set_host_rate()?",
282                src->get_cname(), dst->get_cname(), dst_wifi_link->get_cname(), dst->get_cname());
283   }
284   if (route.size() > 2)
285     for (unsigned i = 1; i < route.size() - 1; i++)
286       xbt_assert(route[i]->get_sharing_policy() != s4u::Link::SharingPolicy::WIFI,
287                  "Link '%s' is a WIFI link. It can only be at the beginning or the end of the route from '%s' to '%s', "
288                  "not in between (it is at position %u out of %zu). "
289                  "Did you declare an access_point in your WIFI zones?",
290                  route[i]->get_cname(), src->get_cname(), dst->get_cname(), i + 1, route.size());
291
292   for (auto const* link : route) {
293     if (link->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
294       xbt_assert(link == src_wifi_link || link == dst_wifi_link,
295                  "Wifi links can only occur at the beginning of the route (meaning that it's attached to the src) or "
296                  "at its end (meaning that it's attached to the dst");
297     }
298   }
299
300   /* create action and do some initializations */
301   NetworkCm02Action* action;
302   if (src_wifi_link == nullptr && dst_wifi_link == nullptr)
303     action = new NetworkCm02Action(this, *src, *dst, size, failed);
304   else
305     action = new WifiLinkAction(this, *src, *dst, size, failed, src_wifi_link, dst_wifi_link);
306
307   if (is_update_lazy()) {
308     action->set_last_update();
309   }
310
311   return action;
312 }
313
314 bool NetworkCm02Model::comm_get_route_info(const s4u::Host* src, const s4u::Host* dst, double& latency,
315                                            std::vector<StandardLinkImpl*>& route,
316                                            std::vector<StandardLinkImpl*>& back_route,
317                                            std::unordered_set<kernel::routing::NetZoneImpl*>& netzones) const
318 {
319   kernel::routing::NetZoneImpl::get_global_route_with_netzones(src->get_netpoint(), dst->get_netpoint(), route,
320                                                                &latency, netzones);
321
322   xbt_assert(not route.empty() || latency > 0,
323              "You're trying to send data from %s to %s but there is no connecting path between these two hosts.",
324              src->get_cname(), dst->get_cname());
325
326   bool failed = std::any_of(route.begin(), route.end(), [](const StandardLinkImpl* link) { return not link->is_on(); });
327
328   if (not failed && cfg_crosstraffic) {
329     dst->route_to(src, back_route, nullptr);
330     failed = std::any_of(back_route.begin(), back_route.end(),
331                          [](const StandardLinkImpl* link) { return not link->is_on(); });
332   }
333   return failed;
334 }
335
336 void NetworkCm02Model::comm_action_set_bounds(const s4u::Host* src, const s4u::Host* dst, double size,
337                                               NetworkCm02Action* action, const std::vector<StandardLinkImpl*>& route,
338                                               const std::unordered_set<kernel::routing::NetZoneImpl*>& netzones,
339                                               double rate)
340 {
341   std::vector<s4u::Link*> s4u_route;
342   std::unordered_set<s4u::NetZone*> s4u_netzones;
343
344   /* transform data to user structures if necessary */
345   if (lat_factor_cb_ || bw_factor_cb_) {
346     std::for_each(route.begin(), route.end(),
347                   [&s4u_route](StandardLinkImpl* l) { s4u_route.push_back(l->get_iface()); });
348     std::for_each(netzones.begin(), netzones.end(),
349                   [&s4u_netzones](kernel::routing::NetZoneImpl* n) { s4u_netzones.insert(n->get_iface()); });
350   }
351   double bw_factor;
352   if (bw_factor_cb_) {
353     bw_factor = bw_factor_cb_(size, src, dst, s4u_route, s4u_netzones);
354   } else {
355     bw_factor = get_bandwidth_factor(size);
356   }
357   xbt_assert(bw_factor != 0, "Invalid param for comm %s -> %s. Bandwidth factor cannot be 0", src->get_cname(),
358              dst->get_cname());
359   action->set_rate_factor(bw_factor);
360
361   /* get mininum bandwidth among links in the route and multiply by correct factor
362    * ignore wi-fi links, they're not considered for bw_factors */
363   double bandwidth_bound = -1.0;
364   for (const auto* l : route) {
365     if (l->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI)
366       continue;
367     if (bandwidth_bound == -1.0 || l->get_bandwidth() < bandwidth_bound)
368       bandwidth_bound = l->get_bandwidth();
369   }
370
371   /* increase rate given by user considering the factor, since the actual rate will be
372    * modified by it */
373   rate = rate / bw_factor;
374   /* the bandwidth is determined by the minimum between flow and user's defined rate */
375   if (rate >= 0 && rate < bandwidth_bound)
376     bandwidth_bound = rate;
377   action->set_user_bound(bandwidth_bound);
378
379   action->lat_current_ = action->latency_;
380   if (lat_factor_cb_) {
381     action->latency_ *= lat_factor_cb_(size, src, dst, s4u_route, s4u_netzones);
382   } else {
383     action->latency_ *= get_latency_factor(size);
384   }
385 }
386
387 void NetworkCm02Model::comm_action_set_variable(NetworkCm02Action* action, const std::vector<StandardLinkImpl*>& route,
388                                                 const std::vector<StandardLinkImpl*>& back_route)
389 {
390   size_t constraints_per_variable = route.size();
391   constraints_per_variable += back_route.size();
392
393   if (action->latency_ > 0) {
394     action->set_variable(get_maxmin_system()->variable_new(action, 0.0, -1.0, constraints_per_variable));
395     if (is_update_lazy()) {
396       // add to the heap the event when the latency is paid
397       double date = action->latency_ + action->get_last_update();
398
399       ActionHeap::Type type = route.empty() ? ActionHeap::Type::normal : ActionHeap::Type::latency;
400
401       XBT_DEBUG("Added action (%p) one latency event at date %f", action, date);
402       get_action_heap().insert(action, date, type);
403     }
404   } else
405     action->set_variable(get_maxmin_system()->variable_new(action, 1.0, -1.0, constraints_per_variable));
406
407   /* after setting the variable, update the bounds depending on user configuration */
408   if (action->get_user_bound() < 0) {
409     get_maxmin_system()->update_variable_bound(
410         action->get_variable(), (action->lat_current_ > 0) ? cfg_tcp_gamma / (2.0 * action->lat_current_) : -1.0);
411   } else {
412     get_maxmin_system()->update_variable_bound(
413         action->get_variable(), (action->lat_current_ > 0)
414                                     ? std::min(action->get_user_bound(), cfg_tcp_gamma / (2.0 * action->lat_current_))
415                                     : action->get_user_bound());
416   }
417 }
418
419 Action* NetworkCm02Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate)
420 {
421   double latency = 0.0;
422   std::vector<StandardLinkImpl*> back_route;
423   std::vector<StandardLinkImpl*> route;
424   std::unordered_set<kernel::routing::NetZoneImpl*> netzones;
425
426   XBT_IN("(%s,%s,%g,%g)", src->get_cname(), dst->get_cname(), size, rate);
427
428   bool failed = comm_get_route_info(src, dst, latency, route, back_route, netzones);
429
430   NetworkCm02Action* action = comm_action_create(src, dst, size, route, failed);
431   action->sharing_penalty_  = latency;
432   action->latency_          = latency;
433
434   if (sg_weight_S_parameter > 0) {
435     action->sharing_penalty_ = std::accumulate(route.begin(), route.end(), action->sharing_penalty_,
436                                                [](double total, StandardLinkImpl* const& link) {
437                                                  return total + sg_weight_S_parameter / link->get_bandwidth();
438                                                });
439   }
440
441   /* setting bandwidth and latency bounds considering route and configured bw/lat factors */
442   comm_action_set_bounds(src, dst, size, action, route, netzones, rate);
443
444   /* creating the maxmin variable associated to this action */
445   comm_action_set_variable(action, route, back_route);
446
447   /* expand maxmin system to consider this communication in bw constraint for each link in route and back_route */
448   comm_action_expand_constraints(src, dst, action, route, back_route);
449   XBT_OUT();
450
451   return action;
452 }
453
454 /************
455  * Resource *
456  ************/
457 NetworkCm02Link::NetworkCm02Link(const std::string& name, double bandwidth, kernel::lmm::System* system)
458     : StandardLinkImpl(name)
459 {
460   bandwidth_.scale = 1.0;
461   bandwidth_.peak  = bandwidth;
462   this->set_constraint(system->constraint_new(this, bandwidth));
463 }
464
465 void NetworkCm02Link::apply_event(kernel::profile::Event* triggered, double value)
466 {
467   /* Find out which of my iterators was triggered, and react accordingly */
468   if (triggered == bandwidth_.event) {
469     set_bandwidth(value);
470     tmgr_trace_event_unref(&bandwidth_.event);
471
472   } else if (triggered == latency_.event) {
473     set_latency(value);
474     tmgr_trace_event_unref(&latency_.event);
475
476   } else if (triggered == get_state_event()) {
477     if (value > 0)
478       turn_on();
479     else
480       turn_off();
481     unref_state_event();
482   } else {
483     xbt_die("Unknown event!\n");
484   }
485
486   XBT_DEBUG("There was a resource state event, need to update actions related to the constraint (%p)",
487             get_constraint());
488 }
489
490 void NetworkCm02Link::set_bandwidth(double value)
491 {
492   double old_peak = bandwidth_.peak;
493   bandwidth_.peak = value;
494
495   get_model()->get_maxmin_system()->update_constraint_bound(get_constraint(), (bandwidth_.peak * bandwidth_.scale));
496
497   StandardLinkImpl::on_bandwidth_change();
498
499   if (sg_weight_S_parameter > 0) {
500     double delta = sg_weight_S_parameter / (bandwidth_.peak * bandwidth_.scale) -
501                    sg_weight_S_parameter / (old_peak * bandwidth_.scale);
502
503     const kernel::lmm::Element* elem     = nullptr;
504     const kernel::lmm::Element* nextelem = nullptr;
505     size_t numelem                       = 0;
506     while (const auto* var = get_constraint()->get_variable_safe(&elem, &nextelem, &numelem)) {
507       auto* action = static_cast<NetworkCm02Action*>(var->get_id());
508       action->sharing_penalty_ += delta;
509       if (not action->is_suspended())
510         get_model()->get_maxmin_system()->update_variable_penalty(action->get_variable(), action->sharing_penalty_);
511     }
512   }
513 }
514
515 void NetworkCm02Link::set_latency(double value)
516 {
517   latency_check(value);
518
519   double delta                         = value - latency_.peak;
520   const kernel::lmm::Element* elem     = nullptr;
521   const kernel::lmm::Element* nextelem = nullptr;
522   size_t numelem                       = 0;
523
524   latency_.scale = 1.0;
525   latency_.peak  = value;
526
527   while (const auto* var = get_constraint()->get_variable_safe(&elem, &nextelem, &numelem)) {
528     auto* action = static_cast<NetworkCm02Action*>(var->get_id());
529     action->lat_current_ += delta;
530     action->sharing_penalty_ += delta;
531     if (action->get_user_bound() < 0)
532       get_model()->get_maxmin_system()->update_variable_bound(action->get_variable(), NetworkModel::cfg_tcp_gamma /
533                                                                                           (2.0 * action->lat_current_));
534     else {
535       get_model()->get_maxmin_system()->update_variable_bound(
536           action->get_variable(),
537           std::min(action->get_user_bound(), NetworkModel::cfg_tcp_gamma / (2.0 * action->lat_current_)));
538
539       if (action->get_user_bound() < NetworkModel::cfg_tcp_gamma / (2.0 * action->lat_current_)) {
540         XBT_DEBUG("Flow is limited BYBANDWIDTH");
541       } else {
542         XBT_DEBUG("Flow is limited BYLATENCY, latency of flow is %f", action->lat_current_);
543       }
544     }
545     if (not action->is_suspended())
546       get_model()->get_maxmin_system()->update_variable_penalty(action->get_variable(), action->sharing_penalty_);
547   }
548 }
549
550 /**********
551  * Action *
552  **********/
553
554 void NetworkCm02Action::update_remains_lazy(double now)
555 {
556   if (not is_running())
557     return;
558
559   double delta = now - get_last_update();
560
561   if (get_remains_no_update() > 0) {
562     XBT_DEBUG("Updating action(%p): remains was %f, last_update was: %f", this, get_remains_no_update(),
563               get_last_update());
564     update_remains(get_last_value() * delta);
565
566     XBT_DEBUG("Updating action(%p): remains is now %f", this, get_remains_no_update());
567   }
568
569   update_max_duration(delta);
570
571   if ((get_remains_no_update() <= 0 && (get_variable()->get_penalty() > 0)) ||
572       ((get_max_duration() != NO_MAX_DURATION) && (get_max_duration() <= 0))) {
573     finish(Action::State::FINISHED);
574     get_model()->get_action_heap().remove(this);
575   }
576
577   set_last_update();
578   set_last_value(get_rate());
579 }
580
581 } // namespace resource
582 } // namespace kernel
583 } // namespace simgrid