Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
update all the platforms file with the new s/:/_/ in DTD
[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  <AS  id="AS0"  routing="Full">
5    <host id="bob" power="1000000000"/>
6    <host id="alice" power="500000000"/>
7    <host id="trudy" power="250000000"/>
8  
9    <link id="link1" bandwidth="125000000" latency="5E-5"/>
10    <link id="link2" bandwidth="125000000" latency="5E-5"/>
11    <link id="link3" bandwidth="125000000" latency="5E-5"/>
12  
13    <route src="bob" dst="alice">
14      <link_ctn id="link1"/>
15    </route>
16    <route src="alice" dst="bob">
17      <link_ctn id="link2"/>
18      <link_ctn id="link3"/>
19    </route>
20  
21    <route src="bob" dst="trudy">
22      <link_ctn id="link2"/>
23    </route>
24  
25    <route src="trudy" dst="bob">
26      <link_ctn id="link2"/>
27    </route>
28  
29    <route src="trudy" dst="alice">
30      <link_ctn id="link3"/>
31    </route>
32    <route src="alice" dst="trudy">
33      <link_ctn id="link3"/>
34    </route>
35  </AS>
36  </platform>