X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/92931e4254055b5e99a1d45425a58741862ecf0a..abde25848321a069d7eef47a55a77ff80a3aa91f:/src/surf/network_cm02.hpp?ds=sidebyside diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp index 01a34f9bdd..42354ab83e 100644 --- a/src/surf/network_cm02.hpp +++ b/src/surf/network_cm02.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2020. 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. */ @@ -31,7 +31,7 @@ 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; + ~NetworkCm02Model() override = default; LinkImpl* create_link(const std::string& name, const std::vector& bandwidths, double latency, s4u::Link::SharingPolicy policy) override; void update_actions_state_lazy(double now, double delta) override; @@ -53,23 +53,6 @@ public: void set_latency(double value) override; }; -class NetworkWifiLink : public NetworkCm02Link { - /** @brief Hold every rates association between host and links (host name, rates id) */ - std::map host_rates_; - - /** @brief A link can have several bandwith attach to it (mostly use by wifi model) */ - std::vector bandwidths_; - -public: - NetworkWifiLink(NetworkCm02Model* model, const std::string& name, std::vector bandwidths, - s4u::Link::SharingPolicy policy, lmm::System* system); - - void set_host_rate(s4u::Host* host, int rate_level); - /** @brief Get the AP rate associated to the host (or -1 if not associated to the AP) */ - double get_host_rate(s4u::Host* host); - s4u::Link::SharingPolicy get_sharing_policy() override; -}; - /********** * Action * **********/ @@ -77,8 +60,9 @@ 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; + NetworkCm02Action(Model* model, s4u::Host& src, s4u::Host& dst, double cost, bool failed) + : NetworkAction(model, src, dst, cost, failed){}; + ~NetworkCm02Action() override = default; void update_remains_lazy(double now) override; }; }