X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/957da2691fc483ae05228fc6ef815af5944452af..9bcb63f930aaeacc097bd7bb46d6c3ee85743331:/src/surf/network_cm02.hpp diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp index 8cd453e390..4f90b1ded2 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. */ @@ -47,29 +47,12 @@ class NetworkCm02Link : public LinkImpl { public: NetworkCm02Link(NetworkCm02Model* model, const std::string& name, double bandwidth, double latency, s4u::Link::SharingPolicy policy, lmm::System* system); - virtual ~NetworkCm02Link() = default; + ~NetworkCm02Link() override = default; void apply_event(kernel::profile::Event* event, double value) override; void set_bandwidth(double value) override; 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 Hold every rates available for this Access Point */ - // double* rates; FIXME: unused - - /** @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(sg_host_t host, int rate_level); -}; - /********** * Action * **********/ @@ -77,7 +60,8 @@ 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){}; + NetworkCm02Action(Model* model, s4u::Host& src, s4u::Host& dst, double cost, bool failed) + : NetworkAction(model, src, dst, cost, failed){}; virtual ~NetworkCm02Action() = default; void update_remains_lazy(double now) override; };