Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[simix] Use std::string for s_smx_process_arg
[simgrid.git] / src / surf / AsClusterTorus.hpp
1 /* Copyright (c) 2014-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_TORUS_HPP_
7 #define SURF_ROUTING_CLUSTER_TORUS_HPP_
8
9 #include "src/surf/AsCluster.hpp"
10
11 namespace simgrid {
12   namespace surf {
13
14     class XBT_PRIVATE AsClusterTorus:public simgrid::surf::AsCluster {
15     public:
16       AsClusterTorus(const char*name);
17       virtual ~AsClusterTorus();
18       void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position) override;
19       void getRouteAndLatency(NetCard * src, NetCard * dst, sg_platf_route_cbarg_t into, double *latency) override;
20       void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) override;
21     private:
22       xbt_dynar_t dimensions_ = nullptr;
23     };
24
25   }}
26 #endif