Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c4327ffcded4f5f250d6bbb068e3f47765f512e5
[simgrid.git] / src / kernel / routing / AsFloyd.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 SURF_ROUTING_FLOYD_HPP_
7 #define SURF_ROUTING_FLOYD_HPP_
8
9 #include "src/kernel/routing/AsRoutedGraph.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 /** Floyd routing data: slow initialization, fast lookup, lesser memory requirements, shortest path routing only */
16 class XBT_PRIVATE AsFloyd: public AsRoutedGraph {
17 public:
18   explicit AsFloyd(const char *name);
19   ~AsFloyd() override;
20
21   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
22   void addRoute(sg_platf_route_cbarg_t route) override;
23   void seal() override;
24
25 private:
26   /* vars to compute the Floyd algorithm. */
27   int *predecessorTable_;
28   double *costTable_;
29   sg_platf_route_cbarg_t *linkTable_;
30 };
31
32 }}} // namespaces
33
34 #endif /* SURF_ROUTING_FLOYD_HPP_ */