Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove one of the many pimple: HostModel::p_cpuModel
[simgrid.git] / src / surf / surf_routing_floyd.hpp
1 /* Copyright (c) 2013-2014. 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 #include "surf_routing_generic.hpp"
8
9 #ifndef SURF_ROUTING_FLOYD_HPP_
10 #define SURF_ROUTING_FLOYD_HPP_
11
12
13 /***********
14  * Classes *
15  ***********/
16 class AsFloyd;
17
18 class AsFloyd: public AsGeneric {
19 public:
20   AsFloyd();
21   ~AsFloyd();
22
23   void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
24   xbt_dynar_t getOneLinkRoutes();
25   void parseASroute(sg_platf_route_cbarg_t route);
26   void parseRoute(sg_platf_route_cbarg_t route);
27   void end();
28   //void parseASroute(sg_platf_route_cbarg_t route);
29
30   //void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
31   //sg_platf_route_cbarg_t getBypassRoute(RoutingEdge *src, RoutingEdge *dst, double *lat);
32
33   /* The parser calls the following functions to inform the routing models
34    * that a new element is added to the AS currently built.
35    *
36    * Of course, only the routing model of this AS is informed, not every ones */
37   //int parsePU(RoutingEdge *elm); /* A host or a router, whatever */
38   //int parseAS(RoutingEdge *elm);
39
40   //virtual void parseBypassroute(sg_platf_route_cbarg_t e_route)=0;
41
42   /* vars for calculate the floyd algorith. */
43   int *p_predecessorTable;
44   double *p_costTable;
45   sg_platf_route_cbarg_t *p_linkTable;
46 };
47
48
49
50 #endif /* SURF_ROUTING_FLOYD_HPP_ */