Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move the surf::As* classes into their own files
[simgrid.git] / src / surf / surf_routing_cluster.hpp
diff --git a/src/surf/surf_routing_cluster.hpp b/src/surf/surf_routing_cluster.hpp
deleted file mode 100644 (file)
index ef11fa9..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/* Copyright (c) 2013-2015. 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_HPP_
-#define SURF_ROUTING_CLUSTER_HPP_
-
-#include <xbt/base.h>
-
-#include "surf_routing.hpp"
-#include "network_interface.hpp"
-#include "src/surf/AsImpl.hpp"
-
-namespace simgrid {
-namespace surf {
-
-/***********
- * Classes *
- ***********/
-
-class XBT_PRIVATE AsCluster;
-
-/* ************************************************** */
-/* **************  Cluster ROUTING   **************** */
-
-class AsCluster: public AsImpl {
-public:
-  AsCluster(const char*name);
-
-  virtual void getRouteAndLatency(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) {}
-
-
-  Link* backbone_ = nullptr;
-  void *loopback_ = nullptr;
-  NetCard *router_ = nullptr;
-  int has_limiter_ = 0;
-  int has_loopback_ = 0;
-  int nb_links_per_node_ = 1;
-
-};
-
-}
-}
-
-#endif /* SURF_ROUTING_CLUSTER_HPP_ */