X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/38f7ddbf61f574a934f191ef2d8358d9f8be1f96..ebcb91551aa801d2353d854ffe9c1d1bf72d7db9:/teshsuite/simdag/is-router/is-router.cpp?ds=sidebyside diff --git a/teshsuite/simdag/is-router/is-router.cpp b/teshsuite/simdag/is-router/is-router.cpp index f5f11e0f37..a45915ed96 100644 --- a/teshsuite/simdag/is-router/is-router.cpp +++ b/teshsuite/simdag/is-router/is-router.cpp @@ -8,7 +8,7 @@ #include "simgrid/simdag.h" #include "src/kernel/routing/NetPoint.hpp" #include -#include +#include int main(int argc, char **argv) { @@ -19,7 +19,7 @@ int main(int argc, char **argv) std::printf("Host count: %zu, link number: %d\n", sg_host_count(), sg_link_count()); std::vector netcardList; - simgrid::s4u::Engine::instance()->netpointList(&netcardList); + simgrid::s4u::Engine::getInstance()->getNetpointList(&netcardList); std::sort(netcardList.begin(), netcardList.end(), [](simgrid::kernel::routing::NetPoint* a, simgrid::kernel::routing::NetPoint* b) { return a->name() < b->name(); @@ -36,7 +36,7 @@ int main(int argc, char **argv) type = "netzone"; if (nc->isHost()) type = "host"; - std::printf(" - Seen: \"%s\". Type: %s\n", host->cname(), type); + std::printf(" - Seen: \"%s\". Type: %s\n", host->getCname(), type); } xbt_dynar_free(&hosts);