X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0e9c0448c6566825b170b98ecff716b098bda10e..af16855f0556e92be92366d8adec26f179967e21:/teshsuite/smpi/compute.c diff --git a/teshsuite/smpi/compute.c b/teshsuite/smpi/compute.c index e67315eead..92bce0f1e1 100644 --- a/teshsuite/smpi/compute.c +++ b/teshsuite/smpi/compute.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2010, 2012. The SimGrid Team. +/* Copyright (c) 2009-2010, 2012-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -9,11 +9,12 @@ int main(int argc, char *argv[]) { - int i; + int i, n; double d; MPI_Init(&argc, &argv); + n = argc > 1 ? atoi(argv[1]) : 0; d = 2.0; - for (i = 0; i < atoi(argv[1]); i++) { + for (i = 0; i < n; i++) { if (d < 10000) { d = d * d; } else {