X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/92b5807a50d37d792c86af8b7309b73056586c41..9cb4e32f30a65e3f382639d91cc400eaa118d0a3:/src/smpi/smpi_topo.cpp diff --git a/src/smpi/smpi_topo.cpp b/src/smpi/smpi_topo.cpp index 49a36a2bff..44a111bed2 100644 --- a/src/smpi/smpi_topo.cpp +++ b/src/smpi/smpi_topo.cpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2014, 2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2014-2017. 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. */ @@ -43,10 +42,8 @@ Topo_Cart::~Topo_Cart() delete[] position_; } -Topo_Cart::Topo_Cart(int ndims) +Topo_Cart::Topo_Cart(int ndims) : ndims_(ndims) { - nnodes_ = 0; - ndims_ = ndims; dims_ = new int[ndims]; periodic_ = new int[ndims]; position_ = new int[ndims]; @@ -261,7 +258,7 @@ int Topo_Cart::dim_get(int *ndims) { /* * This is a utility function, no need to have anything in the lower layer for this at all */ -int Dims_create(int nnodes, int ndims, int dims[]) +int Topo_Cart::Dims_create(int nnodes, int ndims, int dims[]) { /* Get # of free-to-be-assigned processes and # of free dimensions */ int freeprocs = nnodes;