Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid into...
[simgrid.git] / examples / msg / ns3 / 3links-d-timer.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
3 <platform version="3">
4
5   <process host="S1" function="master">
6       <argument value="100000"/>
7       <argument value="C1"/>
8       <argument value="1"/>
9   </process>
10
11   <process host="C1" function="slave">
12     <argument value="1"/>
13   </process>
14
15   <process host="S2" function="master">
16       <argument value="1000000"/>
17       <argument value="C2"/>
18       <argument value="2"/>
19   </process>
20   
21   <process host="C2" function="slave">
22     <argument value="2"/>
23   </process>
24
25    
26   <process host="S3" function="master">
27       <argument value="2000000"/>
28       <argument value="C3"/>
29       <argument value="3"/>
30   </process>
31   
32   <process host="C3" function="slave">
33     <argument value="3"/>
34   </process>
35
36   <process host="S3" function="master" start_time="2.0">
37       <argument value="2000000"/>
38       <argument value="C3"/>
39       <argument value="4"/>
40   </process>
41   
42   <process host="C3" function="slave">
43     <argument value="4"/>
44   </process>
45
46   <process host="C3" function="timer">
47     <argument value="0"/>
48     <argument value=".1"/>
49   </process>
50
51   <process host="C3" function="timer" start_time="2.0">
52     <argument value="0"/>
53     <argument value=".1"/>
54   </process>
55 </platform>