X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7e25358c2182b71a87fcd4628c4b614826d9dd30..5d00e5f256a27ccad82ab92aeea7943d2678e85b:/src/surf/network_ns3.hpp diff --git a/src/surf/network_ns3.hpp b/src/surf/network_ns3.hpp index ed65cac5a8..0f9900c2b9 100644 --- a/src/surf/network_ns3.hpp +++ b/src/surf/network_ns3.hpp @@ -18,11 +18,11 @@ class NetworkNS3Model : public NetworkModel { public: NetworkNS3Model(); ~NetworkNS3Model(); - LinkImpl* create_link(const std::string& name, double bandwidth, double latency, + LinkImpl* create_link(const std::string& name, const std::vector& bandwidth, double latency, s4u::Link::SharingPolicy policy) override; Action* communicate(s4u::Host* src, s4u::Host* dst, double size, double rate) override; - double next_occuring_event(double now) override; - bool next_occuring_event_is_idempotent() override { return false; } + double next_occurring_event(double now) override; + bool next_occurring_event_is_idempotent() override { return false; } void update_actions_state(double now, double delta) override; };