Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplify writing in model setup + may fix issue with unit-tests
[simgrid.git] / src / surf / network_wifi.hpp
index 867045c3b816cf3f0c3eef32a02f1b6f926e22af..71850b588e6a011fea0686f5186841650ce50827 100644 (file)
@@ -42,8 +42,7 @@ class NetworkWifiLink : public LinkImpl {
   std::vector<Metric> decay_bandwidths_;
 
 public:
-  NetworkWifiLink(NetworkCm02Model* model, const std::string& name, std::vector<double> bandwidths,
-                  lmm::System* system);
+  NetworkWifiLink(const std::string& name, const std::vector<double>& bandwidths, lmm::System* system);
 
   void set_host_rate(const s4u::Host* host, int rate_level);
   /** @brief Get the AP rate associated to the host (or -1 if not associated to the AP) */
@@ -52,7 +51,7 @@ public:
   s4u::Link::SharingPolicy get_sharing_policy() const override;
   void apply_event(kernel::profile::Event*, double) override { THROW_UNIMPLEMENTED; }
   void set_bandwidth(double) override { THROW_UNIMPLEMENTED; }
-  LinkImpl* set_latency(double) override { THROW_UNIMPLEMENTED; }
+  void set_latency(double) override;
   void refresh_decay_bandwidths();
   bool toggle_decay_model();
   int get_host_count() const;