Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move the routing logic to its own directory
[simgrid.git] / src / surf / AsClusterTorus.hpp
diff --git a/src/surf/AsClusterTorus.hpp b/src/surf/AsClusterTorus.hpp
deleted file mode 100644 (file)
index 6571971..0000000
+++ /dev/null
@@ -1,26 +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/surf/AsCluster.hpp"
-
-namespace simgrid {
-  namespace routing {
-
-    class XBT_PRIVATE AsClusterTorus : public simgrid::routing::AsCluster {
-    public:
-      explicit AsClusterTorus(const char*name);
-      ~AsClusterTorus() override;
-      void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position) override;
-      void getRouteAndLatency(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