X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0121ca23d5f741acccabaa92aff9a1172a057cce..f04443ab4853c9073468b7d698b01d01189cf38e:/src/surf/AsFull.hpp diff --git a/src/surf/AsFull.hpp b/src/surf/AsFull.hpp deleted file mode 100644 index cfd7e5e084..0000000000 --- a/src/surf/AsFull.hpp +++ /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_ */