Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix aliased template parameter name
[simgrid.git] / src / surf / surf_routing_floyd.hpp
1 /* Copyright (c) 2013-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7
8 #ifndef SURF_ROUTING_FLOYD_HPP_
9 #define SURF_ROUTING_FLOYD_HPP_
10
11 #include <xbt/base.h>
12
13 #include "surf_routing_generic.hpp"
14
15 namespace simgrid {
16 namespace surf {
17
18 /***********
19  * Classes *
20  ***********/
21 class XBT_PRIVATE AsFloyd;
22
23 class AsFloyd: public AsGeneric {
24 public:
25   AsFloyd();
26   ~AsFloyd();
27
28   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency);
29   xbt_dynar_t getOneLinkRoutes();
30   void parseASroute(sg_platf_route_cbarg_t route);
31   void parseRoute(sg_platf_route_cbarg_t route);
32   void end();
33   //void parseASroute(sg_platf_route_cbarg_t route);
34
35   //void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
36   //sg_platf_route_cbarg_t getBypassRoute(RoutingEdge *src, RoutingEdge *dst, double *lat);
37
38   /* The parser calls the following functions to inform the routing models
39    * that a new element is added to the AS currently built.
40    *
41    * Of course, only the routing model of this AS is informed, not every ones */
42   //int parsePU(RoutingEdge *elm); /* A host or a router, whatever */
43   //int parseAS(RoutingEdge *elm);
44
45   //virtual void parseBypassroute(sg_platf_route_cbarg_t e_route)=0;
46
47   /* vars for calculate the floyd algorith. */
48   int *p_predecessorTable;
49   double *p_costTable;
50   sg_platf_route_cbarg_t *p_linkTable;
51 };
52
53 }
54 }
55
56 #endif /* SURF_ROUTING_FLOYD_HPP_ */