Logo AND Algorithmique Numérique Distribuée

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