X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c8017d49035c1ccdcd6b49f09162a4836b8d45a8..65a51e93f1cd7c79ba5f90d7417c4b48f1a6a5d8:/teshsuite/simdag/flatifier/flatifier.cpp diff --git a/teshsuite/simdag/flatifier/flatifier.cpp b/teshsuite/simdag/flatifier/flatifier.cpp index 96b7ded9d7..d88fef02d4 100644 --- a/teshsuite/simdag/flatifier/flatifier.cpp +++ b/teshsuite/simdag/flatifier/flatifier.cpp @@ -104,7 +104,7 @@ int main(int argc, char **argv) std::qsort((void *) hosts, totalHosts, sizeof(sg_host_t), name_compare_hosts); for (i = 0; i < totalHosts; i++) { - std::printf(" cname(), sg_host_speed(hosts[i])); props = sg_host_get_properties(hosts[i]); if (hosts[i]->coreCount()>1) { std::printf(" core=\"%d\"", hosts[i]->coreCount()); @@ -149,14 +149,14 @@ int main(int argc, char **argv) sg_host_t host1, host2; for (unsigned int it_src = 0; it_src < totalHosts; it_src++) { // Routes from host host1 = hosts[it_src]; - value1 = sg_host_by_name(host1->name().c_str())->pimpl_netcard; + value1 = host1->pimpl_netcard; for (unsigned int it_dst = 0; it_dst < totalHosts; it_dst++) { // Routes to host host2 = hosts[it_dst]; std::vector *route = new std::vector(); value2 = host2->pimpl_netcard; - routing_platf->getRouteAndLatency(value1, value2, route,nullptr); + simgrid::kernel::routing::AsImpl::getGlobalRoute(value1, value2, route, nullptr); if (! route->empty()){ - std::printf(" \n ", host1->name().c_str(), host2->name().c_str()); + std::printf(" \n ", host1->cname(), host2->cname()); for (auto link: *route) std::printf("",link->getName()); std::printf("\n \n"); @@ -166,9 +166,9 @@ int main(int argc, char **argv) xbt_lib_foreach(as_router_lib, cursor_dst, dst, value2){ //to router value2 = (sg_netcard_t)xbt_lib_get_or_null(as_router_lib,dst,ROUTING_ASR_LEVEL); if(value2->isRouter()){ - std::printf(" \n ", host1->name().c_str(), dst); + std::printf(" \n ", host1->cname(), dst); std::vector *route = new std::vector(); - routing_platf->getRouteAndLatency((sg_netcard_t)value1,(sg_netcard_t)value2,route,nullptr); + simgrid::kernel::routing::AsImpl::getGlobalRoute(value1, value2, route, nullptr); for (auto link : *route) std::printf("",link->getName()); delete route; @@ -185,7 +185,7 @@ int main(int argc, char **argv) if(value2->isRouter()){ std::printf(" \n ", src, dst); std::vector *route = new std::vector(); - routing_platf->getRouteAndLatency((sg_netcard_t)value1,(sg_netcard_t)value2,route,nullptr); + simgrid::kernel::routing::AsImpl::getGlobalRoute(value1, value2, route, nullptr); for(auto link :*route) std::printf("",link->getName()); delete route; @@ -194,10 +194,10 @@ int main(int argc, char **argv) } for (unsigned int it_dst = 0; it_dst < totalHosts; it_dst++) { // Routes to host host2 = hosts[it_dst]; - std::printf(" \n ",src, host2->name().c_str()); + std::printf(" \n ", src, host2->cname()); std::vector *route = new std::vector(); value2 = host2->pimpl_netcard; - routing_platf->getRouteAndLatency((sg_netcard_t)value1,(sg_netcard_t)value2,route, nullptr); + simgrid::kernel::routing::AsImpl::getGlobalRoute(value1, value2, route, nullptr); for(auto link : *route) std::printf("",link->getName()); delete route;