Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanups: there is no random in the platforms since a while
[simgrid.git] / src / surf / surf_routing_vivaldi.hpp
1 /* Copyright (c) 2013-2015. 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/swag.h"
8
9 #include "surf_routing_generic.hpp"
10
11 #ifndef SURF_ROUTING_VIVALDI_HPP_
12 #define SURF_ROUTING_VIVALDI_HPP_
13
14 /* ************************************************** */
15 /* **************  Vivaldi ROUTING   **************** */
16 XBT_PRIVATE AS_t model_vivaldi_create(void);      /* create structures for vivaldi routing model */
17
18 namespace simgrid {
19 namespace surf {
20
21 /***********
22  * Classes *
23  ***********/
24 class XBT_PRIVATE AsVivaldi;
25
26 class AsVivaldi: public AsGeneric {
27 public:
28   AsVivaldi(const char *name);
29   void Seal() override {}; // nothing to do
30   ~AsVivaldi() {};
31
32   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
33 };
34
35 }
36 }
37
38 #endif /* SURF_ROUTING_VIVALDI_HPP_ */