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_vivaldi.hpp
diff --git a/src/surf/surf_routing_vivaldi.hpp b/src/surf/surf_routing_vivaldi.hpp
deleted file mode 100644 (file)
index 3795d69..0000000
+++ /dev/null
@@ -1,38 +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. */
-
-#include "surf_routing_RoutedGraph.hpp"
-#include "xbt/swag.h"
-
-
-#ifndef SURF_ROUTING_VIVALDI_HPP_
-#define SURF_ROUTING_VIVALDI_HPP_
-
-/* ************************************************** */
-/* **************  Vivaldi ROUTING   **************** */
-XBT_PRIVATE AS_t model_vivaldi_create(void);      /* create structures for vivaldi routing model */
-
-namespace simgrid {
-namespace surf {
-
-/***********
- * Classes *
- ***********/
-class XBT_PRIVATE AsVivaldi;
-
-class AsVivaldi: public AsRoutedGraph {
-public:
-  AsVivaldi(const char *name);
-  ~AsVivaldi() {};
-
-  xbt_dynar_t getOneLinkRoutes() override {return NULL;};
-  void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
-};
-
-}
-}
-
-#endif /* SURF_ROUTING_VIVALDI_HPP_ */