X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/171293b2177631594dafc0a8449ee370aebdd305..6c56800bdad43cabb6c870c9163bbeea694d6692:/src/surf/network_smpi.hpp diff --git a/src/surf/network_smpi.hpp b/src/surf/network_smpi.hpp index cecc750d38..cd2133d1c6 100644 --- a/src/surf/network_smpi.hpp +++ b/src/surf/network_smpi.hpp @@ -1,9 +1,12 @@ -/* Copyright (c) 2013-2018. The SimGrid Team. +/* 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. */ +#ifndef SIMGRID_SURF_NETWORK_SMPI_HPP +#define SIMGRID_SURF_NETWORK_SMPI_HPP + #include #include "network_cm02.hpp" @@ -14,13 +17,17 @@ namespace resource { class XBT_PRIVATE NetworkSmpiModel : public NetworkCm02Model { public: - NetworkSmpiModel(); - ~NetworkSmpiModel(); + using NetworkCm02Model::NetworkCm02Model; + + double get_latency_factor(double size) override; + double get_bandwidth_factor(double size) override; - double get_latency_factor(double size); - double get_bandwidth_factor(double size); - double get_bandwidth_constraint(double rate, double bound, double size); +protected: + void check_lat_factor_cb() override; + void check_bw_factor_cb() override; }; } // namespace resource } // namespace kernel -} +} // namespace simgrid + +#endif