Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move the routing logic to its own directory
[simgrid.git] / src / surf / AsFull.hpp
diff --git a/src/surf/AsFull.hpp b/src/surf/AsFull.hpp
deleted file mode 100644 (file)
index cfd7e5e..0000000
+++ /dev/null
@@ -1,31 +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_FULL_HPP_
-#define SIMGRID_ROUTING_FULL_HPP_
-
-#include "src/surf/AsRoutedGraph.hpp"
-
-namespace simgrid {
-namespace routing {
-
-/** Full routing: fast, large memory requirements, fully expressive */
-class XBT_PRIVATE AsFull: public AsRoutedGraph {
-public:
-
-  explicit AsFull(const char*name);
-  void seal() override;
-  ~AsFull() override;
-
-  void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
-  void addRoute(sg_platf_route_cbarg_t route) override;
-
-  sg_platf_route_cbarg_t *routingTable_ = nullptr;
-};
-
-}
-}
-
-#endif /* SIMGRID_ROUTING_FULL_HPP_ */