Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Energy, onHostDestruction: ensured ptr existence
[simgrid.git] / examples / java / chord / chord.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4">
4
5   <process host="Gatien" function="chord.Node">
6     <argument value="48"/>        <!-- my id -->
7     <argument value="1"/>         <!-- known id -->
8     <argument value="400"/>        <!-- time to sleep before it starts-->
9     <argument value ="600"/>            <!-- deadline -->
10   </process>
11
12   <process host="McGee" function="chord.Node">
13     <argument value="42"/>        <!-- my id -->
14     <argument value="1"/>         <!-- known id -->
15     <argument value="300"/>        <!-- time to sleep before it starts-->
16     <argument value ="600"/>            <!-- deadline -->
17   </process>
18
19   <process host="iRMX" function="chord.Node">
20     <argument value="38"/>        <!-- my id -->
21     <argument value="1"/>         <!-- known id -->
22     <argument value="200"/>         <!-- time to sleep before it starts-->
23     <argument value ="600"/>            <!-- deadline -->
24   </process>
25
26   <process host="Geoff" function="chord.Node">
27     <argument value="32"/>        <!-- my id -->
28     <argument value="1"/>         <!-- known id -->
29     <argument value="100"/>         <!-- time to sleep before it starts-->
30     <argument value ="600"/>            <!-- deadline -->
31   </process>
32
33   <process host="TeX" function="chord.Node">
34     <argument value="21"/>        <!-- my id -->
35     <argument value="1"/>         <!-- known id -->
36     <argument value="40"/>        <!-- time to sleep before it starts-->
37     <argument value ="600"/>            <!-- deadline -->
38   </process>
39
40   <process host="Jean_Yves" function="chord.Node">
41     <argument value="14"/>        <!-- my id -->
42     <argument value="1"/>         <!-- known id -->
43     <argument value="16"/>        <!-- time to sleep before it starts-->
44     <argument value ="600"/>            <!-- deadline -->
45   </process>
46   
47   <process host="Boivin" function="chord.Node">
48     <argument value="8"/>         <!-- my id -->
49     <argument value="1"/>         <!-- known id -->
50     <argument value="1"/>         <!-- time to sleep before it starts-->
51     <argument value ="600"/>            <!-- deadline -->
52   </process>
53
54   <process host="Jacquelin" function="chord.Node">
55     <argument value="1"/>         <!-- my id -->
56     <argument value ="600"/>            <!-- deadline -->
57   </process>
58
59 </platform>