Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Since cmake 2.6, else() and endif() don't need to repeat the condition.
[simgrid.git] / examples / msg / chord / generate.py
index 5c4f76095d3a96c3bec156fd8068c84c215a60b6..cc24945eaecefcf88acbf020899112a459192cf0 100755 (executable)
@@ -1,5 +1,10 @@
 #!/usr/bin/python
 
+# This script generates a specific deployment file for the Chord example.
+# It assumes that the platform will be a cluster.
+# Usage: python generate.py nb_nodes nb_bits end_date
+# Example: python generate.py 100000 32 1000
+
 import sys, random
 
 if len(sys.argv) != 4: