Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Use member hooks for CpuTi
[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 "surf_routing_none.hpp"
12 #include "network_interface.hpp"
13 #include "surf_routing_cluster.hpp"
14
15 class AsClusterTorus: public AsCluster {
16 public:
17    AsClusterTorus();
18    virtual ~AsClusterTorus();
19    virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
20    virtual void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
21    void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster);
22
23
24    xbt_dynar_t p_dimensions;
25
26 };
27
28
29 #endif