Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
78716e797cc80e7b39f1c42895ca893c25b3efd1
[simgrid.git] / src / surf / surf_routing_none.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/base.h>
8
9 #include "surf_routing.hpp"
10 #include "simgrid/s4u/as.hpp"
11
12
13 #ifndef SURF_ROUTING_NONE_HPP_
14 #define SURF_ROUTING_NONE_HPP_
15
16 namespace simgrid {
17 namespace surf {
18
19 /** No specific routing. Mainly useful with the constant network model */
20 class XBT_PRIVATE AsNone : public s4u::As {
21 public:
22   AsNone(const char*name);
23   ~AsNone();
24
25   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
26   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
27 };
28
29 }
30 }
31
32 #endif /* SURF_ROUTING_NONE_HPP_ */