X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/deaf4c6f1cb3026b053ca861fe77313c78385be7..0ea1a3dca97a66f81466333806853c97af7eb398:/src/surf/network_constant.hpp diff --git a/src/surf/network_constant.hpp b/src/surf/network_constant.hpp index 198dd8ac4e..23c37acd40 100644 --- a/src/surf/network_constant.hpp +++ b/src/surf/network_constant.hpp @@ -27,8 +27,8 @@ namespace simgrid { public: kernel::resource::Action* communicate(simgrid::s4u::Host* src, simgrid::s4u::Host* dst, double size, double rate) override; - double nextOccuringEvent(double now) override; - void updateActionsState(double now, double delta) override; + double next_occuring_event(double now) override; + void update_actions_state(double now, double delta) override; LinkImpl* createLink(const std::string& name, double bw, double lat, e_surf_link_sharing_policy_t policy) override; @@ -42,7 +42,7 @@ namespace simgrid { NetworkConstantAction(NetworkConstantModel *model_, double size, double latency); ~NetworkConstantAction(); double initialLatency_; - void updateRemainingLazy(double now) override; + void update_remains_lazy(double now) override; }; }