X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6acd0053f6cf085fbba1ce9f026e415a43ab5b32..18801754584f9ffc3e7c2407008ac24c0eb57926:/src/surf/network_constant.hpp diff --git a/src/surf/network_constant.hpp b/src/surf/network_constant.hpp index 742ed64483..bd9b1ee8f7 100644 --- a/src/surf/network_constant.hpp +++ b/src/surf/network_constant.hpp @@ -29,22 +29,22 @@ public: NetworkConstantModel() : NetworkModel() { }; ~NetworkConstantModel() { } - Action *communicate(NetCard *src, NetCard *dst, double size, double rate); - double shareResources(double now); - void updateActionsState(double now, double delta); - bool shareResourcesIsIdempotent() {return true;} + Action *communicate(NetCard *src, NetCard *dst, double size, double rate) override; + double shareResources(double now) override; + void updateActionsState(double now, double delta) override; + bool shareResourcesIsIdempotent() override {return true;} - Link* createLink(const char *name, - double bw_initial, - tmgr_trace_t bw_trace, - double lat_initial, - tmgr_trace_t lat_trace, - e_surf_resource_state_t state_initial, - tmgr_trace_t state_trace, - e_surf_link_sharing_policy_t policy, - xbt_dict_t properties) { DIE_IMPOSSIBLE; } - void addTraces() { DIE_IMPOSSIBLE; } - xbt_dynar_t getRoute(NetCard *src, NetCard *dst) { DIE_IMPOSSIBLE; } + Link* + createLink(const char *name, + double bw_initial, + tmgr_trace_t bw_trace, + double lat_initial, + tmgr_trace_t lat_trace, + int initiallyOn, + tmgr_trace_t state_trace, + e_surf_link_sharing_policy_t policy, + xbt_dict_t properties) override { DIE_IMPOSSIBLE; } + void addTraces() override { DIE_IMPOSSIBLE; } }; /********** @@ -63,9 +63,8 @@ public: } p_variable = NULL; }; - int unref(); - void cancel(); - void setCategory(const char *category); + int unref() override; + void cancel() override; double m_latInit; };