X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ce6c6e673d5d233ea614018e5ca97e9ef5b63fa4..41c54c2772412935a5c8fc9f2d09e623c0383ae7:/src/surf/surf_routing_full.hpp diff --git a/src/surf/surf_routing_full.hpp b/src/surf/surf_routing_full.hpp index 91de4a4160..30dd1cbefd 100644 --- a/src/surf/surf_routing_full.hpp +++ b/src/surf/surf_routing_full.hpp @@ -9,7 +9,7 @@ #include -#include "surf_routing_generic.hpp" +#include "surf_routing_RoutedGraph.hpp" namespace simgrid { namespace surf { @@ -20,7 +20,7 @@ namespace surf { class XBT_PRIVATE AsFull; /** Full routing: fast, large memory requirements, fully expressive */ -class AsFull: public AsGeneric { +class AsFull: public AsRoutedGraph { public: AsFull(const char*name); @@ -29,9 +29,9 @@ public: void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override; xbt_dynar_t getOneLinkRoutes() override; - void parseRoute(sg_platf_route_cbarg_t route) override; + void addRoute(sg_platf_route_cbarg_t route) override; - sg_platf_route_cbarg_t *p_routingTable = nullptr; + sg_platf_route_cbarg_t *routingTable_ = nullptr; }; }