Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start renaming AS to NetZone
[simgrid.git] / src / kernel / routing / AsClusterTorus.hpp
diff --git a/src/kernel/routing/AsClusterTorus.hpp b/src/kernel/routing/AsClusterTorus.hpp
deleted file mode 100644 (file)
index 8229fcc..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/* Copyright (c) 2014-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 SURF_ROUTING_CLUSTER_TORUS_HPP_
-#define SURF_ROUTING_CLUSTER_TORUS_HPP_
-
-#include "src/kernel/routing/AsCluster.hpp"
-
-namespace simgrid {
-namespace kernel {
-namespace routing {
-
-    class XBT_PRIVATE AsClusterTorus : public AsCluster {
-    public:
-      explicit AsClusterTorus(As* father, const char* name);
-      ~AsClusterTorus() override;
-      void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position) override;
-      void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t into, double* latency) override;
-      void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) override;
-    private:
-      xbt_dynar_t dimensions_ = nullptr;
-    };
-
-}}}
-#endif