X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a9c73193ecafbb368417633205702fe2499bb83..a13d43daf0284cec291d65f0585fd2a44e9d87fd:/src/surf/network_cm02.hpp diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp index 7cdf4f554b..f1c6b68d4d 100644 --- a/src/surf/network_cm02.hpp +++ b/src/surf/network_cm02.hpp @@ -29,12 +29,6 @@ class XBT_PRIVATE NetworkSmpiModel; } } -/********* - * Tools * - *********/ - -XBT_PRIVATE void net_define_callbacks(void); - /********* * Model * *********/ @@ -47,18 +41,14 @@ public: NetworkCm02Model(); ~NetworkCm02Model() { } Link* createLink(const char *name, - double bw_initial, - tmgr_trace_t bw_trace, - double lat_initial, - tmgr_trace_t lat_trace, - int initiallyOn, + 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; void updateActionsStateLazy(double now, double delta) override; void updateActionsStateFull(double now, double delta) override; - Action *communicate(NetCard *src, NetCard *dst, - double size, double rate) override; + Action *communicate(NetCard *src, NetCard *dst, double size, double rate) override; bool next_occuring_event_isIdempotent() override {return true;} virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {}; protected: @@ -72,21 +62,17 @@ protected: class NetworkCm02Link : public Link { public: NetworkCm02Link(NetworkCm02Model *model, const char *name, xbt_dict_t props, - lmm_system_t system, - double constraint_value, - int initiallyOn, - tmgr_trace_t state_trace, - double metric_peak, - tmgr_trace_t metric_trace, - double lat_initial, - tmgr_trace_t lat_trace, - e_surf_link_sharing_policy_t policy); - void apply_event(tmgr_trace_iterator_t event_type, double value) override; + lmm_system_t system, + double constraint_value, + tmgr_trace_t state_trace, + double bw_peak, tmgr_trace_t bw_trace, + double lat_initial, tmgr_trace_t lat_trace, + e_surf_link_sharing_policy_t policy); + + void apply_event(tmgr_trace_iterator_t event, double value) override; void updateBandwidth(double value) override; void updateLatency(double value) override; virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {}; - - };