Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
463f654b5261922f94dc4f398aa719d3719f83f1
[simgrid.git] / include / simgrid / kernel / routing / TorusZone.hpp
1 /* Copyright (c) 2014-2018. 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 <simgrid/kernel/routing/ClusterZone.hpp>
10
11 #include <vector>
12
13 namespace simgrid {
14 namespace kernel {
15 namespace routing {
16
17 /** @ingroup ROUTING_API
18  * @brief NetZone using a Torus topology
19  *
20  */
21
22 class XBT_PRIVATE TorusZone : public ClusterZone {
23 public:
24   explicit TorusZone(NetZone* father, std::string name);
25   void create_links_for_node(ClusterCreationArgs* cluster, int id, int rank, unsigned int position) override;
26   void getLocalRoute(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override;
27   void parse_specific_arguments(ClusterCreationArgs* cluster) override;
28
29 private:
30   std::vector<unsigned int> dimensions_;
31 };
32 } // namespace routing
33 } // namespace kernel
34 } // namespace simgrid
35 #endif