Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Another fix in build depends.
[simgrid.git] / examples / java / mutualExclusion / ring3.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
3 <platform version="3">
4  <AS  id="AS0"  routing="Full">
5   <host id="Host 0" power="1.0E9" />
6   <host id="Host 1" power="1.0E9" />
7   <host id="Host 2" power="1.0E9" />
8
9   <link id="l0" bandwidth="1.25E8" latency="1.0E-4" />
10   <link id="l1" bandwidth="1.25E8" latency="1.0E-4" />
11   <link id="l2" bandwidth="1.25E8" latency="1.0E-4" />
12
13   <route src="Host 0" dst="Host 1">
14     <link_ctn id="l0"/>
15   </route>
16
17   <route src="Host 0" dst="Host 2">
18     <link_ctn id="l1"/>
19   </route>
20
21   <route src="Host 1" dst="Host 2">
22     <link_ctn id="l2"/>
23   </route>
24
25 </AS>
26 </platform>
27