Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
0abbae3fa7b1dbbaa84f25663ec04d5d62ddeec6
[simgrid.git] / src / surf / surf_routing_full.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 #ifndef SURF_ROUTING_FULL_HPP_
8 #define SURF_ROUTING_FULL_HPP_
9
10 #include <xbt/base.h>
11
12 #include "surf_routing_RoutedGraph.hpp"
13
14 namespace simgrid {
15 namespace surf {
16
17 /***********
18  * Classes *
19  ***********/
20 class XBT_PRIVATE AsFull;
21
22 /** Full routing: fast, large memory requirements, fully expressive */
23 class AsFull: public AsRoutedGraph {
24 public:
25
26   AsFull(const char*name);
27   void Seal() override;
28   ~AsFull();
29
30   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
31   void addRoute(sg_platf_route_cbarg_t route) override;
32
33   sg_platf_route_cbarg_t *routingTable_ = nullptr;
34 };
35
36 }
37 }
38
39 #endif /* SURF_ROUTING_FULL_HPP_ */