Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
very preliminary cleanups in the contextes
[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
19   explicit AsFull(const char*name);
20   void seal() override;
21   ~AsFull() override;
22
23   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
24   void addRoute(sg_platf_route_cbarg_t route) override;
25
26   sg_platf_route_cbarg_t *routingTable_ = nullptr;
27 };
28
29 }}} // namespaces
30
31 #endif /* SIMGRID_ROUTING_FULL_HPP_ */