Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[DVFS] Update HostDvfs class documentation
[simgrid.git] / src / surf / network_smpi.hpp
1 /* Copyright (c) 2013-2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <xbt/base.h>
8
9 #include "network_cm02.hpp"
10
11 namespace simgrid {
12   namespace surf {
13
14     class XBT_PRIVATE NetworkSmpiModel : public NetworkCm02Model {
15     public:
16       NetworkSmpiModel();
17       ~NetworkSmpiModel();
18
19       double latencyFactor(double size);
20       double bandwidthFactor(double size);
21       double bandwidthConstraint(double rate, double bound, double size);
22     };
23   }
24 }