Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
update function documentation and variable names in the As -> NetZone transition
[simgrid.git] / src / kernel / routing / FloydZone.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/RoutedZone.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 FloydZone : public RoutedZone {
17 public:
18   explicit FloydZone(NetZone* father, const char* name);
19   ~FloydZone() override;
20
21   void getLocalRoute(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 }
33 } // namespaces
34
35 #endif /* SURF_ROUTING_FLOYD_HPP_ */