X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f4c998d4d5488117b6cf9989e1061238016965fc..737a256dd1d7adf4255c24729ae6069284049d2c:/include/simgrid/kernel/routing/FloydZone.hpp diff --git a/include/simgrid/kernel/routing/FloydZone.hpp b/include/simgrid/kernel/routing/FloydZone.hpp index 17ade54bec..f35bc19a2d 100644 --- a/include/simgrid/kernel/routing/FloydZone.hpp +++ b/include/simgrid/kernel/routing/FloydZone.hpp @@ -25,7 +25,7 @@ class XBT_PRIVATE FloydZone : public RoutedZone { /* vars to compute the Floyd algorithm. */ std::vector predecessor_table_; std::vector cost_table_; - std::vector link_table_; + std::vector link_table_; void init_tables(unsigned int table_size); void do_seal() override; @@ -36,7 +36,7 @@ public: FloydZone& operator=(const FloydZone&) = delete; ~FloydZone() override; - void get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override; + void get_local_route(NetPoint* src, NetPoint* dst, Route* into, double* latency) override; void add_route(NetPoint* src, NetPoint* dst, NetPoint* gw_src, NetPoint* gw_dst, const std::vector& link_list, bool symmetrical) override; };