Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill models getName() call sites.
[simgrid.git] / src / surf / surf_routing_cluster_torus.hpp
1 /* Copyright (c) 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_none.hpp"
8 #include "network_interface.hpp"
9 #include "surf_routing_cluster.hpp"
10
11
12 #ifndef SURF_ROUTING_CLUSTER_TORUS_HPP_
13 #define SURF_ROUTING_CLUSTER_TORUS_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