X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/76d4849864c227687e17bdd93c5b1338e9b4cb50..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/include/simgrid/kernel/routing/ClusterZone.hpp diff --git a/include/simgrid/kernel/routing/ClusterZone.hpp b/include/simgrid/kernel/routing/ClusterZone.hpp index 4efbe49260..b08bba7ad0 100644 --- a/include/simgrid/kernel/routing/ClusterZone.hpp +++ b/include/simgrid/kernel/routing/ClusterZone.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -135,13 +135,6 @@ protected: return private_links_.find(position) != private_links_.end(); } - void get_graph(const s_xbt_graph_t* graph, std::map>* nodes, - std::map>* edges) override - { - /* the old and generic implementation of get_graph doesn't make sense for complex clusters */ - THROW_UNIMPLEMENTED; - }; - unsigned long node_pos(unsigned long id) const { return id * num_links_per_node_; } unsigned long node_pos_with_loopback(unsigned long id) const { return node_pos(id) + (has_loopback_ ? 1 : 0); }