X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9cbdbf1d739774e5c49488d42a2b5d535c7a8465..fbc5196e44c92ef4ccda2fb737423e373c03d6f9:/src/surf/surf_routing_floyd.cpp diff --git a/src/surf/surf_routing_floyd.cpp b/src/surf/surf_routing_floyd.cpp index 487460ca9c..9a51912215 100644 --- a/src/surf/surf_routing_floyd.cpp +++ b/src/surf/surf_routing_floyd.cpp @@ -129,7 +129,7 @@ static int floyd_pointer_resource_cmp(const void *a, const void *b) { return a != b; } -void AsFloyd::parseRoute(sg_platf_route_cbarg_t route) +void AsFloyd::addRoute(sg_platf_route_cbarg_t route) { /* set the size of table routing */ int table_size = (int)xbt_dynar_length(vertices_); @@ -137,7 +137,7 @@ void AsFloyd::parseRoute(sg_platf_route_cbarg_t route) NetCard *src = sg_netcard_by_name_or_null(route->src); NetCard *dst = sg_netcard_by_name_or_null(route->dst); - parseRouteCheckParams(route); + addRouteCheckParams(route); if(!linkTable_) { /* Create Cost, Predecessor and Link tables */