Logo AND Algorithmique Numérique Distribuée

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