X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7c7b48e07d7b50e2367fb2336eef9f6f2c59481e..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/examples/deprecated/java/app/bittorrent/generate.py diff --git a/examples/deprecated/java/app/bittorrent/generate.py b/examples/deprecated/java/app/bittorrent/generate.py index 556e2b4f5b..6d5e71b03c 100755 --- a/examples/deprecated/java/app/bittorrent/generate.py +++ b/examples/deprecated/java/app/bittorrent/generate.py @@ -1,15 +1,17 @@ #!/usr/bin/env python -# Copyright (c) 2013-2019. The SimGrid Team. +# 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. -# This script generates a specific deployment file for the Bittorrent example. -# It assumes that the platform will be a cluster. -# Usage: python generate.py nb_nodes nb_bits end_date percentage -# Example: python generate.py 10000 5000 +""" +This script generates a specific deployment file for the Bittorrent example. +It assumes that the platform will be a cluster. +Usage: python generate.py nb_nodes nb_bits end_date percentage +Example: python generate.py 10000 5000 +""" import sys import random @@ -30,17 +32,18 @@ all_ids = [42] sys.stdout.write("\n" "\n" "\n" - " \n" % end_date) + " \n" % + end_date) for i in range(1, nb_nodes): ok = False while not ok: my_id = random.randint(0, max_id) - ok = not my_id in all_ids + ok = my_id not in all_ids start_date = i * 10 - line = " " % ( - i, my_id, end_date) + line = " " \ + "" % (i, my_id, end_date) if random.randint(0, 100) < seed_percentage: line += "" line += "\n"