X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0fa053f89a0b5f34a050f4790925d9d63ac11073..8cba26bcd4766e50a6a1b99ee11a1aa7efe3749f:/src/kernel/routing/RoutedZone.cpp diff --git a/src/kernel/routing/RoutedZone.cpp b/src/kernel/routing/RoutedZone.cpp index 249320a36b..2de68c1f99 100644 --- a/src/kernel/routing/RoutedZone.cpp +++ b/src/kernel/routing/RoutedZone.cpp @@ -66,7 +66,7 @@ RoutedZone::RoutedZone(NetZone* father, std::string name) : NetZoneImpl(father, void RoutedZone::get_graph(xbt_graph_t graph, std::map* nodes, std::map* edges) { - std::vector vertices = getVertices(); + std::vector vertices = get_vertices(); for (auto const& my_src : vertices) { for (auto const& my_dst : vertices) { @@ -201,7 +201,7 @@ void RoutedZone::addRouteCheckParams(NetPoint* src, NetPoint* dst, NetPoint* gw_ dstName, gw_dst->get_cname()); } - onRouteCreation(symmetrical, src, dst, gw_src, gw_dst, link_list); + on_route_creation(symmetrical, src, dst, gw_src, gw_dst, link_list); } } }