X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/390ee57ed79bf7577c2bce6df6a25aba57ff476e..118d3f4ca3b1f74eb632dec688ca5c7dfab7f1ba:/src/kernel/routing/AsImpl.cpp diff --git a/src/kernel/routing/AsImpl.cpp b/src/kernel/routing/AsImpl.cpp index 86c782b7b6..4ff5801d07 100644 --- a/src/kernel/routing/AsImpl.cpp +++ b/src/kernel/routing/AsImpl.cpp @@ -41,17 +41,6 @@ namespace simgrid { return res; } - void AsImpl::getOneLinkRoutes(std::vector* accumulator) - { - // recursing only. I have no route myself :) - char* key; - xbt_dict_cursor_t cursor = nullptr; - AsImpl* rc_child; - xbt_dict_foreach (children(), cursor, key, rc_child) { - rc_child->getOneLinkRoutes(accumulator); - } - } - /** @brief Get the common ancestor and its first children in each line leading to src and dst * * In the recursive case, this sets common_ancestor, src_ancestor and dst_ancestor are set as follows.