X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c46aba70aa4ccf22cc19fac31d451c7158e922dd..29cedcb0af274d0dd82224451767e8d01162d734:/src/surf/network_constant.hpp diff --git a/src/surf/network_constant.hpp b/src/surf/network_constant.hpp index 60f166e633..214993de62 100644 --- a/src/surf/network_constant.hpp +++ b/src/surf/network_constant.hpp @@ -34,13 +34,7 @@ namespace simgrid { bool next_occuring_event_isIdempotent() override {return true;} void updateActionsState(double now, double delta) override; - Link* - createLink(const char *name, - double bw_initial, tmgr_trace_t bw_trace, - double lat_initial, tmgr_trace_t lat_trace, - tmgr_trace_t state_trace, - e_surf_link_sharing_policy_t policy, - xbt_dict_t properties) override { DIE_IMPOSSIBLE; } + Link* createLink(const char *name, double bw, double lat, e_surf_link_sharing_policy_t policy, xbt_dict_t properties) override; }; /********** @@ -52,8 +46,8 @@ namespace simgrid { : NetworkAction(model_, size, false) , m_latInit(latency) { - m_latency = latency; - if (m_latency <= 0.0) { + latency_ = latency; + if (latency_ <= 0.0) { p_stateSet = getModel()->getDoneActionSet(); p_stateSet->push_back(*this); }