X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ec4e2d87d99b8ad76c9096033eb858e9052b09fa..8d777265e12b0b9c5f13fecfc719474cdd214e9e:/src/surf/network_constant.hpp diff --git a/src/surf/network_constant.hpp b/src/surf/network_constant.hpp index 8f3e1b9427..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,14 +63,9 @@ public: } p_variable = NULL; }; - int unref(); - void cancel(); - void setCategory(const char *category); - void suspend(); - void resume(); - bool isSuspended(); + int unref() override; + void cancel() override; double m_latInit; - int m_suspended; }; }