Logo AND Algorithmique Numérique Distribuée

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