Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reindent
[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 namespace simgrid {
18   namespace surf {
19
20     class XBT_PRIVATE AsClusterTorus:public simgrid::surf::AsCluster {
21     public:
22       AsClusterTorus();
23       virtual ~ AsClusterTorus();
24       virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
25       virtual void getRouteAndLatency(NetCard * src, NetCard * dst, sg_platf_route_cbarg_t into, double *latency);
26       void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster);
27       xbt_dynar_t p_dimensions = NULL;
28     };
29
30 }}
31 #endif