Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
0fc243c5a0a27b64bc18632a96cb352525e8b9b3
[simgrid.git] / src / surf / host_ptask_L07.cpp
1 /* Copyright (c) 2007-2010, 2013-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <cstdlib>
8
9 #include <algorithm>
10
11 #include "host_ptask_L07.hpp"
12
13 #include "cpu_interface.hpp"
14 #include "surf_routing.hpp"
15 #include "xbt/lib.h"
16
17 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_host);
18
19 static int ptask_host_count = 0;
20 static xbt_dict_t ptask_parallel_task_link_set = NULL;
21 lmm_system_t ptask_maxmin_system = NULL;
22
23
24 /**************************************/
25 /*** Resource Creation & Destruction **/
26 /**************************************/
27
28 static void ptask_netlink_parse_init(sg_platf_link_cbarg_t link)
29 {
30   netlink_parse_init(link);
31   current_property_set = NULL;
32 }
33
34 void surf_host_model_init_ptask_L07(void)
35 {
36   XBT_INFO("Switching to the L07 model to handle parallel tasks.");
37   xbt_assert(!surf_cpu_model_pm, "CPU model type already defined");
38   xbt_assert(!surf_network_model, "network model type already defined");
39
40   // Define the callbacks to parse the XML
41   sg_platf_link_add_cb(ptask_netlink_parse_init);
42   sg_platf_postparse_add_cb(host_add_traces);
43
44   surf_host_model = new simgrid::surf::HostL07Model();
45   simgrid::surf::Model *model = surf_host_model;
46   xbt_dynar_push(all_existing_models, &model);
47 }
48
49
50 namespace simgrid {
51 namespace surf {
52
53 HostL07Model::HostL07Model() : HostModel() {
54   if (!ptask_maxmin_system)
55         ptask_maxmin_system = lmm_system_new(1);
56   surf_host_model = NULL;
57   surf_network_model = new NetworkL07Model(this);
58   surf_cpu_model_pm = new CpuL07Model(this);
59
60   routing_model_create(surf_network_model->createLink("__loopback__",
61                                                           498000000, NULL,
62                                                           0.000015, NULL,
63                                                           SURF_RESOURCE_ON, NULL,
64                                                           SURF_LINK_FATPIPE, NULL));
65 }
66
67 HostL07Model::~HostL07Model() {
68   xbt_dict_free(&ptask_parallel_task_link_set);
69
70   delete surf_cpu_model_pm;
71   delete surf_network_model;
72   ptask_host_count = 0;
73
74   if (ptask_maxmin_system) {
75     lmm_system_free(ptask_maxmin_system);
76     ptask_maxmin_system = NULL;
77   }
78 }
79
80 double HostL07Model::shareResources(double /*now*/)
81 {
82   L07Action *action;
83
84   ActionList *running_actions = getRunningActionSet();
85   double min = this->shareResourcesMaxMin(running_actions,
86                                               ptask_maxmin_system,
87                                               bottleneck_solve);
88
89   for(ActionList::iterator it(running_actions->begin()), itend(running_actions->end())
90          ; it != itend ; ++it) {
91         action = static_cast<L07Action*>(&*it);
92     if (action->m_latency > 0) {
93       if (min < 0) {
94         min = action->m_latency;
95         XBT_DEBUG("Updating min (value) with %p (start %f): %f", action,
96                action->getStartTime(), min);
97       } else if (action->m_latency < min) {
98         min = action->m_latency;
99         XBT_DEBUG("Updating min (latency) with %p (start %f): %f", action,
100                action->getStartTime(), min);
101       }
102     }
103   }
104
105   XBT_DEBUG("min value : %f", min);
106
107   return min;
108 }
109
110 void HostL07Model::updateActionsState(double /*now*/, double delta) {
111
112   L07Action *action;
113   ActionList *actionSet = getRunningActionSet();
114
115   for(ActionList::iterator it = actionSet->begin(), itNext = it
116          ; it != actionSet->end()
117          ; it =  itNext) {
118         ++itNext;
119     action = static_cast<L07Action*>(&*it);
120     if (action->m_latency > 0) {
121       if (action->m_latency > delta) {
122         double_update(&(action->m_latency), delta, sg_surf_precision);
123       } else {
124         action->m_latency = 0.0;
125       }
126       if ((action->m_latency == 0.0) && (action->isSuspended() == 0)) {
127         action->updateBound();
128         lmm_update_variable_weight(ptask_maxmin_system, action->getVariable(), 1.0);
129       }
130     }
131     XBT_DEBUG("Action (%p) : remains (%g) updated by %g.",
132            action, action->getRemains(), lmm_variable_getvalue(action->getVariable()) * delta);
133     action->updateRemains(lmm_variable_getvalue(action->getVariable()) * delta);
134
135     if (action->getMaxDuration() != NO_MAX_DURATION)
136       action->updateMaxDuration(delta);
137
138     XBT_DEBUG("Action (%p) : remains (%g).", action, action->getRemains());
139
140     /* In the next if cascade, the action can be finished either because:
141      *  - The amount of remaining work reached 0
142      *  - The max duration was reached
143      * If it's not done, it may have failed.
144      */
145
146     if ((action->getRemains() <= 0) &&
147         (lmm_get_variable_weight(action->getVariable()) > 0)) {
148       action->finish();
149       action->setState(SURF_ACTION_DONE);
150     } else if ((action->getMaxDuration() != NO_MAX_DURATION) &&
151                (action->getMaxDuration() <= 0)) {
152       action->finish();
153       action->setState(SURF_ACTION_DONE);
154     } else {
155       /* Need to check that none of the model has failed */
156       lmm_constraint_t cnst = NULL;
157       int i = 0;
158
159       while ((cnst = lmm_get_cnst_from_var(ptask_maxmin_system, action->getVariable(), i++))) {
160         void *constraint_id = lmm_constraint_id(cnst);
161
162         if (static_cast<Host*>(constraint_id)->getState() == SURF_RESOURCE_OFF) {
163           XBT_DEBUG("Action (%p) Failed!!", action);
164           action->finish();
165           action->setState(SURF_ACTION_FAILED);
166           break;
167         }
168       }
169     }
170   }
171   return;
172 }
173
174 Action *HostL07Model::executeParallelTask(int host_nb,
175                                           sg_host_t*host_list,
176                                                                                   double *flops_amount,
177                                                                                   double *bytes_amount,
178                                                                                   double rate)
179 {
180   L07Action *action = new L07Action(this, 1, 0);
181   unsigned int cpt;
182   int nb_link = 0;
183   int nb_host = 0;
184   double latency = 0.0;
185
186   action->p_edgeList->reserve(host_nb);
187   for (int i = 0; i<host_nb; i++)
188           action->p_edgeList->push_back(sg_host_edge(host_list[i]));
189
190   if (ptask_parallel_task_link_set == NULL)
191     ptask_parallel_task_link_set = xbt_dict_new_homogeneous(NULL);
192
193   xbt_dict_reset(ptask_parallel_task_link_set);
194
195   /* Compute the number of affected resources... */
196   for (int i = 0; i < host_nb; i++) {
197     for (int j = 0; j < host_nb; j++) {
198       xbt_dynar_t route=NULL;
199
200       if (bytes_amount[i * host_nb + j] > 0) {
201         double lat=0.0;
202         unsigned int cpt;
203         void *_link;
204         LinkL07 *link;
205
206         routing_platf->getRouteAndLatency((*action->p_edgeList)[i], (*action->p_edgeList)[j],
207                                                   &route, &lat);
208         latency = MAX(latency, lat);
209
210         xbt_dynar_foreach(route, cpt, _link) {
211            link = static_cast<LinkL07*>(_link);
212            xbt_dict_set(ptask_parallel_task_link_set, link->getName(), link, NULL);
213         }
214       }
215     }
216   }
217
218   nb_link = xbt_dict_length(ptask_parallel_task_link_set);
219   xbt_dict_reset(ptask_parallel_task_link_set);
220
221   for (int i = 0; i < host_nb; i++)
222     if (flops_amount[i] > 0)
223       nb_host++;
224
225   XBT_DEBUG("Creating a parallel task (%p) with %d cpus and %d links.",
226          action, host_nb, nb_link);
227   action->m_suspended = 0; /* valgrind seems to want it despite the calloc... */
228   action->p_computationAmount = flops_amount;
229   action->p_communicationAmount = bytes_amount;
230   action->m_latency = latency;
231   action->m_rate = rate;
232
233   action->p_variable = lmm_variable_new(ptask_maxmin_system, action, 1.0,
234                                         (rate > 0 ? rate : -1.0),
235                                                                                 host_nb + nb_link);
236
237   if (action->m_latency > 0)
238     lmm_update_variable_weight(ptask_maxmin_system, action->getVariable(), 0.0);
239
240   for (int i = 0; i < host_nb; i++)
241     lmm_expand(ptask_maxmin_system,
242                sg_host_surfcpu(host_list[i])->getConstraint(),
243                action->getVariable(), flops_amount[i]);
244
245   for (int i = 0; i < host_nb; i++) {
246     for (int j = 0; j < host_nb; j++) {
247       void *_link;
248
249       xbt_dynar_t route=NULL;
250       if (bytes_amount[i * host_nb + j] == 0.0)
251         continue;
252
253       routing_platf->getRouteAndLatency((*action->p_edgeList)[i], (*action->p_edgeList)[j],
254                                             &route, NULL);
255
256       xbt_dynar_foreach(route, cpt, _link) {
257         LinkL07 *link = static_cast<LinkL07*>(_link);
258         lmm_expand_add(ptask_maxmin_system, link->getConstraint(),
259                        action->getVariable(),
260                        bytes_amount[i * host_nb + j]);
261       }
262     }
263   }
264
265   if (nb_link + nb_host == 0) {
266     action->setCost(1.0);
267     action->setRemains(0.0);
268   }
269
270   return action;
271 }
272
273 Host *HostL07Model::createHost(const char *name,RoutingEdge *netElm, Cpu *cpu)
274 {
275   HostL07 *host = new HostL07(this, name, NULL, netElm, cpu);
276
277   surf_callback_emit(hostCreatedCallbacks, host);
278   simgrid::Host::by_name_or_create(name)->set_facet<Host>(host);
279
280   return host;
281 }
282
283 Action *NetworkL07Model::communicate(RoutingEdge *src, RoutingEdge *dst,
284                                        double size, double rate)
285 {
286   sg_host_t*host_list = xbt_new0(sg_host_t, 2);
287   double *flops_amount = xbt_new0(double, 2);
288   double *bytes_amount = xbt_new0(double, 4);
289   Action *res = NULL;
290
291   host_list[0] = sg_host_by_name(src->getName());
292   host_list[1] = sg_host_by_name(dst->getName());
293   bytes_amount[1] = size;
294
295   res = p_hostModel->executeParallelTask(2, host_list,
296                                     flops_amount,
297                                     bytes_amount, rate);
298
299   return res;
300 }
301
302 xbt_dynar_t HostL07Model::getRoute(Host *src, Host *dst)
303 {
304   xbt_dynar_t route=NULL;
305   routing_platf->getRouteAndLatency(src->p_netElm, dst->p_netElm, &route, NULL);
306   return route;
307 }
308
309 Cpu *CpuL07Model::createCpu(const char *name,  xbt_dynar_t powerPeak,
310                           int pstate, double power_scale,
311                           tmgr_trace_t power_trace, int core,
312                           e_surf_resource_state_t state_initial,
313                           tmgr_trace_t state_trace,
314                           xbt_dict_t cpu_properties)
315 {
316   double power_initial = xbt_dynar_get_as(powerPeak, pstate, double);
317   CpuL07 *cpu = new CpuL07(this, name, cpu_properties,
318                                      power_initial, power_scale, power_trace,
319                          core, state_initial, state_trace);
320   return cpu;
321 }
322
323 Link* NetworkL07Model::createLink(const char *name,
324                                  double bw_initial,
325                                  tmgr_trace_t bw_trace,
326                                  double lat_initial,
327                                  tmgr_trace_t lat_trace,
328                                  e_surf_resource_state_t state_initial,
329                                  tmgr_trace_t state_trace,
330                                  e_surf_link_sharing_policy_t policy,
331                                  xbt_dict_t properties)
332 {
333   xbt_assert(!Link::byName(name),
334                  "Link '%s' declared several times in the platform file.", name);
335
336   Link* link = new LinkL07(this, name, properties,
337                              bw_initial, bw_trace,
338                                          lat_initial, lat_trace,
339                                          state_initial, state_trace,
340                                          policy);
341   surf_callback_emit(networkLinkCreatedCallbacks, link);
342   return link;
343 }
344
345 void HostL07Model::addTraces()
346 {
347   xbt_dict_cursor_t cursor = NULL;
348   char *trace_name, *elm;
349
350   if (!trace_connect_list_host_avail)
351     return;
352
353   /* Connect traces relative to cpu */
354   xbt_dict_foreach(trace_connect_list_host_avail, cursor, trace_name, elm) {
355     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
356     CpuL07 *host = static_cast<CpuL07*>(sg_host_surfcpu(sg_host_by_name(elm)));
357
358     xbt_assert(host, "Host %s undefined", elm);
359     xbt_assert(trace, "Trace %s undefined", trace_name);
360
361     host->p_stateEvent = tmgr_history_add_trace(history, trace, 0.0, 0, host);
362   }
363
364   xbt_dict_foreach(trace_connect_list_power, cursor, trace_name, elm) {
365     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
366     CpuL07 *host = static_cast<CpuL07*>(sg_host_surfcpu(sg_host_by_name(elm)));
367
368     xbt_assert(host, "Host %s undefined", elm);
369     xbt_assert(trace, "Trace %s undefined", trace_name);
370
371     host->p_speedEvent = tmgr_history_add_trace(history, trace, 0.0, 0, host);
372   }
373
374   /* Connect traces relative to network */
375   xbt_dict_foreach(trace_connect_list_link_avail, cursor, trace_name, elm) {
376     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
377     LinkL07 *link = static_cast<LinkL07*>(Link::byName(elm));
378
379     xbt_assert(link, "Link %s undefined", elm);
380     xbt_assert(trace, "Trace %s undefined", trace_name);
381
382     link->p_stateEvent = tmgr_history_add_trace(history, trace, 0.0, 0, link);
383   }
384
385   xbt_dict_foreach(trace_connect_list_bandwidth, cursor, trace_name, elm) {
386     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
387     LinkL07 *link = static_cast<LinkL07*>(Link::byName(elm));
388
389     xbt_assert(link, "Link %s undefined", elm);
390     xbt_assert(trace, "Trace %s undefined", trace_name);
391
392     link->p_bwEvent = tmgr_history_add_trace(history, trace, 0.0, 0, link);
393   }
394
395   xbt_dict_foreach(trace_connect_list_latency, cursor, trace_name, elm) {
396     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
397     LinkL07 *link = static_cast<LinkL07*>(Link::byName(elm));
398
399     xbt_assert(link, "Link %s undefined", elm);
400     xbt_assert(trace, "Trace %s undefined", trace_name);
401
402     link->p_latEvent = tmgr_history_add_trace(history, trace, 0.0, 0, link);
403   }
404 }
405
406 /************
407  * Resource *
408  ************/
409
410 HostL07::HostL07(HostModel *model, const char* name, xbt_dict_t props, RoutingEdge *netElm, Cpu *cpu)
411   : Host(model, name, props, NULL, netElm, cpu)
412 {
413 }
414
415 CpuL07::CpuL07(CpuL07Model *model, const char* name, xbt_dict_t props,
416                      double speedInitial, double speedScale, tmgr_trace_t speedTrace,
417                            int core, e_surf_resource_state_t state_initial, tmgr_trace_t state_trace)
418  : Cpu(model, name, props, lmm_constraint_new(ptask_maxmin_system, this, speedInitial * speedScale),
419            core, speedInitial, speedScale, state_initial)
420 {
421   xbt_assert(m_speedScale > 0, "Power has to be >0");
422
423   if (speedTrace)
424     p_speedEvent = tmgr_history_add_trace(history, speedTrace, 0.0, 0, this);
425   else
426     p_speedEvent = NULL;
427
428   if (state_trace)
429         p_stateEvent = tmgr_history_add_trace(history, state_trace, 0.0, 0, this);
430 }
431
432 LinkL07::LinkL07(NetworkL07Model *model, const char* name, xbt_dict_t props,
433                          double bw_initial,
434                          tmgr_trace_t bw_trace,
435                          double lat_initial,
436                          tmgr_trace_t lat_trace,
437                          e_surf_resource_state_t state_initial,
438                          tmgr_trace_t state_trace,
439                          e_surf_link_sharing_policy_t policy)
440  : Link(model, name, props, lmm_constraint_new(ptask_maxmin_system, this, bw_initial), history, state_trace)
441 {
442   m_bwCurrent = bw_initial;
443   if (bw_trace)
444     p_bwEvent = tmgr_history_add_trace(history, bw_trace, 0.0, 0, this);
445
446   setState(state_initial);
447   m_latCurrent = lat_initial;
448
449   if (lat_trace)
450         p_latEvent = tmgr_history_add_trace(history, lat_trace, 0.0, 0, this);
451
452   if (policy == SURF_LINK_FATPIPE)
453         lmm_constraint_shared(getConstraint());
454 }
455
456 Action *CpuL07::execute(double size)
457 {
458   sg_host_t*host_list = xbt_new0(sg_host_t, 1);
459   double *flops_amount = xbt_new0(double, 1);
460   double *bytes_amount = xbt_new0(double, 1);
461
462   host_list[0] = sg_host_by_name(getName());
463   flops_amount[0] = size;
464
465   return static_cast<CpuL07Model*>(getModel())
466     ->p_hostModel
467     ->executeParallelTask( 1, host_list, flops_amount, bytes_amount, -1);
468 }
469
470 Action *CpuL07::sleep(double duration)
471 {
472   L07Action *action = NULL;
473
474   XBT_IN("(%s,%g)", getName(), duration);
475
476   action = static_cast<L07Action*>(execute(1.0));
477   action->m_maxDuration = duration;
478   action->m_suspended = 2;
479   lmm_update_variable_weight(ptask_maxmin_system, action->getVariable(), 0.0);
480
481   XBT_OUT();
482   return action;
483 }
484
485 bool CpuL07::isUsed(){
486   return lmm_constraint_used(ptask_maxmin_system, getConstraint());
487 }
488
489 bool LinkL07::isUsed(){
490   return lmm_constraint_used(ptask_maxmin_system, getConstraint());
491 }
492
493 void CpuL07::updateState(tmgr_trace_event_t event_type, double value, double /*date*/){
494   XBT_DEBUG("Updating cpu %s (%p) with value %g", getName(), this, value);
495   if (event_type == p_speedEvent) {
496           m_speedScale = value;
497     lmm_update_constraint_bound(ptask_maxmin_system, getConstraint(), m_speedPeak * m_speedScale);
498     if (tmgr_trace_event_free(event_type))
499       p_speedEvent = NULL;
500   } else if (event_type == p_stateEvent) {
501     if (value > 0)
502       setState(SURF_RESOURCE_ON);
503     else
504       setState(SURF_RESOURCE_OFF);
505     if (tmgr_trace_event_free(event_type))
506       p_stateEvent = NULL;
507   } else {
508     XBT_CRITICAL("Unknown event ! \n");
509     xbt_abort();
510   }
511   return;
512 }
513
514 void LinkL07::updateState(tmgr_trace_event_t event_type, double value, double date) {
515   XBT_DEBUG("Updating link %s (%p) with value=%f for date=%g", getName(), this, value, date);
516   if (event_type == p_bwEvent) {
517     updateBandwidth(value, date);
518     if (tmgr_trace_event_free(event_type))
519       p_bwEvent = NULL;
520   } else if (event_type == p_latEvent) {
521     updateLatency(value, date);
522     if (tmgr_trace_event_free(event_type))
523       p_latEvent = NULL;
524   } else if (event_type == p_stateEvent) {
525     if (value > 0)
526       setState(SURF_RESOURCE_ON);
527     else
528       setState(SURF_RESOURCE_OFF);
529     if (tmgr_trace_event_free(event_type))
530       p_stateEvent = NULL;
531   } else {
532     XBT_CRITICAL("Unknown event ! \n");
533     xbt_abort();
534   }
535   return;
536 }
537
538 e_surf_resource_state_t HostL07::getState() {
539   return p_cpu->getState();
540 }
541
542
543 double LinkL07::getBandwidth()
544 {
545   return m_bwCurrent;
546 }
547
548 void LinkL07::updateBandwidth(double value, double date)
549 {
550   m_bwCurrent = value;
551   lmm_update_constraint_bound(ptask_maxmin_system, getConstraint(), m_bwCurrent);
552 }
553
554 void LinkL07::updateLatency(double value, double date)
555 {
556   lmm_variable_t var = NULL;
557   L07Action *action;
558   lmm_element_t elem = NULL;
559
560   m_latCurrent = value;
561   while ((var = lmm_get_var_from_cnst(ptask_maxmin_system, getConstraint(), &elem))) {
562     action = static_cast<L07Action*>(lmm_variable_id(var));
563     action->updateBound();
564   }
565 }
566
567 /**********
568  * Action *
569  **********/
570
571 L07Action::~L07Action(){
572   free(p_communicationAmount);
573   free(p_computationAmount);
574 }
575
576 void L07Action::updateBound()
577 {
578   double lat_current = 0.0;
579   double lat_bound = -1.0;
580   int i, j;
581
582   int hostNb = p_edgeList->size();
583
584   for (i = 0; i < hostNb; i++) {
585     for (j = 0; j < hostNb; j++) {
586       xbt_dynar_t route=NULL;
587
588       if (p_communicationAmount[i * hostNb + j] > 0) {
589         double lat = 0.0;
590         routing_platf->getRouteAndLatency((*p_edgeList)[i], (*p_edgeList)[j],
591                                                           &route, &lat);
592
593         lat_current = MAX(lat_current, lat * p_communicationAmount[i * hostNb + j]);
594       }
595     }
596   }
597   lat_bound = sg_tcp_gamma / (2.0 * lat_current);
598   XBT_DEBUG("action (%p) : lat_bound = %g", this, lat_bound);
599   if ((m_latency == 0.0) && (m_suspended == 0)) {
600     if (m_rate < 0)
601       lmm_update_variable_bound(ptask_maxmin_system, getVariable(), lat_bound);
602     else
603       lmm_update_variable_bound(ptask_maxmin_system, getVariable(),
604         std::min(m_rate, lat_bound));
605   }
606 }
607
608 int L07Action::unref()
609 {
610   m_refcount--;
611   if (!m_refcount) {
612     if (action_hook.is_linked())
613           p_stateSet->erase(p_stateSet->iterator_to(*this));
614     if (getVariable())
615       lmm_variable_free(ptask_maxmin_system, getVariable());
616     delete this;
617     return 1;
618   }
619   return 0;
620 }
621
622 void L07Action::cancel()
623 {
624   setState(SURF_ACTION_FAILED);
625   return;
626 }
627
628 void L07Action::suspend()
629 {
630   XBT_IN("(%p))", this);
631   if (m_suspended != 2) {
632     m_suspended = 1;
633     lmm_update_variable_weight(ptask_maxmin_system, getVariable(), 0.0);
634   }
635   XBT_OUT();
636 }
637
638 void L07Action::resume()
639 {
640   XBT_IN("(%p)", this);
641   if (m_suspended != 2) {
642     lmm_update_variable_weight(ptask_maxmin_system, getVariable(), 1.0);
643     m_suspended = 0;
644   }
645   XBT_OUT();
646 }
647
648 bool L07Action::isSuspended()
649 {
650   return m_suspended == 1;
651 }
652
653 void L07Action::setMaxDuration(double duration)
654 {                               /* FIXME: should inherit */
655   XBT_IN("(%p,%g)", this, duration);
656   m_maxDuration = duration;
657   XBT_OUT();
658 }
659
660 void L07Action::setPriority(double priority)
661 {                               /* FIXME: should inherit */
662   XBT_IN("(%p,%g)", this, priority);
663   m_priority = priority;
664   XBT_OUT();
665 }
666
667 double L07Action::getRemains()
668 {
669   XBT_IN("(%p)", this);
670   XBT_OUT();
671   return m_remains;
672 }
673
674 }
675 }