Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #2 from mquinson/master
[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   <process host="Gatien" function="chord.Node">
5     <argument value="48"/>        <!-- my id -->
6     <argument value="1"/>         <!-- known id -->
7     <argument value="400"/>        <!-- time to sleep before it starts-->
8     <argument value ="600"/>    <!-- deadline -->
9   </process>
10   <process host="McGee" function="chord.Node">
11     <argument value="42"/>        <!-- my id -->
12     <argument value="1"/>         <!-- known id -->
13     <argument value="300"/>        <!-- time to sleep before it starts-->
14     <argument value ="600"/>    <!-- deadline -->
15   </process>
16   <process host="iRMX" function="chord.Node">
17     <argument value="38"/>        <!-- my id -->
18     <argument value="1"/>         <!-- known id -->
19     <argument value="200"/>         <!-- time to sleep before it starts-->
20     <argument value ="600"/>    <!-- deadline -->
21   </process>
22   <process host="Geoff" function="chord.Node">
23     <argument value="32"/>        <!-- my id -->
24     <argument value="1"/>         <!-- known id -->
25     <argument value="100"/>         <!-- time to sleep before it starts-->
26     <argument value ="600"/>    <!-- deadline -->
27   </process>
28   <process host="TeX" function="chord.Node">
29     <argument value="21"/>        <!-- my id -->
30     <argument value="1"/>         <!-- known id -->
31     <argument value="40"/>        <!-- time to sleep before it starts-->
32     <argument value ="600"/>    <!-- deadline -->
33   </process>
34   <process host="Jean_Yves" function="chord.Node">
35     <argument value="14"/>        <!-- my id -->
36     <argument value="1"/>         <!-- known id -->
37     <argument value="16"/>        <!-- time to sleep before it starts-->
38     <argument value ="600"/>    <!-- deadline -->
39   </process>
40   <process host="Boivin" function="chord.Node">
41     <argument value="8"/>         <!-- my id -->
42     <argument value="1"/>         <!-- known id -->
43     <argument value="1"/>         <!-- time to sleep before it starts-->
44     <argument value ="600"/>    <!-- deadline -->
45   </process>
46   <process host="Jacquelin" function="chord.Node">
47     <argument value="1"/>         <!-- my id -->
48     <argument value ="600"/>    <!-- deadline -->
49   </process>
50 </platform>