Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
privatize and snake_case some methods in DragonflyZone
[simgrid.git] / src / kernel / routing / RoutedZone.cpp
index 249320a..2de68c1 100644 (file)
@@ -66,7 +66,7 @@ RoutedZone::RoutedZone(NetZone* father, std::string name) : NetZoneImpl(father,
 void RoutedZone::get_graph(xbt_graph_t graph, std::map<std::string, xbt_node_t>* nodes,
                            std::map<std::string, xbt_edge_t>* edges)
 {
-  std::vector<kernel::routing::NetPoint*> vertices = getVertices();
+  std::vector<kernel::routing::NetPoint*> 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);
 }
 }
 }