X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fc8be6494932e66a359ae5d47103a566cc8234f4..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/include/simgrid/kernel/routing/FloydZone.hpp diff --git a/include/simgrid/kernel/routing/FloydZone.hpp b/include/simgrid/kernel/routing/FloydZone.hpp index d225bb644d..9a5b924e87 100644 --- a/include/simgrid/kernel/routing/FloydZone.hpp +++ b/include/simgrid/kernel/routing/FloydZone.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2021. 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. */ @@ -23,7 +23,9 @@ namespace routing { */ class XBT_PRIVATE FloydZone : public RoutedZone { public: - explicit FloydZone(NetZoneImpl* father, std::string name, resource::NetworkModel* netmodel); + explicit FloydZone(NetZoneImpl* father, const std::string& name, resource::NetworkModel* netmodel); + FloydZone(const FloydZone&) = delete; + FloydZone& operator=(const FloydZone&) = delete; ~FloydZone() override; void get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override; @@ -33,9 +35,11 @@ public: private: /* vars to compute the Floyd algorithm. */ - int* predecessor_table_; - double* cost_table_; - RouteCreationArgs** link_table_; + std::vector predecessor_table_; + std::vector cost_table_; + std::vector link_table_; + + void init_tables(unsigned int table_size); }; } // namespace routing } // namespace kernel