X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a42065590d308653d71e5a49c8647c535b964a94..6a8d5cf4199454b5f811043c207d195107743e72:/src/smpi/include/smpi_topo.hpp diff --git a/src/smpi/include/smpi_topo.hpp b/src/smpi/include/smpi_topo.hpp index c8f0caf3d1..6f88d1a71f 100644 --- a/src/smpi/include/smpi_topo.hpp +++ b/src/smpi/include/smpi_topo.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2018. 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. */ @@ -48,7 +48,6 @@ class Topo_Cart: public Topo { class Topo_Graph: public Topo { private: int nnodes_; - int nedges_; int *index_; int *edges_; public: @@ -58,13 +57,10 @@ class Topo_Graph: public Topo { class Topo_Dist_Graph: public Topo { private: - int indegree_; int *in_; int *in_weights_; - int outdegree_; int *out_; int *out_weights_; - int is_weighted_; public: Topo_Dist_Graph(); ~Topo_Dist_Graph();