X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6..cf6a1d5f1eddea2b377415ab57c5185058488269:/src/surf/network_cm02.hpp diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp index e6648394f5..dfa4e8ea69 100644 --- a/src/surf/network_cm02.hpp +++ b/src/surf/network_cm02.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -30,10 +30,9 @@ class XBT_PRIVATE NetworkSmpiModel; class NetworkCm02Model : public NetworkModel { public: - explicit NetworkCm02Model(lmm::System* (*make_new_sys)(bool) = &lmm::make_new_maxmin_system); - virtual ~NetworkCm02Model() = default; - LinkImpl* create_link(const std::string& name, const std::vector& bandwidths, double latency, - s4u::Link::SharingPolicy policy) override; + explicit NetworkCm02Model(const std::string& name); + LinkImpl* create_link(const std::string& name, const std::vector& bandwidths) final; + LinkImpl* create_wifi_link(const std::string& name, const std::vector& bandwidths) override; void update_actions_state_lazy(double now, double delta) override; void update_actions_state_full(double now, double delta) override; Action* communicate(s4u::Host* src, s4u::Host* dst, double size, double rate) override; @@ -45,12 +44,10 @@ public: class NetworkCm02Link : public LinkImpl { public: - NetworkCm02Link(NetworkCm02Model* model, const std::string& name, double bandwidth, double latency, - s4u::Link::SharingPolicy policy, lmm::System* system); - ~NetworkCm02Link() override = default; + NetworkCm02Link(const std::string& name, double bandwidth, lmm::System* system); void apply_event(kernel::profile::Event* event, double value) override; void set_bandwidth(double value) override; - void set_latency(double value) override; + LinkImpl* set_latency(double value) override; }; /********** @@ -60,8 +57,7 @@ class NetworkCm02Action : public NetworkAction { friend Action* NetworkCm02Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate); public: - NetworkCm02Action(Model* model, double cost, bool failed) : NetworkAction(model, cost, failed){}; - virtual ~NetworkCm02Action() = default; + using NetworkAction::NetworkAction; void update_remains_lazy(double now) override; }; }