Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'hypervisor' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid into hypervisor
[simgrid.git] / examples / scala / master_slave_bypass / platform.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="bob" power="137.333Mf"/>
6         <host id="alice" power="98.095Mf"/>
7         <host id="nono" power="98.095Mf"/>
8         
9         <link id="1" bandwidth="100MBps" latency="1ms"/>
10         <link id="2" bandwidth="100MBps" latency="1ms"/>
11         <link id="3" bandwidth="100MBps" latency="1ms"/>
12         
13         <route  src="bob"
14                         dst="alice"
15                         symmetrical="YES">
16                                 <link_ctn id="1"/>
17    </route>
18         <route  src="alice"
19                         dst="nono"
20                         symmetrical="YES">
21                                 <link_ctn id="2"/>
22    </route>
23         <route  src="bob"
24                         dst="nono"
25                         symmetrical="YES">
26                                 <link_ctn id="3"/>
27    </route>
28 </AS>
29 </platform>