Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
00dc02b9e3049726df0e79d2959c142efedfe9a1
[simgrid.git] / src / kernel / routing / AsFull.hpp
1 /* Copyright (c) 2013-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_ROUTING_FULL_HPP_
7 #define SIMGRID_ROUTING_FULL_HPP_
8
9 #include "src/kernel/routing/AsRoutedGraph.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 /** Full routing: fast, large memory requirements, fully expressive */
16 class XBT_PRIVATE AsFull: public AsRoutedGraph {
17 public:
18   explicit AsFull(As* father, const char* name);
19   void seal() override;
20   ~AsFull() override;
21
22   void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t into, double* latency) override;
23   void addRoute(sg_platf_route_cbarg_t route) override;
24
25   sg_platf_route_cbarg_t *routingTable_ = nullptr;
26 };
27
28 }}} // namespaces
29
30 #endif /* SIMGRID_ROUTING_FULL_HPP_ */