Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Mark some internal symbols as hidden on ELF in surf
[simgrid.git] / src / surf / surf_routing_cluster_torus.hpp
1 /* Copyright (c) 2014-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_CLUSTER_TORUS_HPP_
9 #define SURF_ROUTING_CLUSTER_TORUS_HPP_
10
11 #include <xbt/base.h>
12
13 #include "surf_routing_none.hpp"
14 #include "network_interface.hpp"
15 #include "surf_routing_cluster.hpp"
16
17 class XBT_PRIVATE AsClusterTorus: public AsCluster {
18 public:
19    AsClusterTorus();
20    virtual ~AsClusterTorus();
21    virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
22    virtual void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
23    void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster);
24
25
26    xbt_dynar_t p_dimensions;
27
28 };
29
30
31 #endif