Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start renaming AS to NetZone
[simgrid.git] / src / kernel / routing / AsCluster.hpp
diff --git a/src/kernel/routing/AsCluster.hpp b/src/kernel/routing/AsCluster.hpp
deleted file mode 100644 (file)
index 14d07c8..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Copyright (c) 2013-2016. The SimGrid Team. All rights reserved.          */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#ifndef SIMGRID_ROUTING_CLUSTER_HPP_
-#define SIMGRID_ROUTING_CLUSTER_HPP_
-
-#include <unordered_map>
-
-#include "src/kernel/routing/AsImpl.hpp"
-
-namespace simgrid {
-namespace kernel {
-namespace routing {
-
-class XBT_PRIVATE AsCluster: public AsImpl {
-public:
-  explicit AsCluster(As* father, const char* name);
-
-  void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t into, double* latency) override;
-  void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
-
-  virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
-  virtual void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) {}
-
-  /* We use a map instead of a std::vector here because that's a sparse vector. Some values may not exist */
-  /* The pair is {linkUp, linkDown} */
-  std::unordered_map<unsigned int, std::pair<Link*, Link*>> privateLinks_;
-
-  Link* backbone_ = nullptr;
-  void *loopback_ = nullptr;
-  NetCard *router_ = nullptr;
-  bool hasLimiter_  = false;
-  bool hasLoopback_ = false;
-  unsigned int linkCountPerNode_ = 1; /* may be 1 (if only a private link), 2 or 3 (if limiter and loopback) */
-
-};
-
-}}} // namespace
-
-#endif /* SIMGRID_ROUTING_CLUSTER_HPP_ */