Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr/gitroot/simgrid/simgrid
[simgrid.git] / teshsuite / simdag / platforms / bogus_two_hosts_asymetric.xml
1
2 <!-- THIS FILE IS INVALID.
3
4 It declares a route alice->bob and another bob->alice, both being different.
5 It is used to check that this (bogus) file is detected as is (see
6 two_hosts_asymetric.tesh) -->
7
8 <?xml version='1.0'?>
9  <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
10  <platform version="3">
11  <AS  id="AS0"  routing="Full">
12    <host id="bob" power="1Gf"/>
13    <host id="alice" power="500Mf"/>
14  
15    <link id="link1" bandwidth="125MBps" latency="50us"/>
16    <link id="link2" bandwidth="125MBps" latency="50us"/>
17    
18    <route src="bob" dst="alice">
19      <link_ctn id="link1"/>
20    </route>
21
22    <route src="alice" dst="bob">
23      <link_ctn id="link2"/>
24    </route>
25
26  </AS>
27  </platform>