Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modify DTD and files for cluster Tag
[simgrid.git] / teshsuite / simdag / platforms / three_hosts_non_symmetric_route.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "simgrid.dtd">
3 <platform version="2">
4   <host id="bob" power="1000000000"/>
5   <host id="alice" power="500000000"/>
6   <host id="trudy" power="250000000"/>
7
8   <link id="link1" bandwidth="125000000" latency="5E-5"/>
9   <link id="link2" bandwidth="125000000" latency="5E-5"/>
10   <link id="link3" bandwidth="125000000" latency="5E-5"/>
11
12   <route src="bob" dst="alice">
13     <link:ctn id="link1"/>
14   </route>
15   <route src="alice" dst="bob">
16     <link:ctn id="link2"/>
17     <link:ctn id="link3"/>
18   </route>
19
20   <route src="bob" dst="trudy">
21     <link:ctn id="link2"/>
22   </route>
23
24   <route src="trudy" dst="bob">
25     <link:ctn id="link2"/>
26   </route>
27
28   <route src="trudy" dst="alice">
29     <link:ctn id="link3"/>
30   </route>
31   <route src="alice" dst="trudy">
32     <link:ctn id="link3"/>
33   </route>
34 </platform>