Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ns3: gosh this code is ugly
[simgrid.git] / src / surf / AsCluster.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_CLUSTER_HPP_
7 #define SURF_ROUTING_CLUSTER_HPP_
8
9 #include "src/surf/AsImpl.hpp"
10
11 namespace simgrid {
12 namespace surf {
13
14 class XBT_PRIVATE AsCluster: public AsImpl {
15 public:
16   AsCluster(const char*name);
17
18   virtual void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
19   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
20
21   virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
22   virtual void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) {}
23
24   Link* backbone_ = nullptr;
25   void *loopback_ = nullptr;
26   NetCard *router_ = nullptr;
27   int has_limiter_ = 0;
28   int has_loopback_ = 0;
29   int nb_links_per_node_ = 1;
30
31 };
32
33 }
34 }
35
36 #endif /* SURF_ROUTING_CLUSTER_HPP_ */