Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
process -> actor
[simgrid.git] / examples / c / app-bittorrent / generate.py
index 0eff07f..602da00 100755 (executable)
@@ -30,8 +30,8 @@ all_ids = [42]
 sys.stdout.write("<?xml version='1.0'?>\n"
                  "<!DOCTYPE platform SYSTEM \"https://simgrid.org/simgrid.dtd\">\n"
                  "<platform version=\"4\">\n"
-                 "  <process host=\"node-0.simgrid.org\" function=\"tracker\">\n"
-                 "    <argument value=\"%d\"/>\n  </process>\n" % end_date)
+                 "  <actor host=\"node-0.simgrid.org\" function=\"tracker\">\n"
+                 "    <argument value=\"%d\"/>\n  </actor>\n" % end_date)
 
 for i in range(1, nb_nodes):
 
@@ -40,12 +40,12 @@ for i in range(1, nb_nodes):
         my_id = random.randint(0, max_id)
         ok = my_id not in all_ids
     start_date = i * 10
-    line = "  <process host=\"node-%d.simgrid.org\" function=\"peer\">\n" % i
+    line = "  <actor host=\"node-%d.simgrid.org\" function=\"peer\">\n" % i
     line += "    <argument value=\"%d\"/>\n    <argument value=\"%d\"/>\n" % (
         my_id, end_date)
     if random.randint(0, 100) < seed_percentage:
         line += "    <argument value=\"1\"/>\n"
-    line += "  </process>\n"
+    line += "  </actor>\n"
     sys.stdout.write(line)
     all_ids.append(my_id)
 sys.stdout.write("</platform>")