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] / examples / platforms / crosstraffic.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4">
4 <!--- 
5    S1  _________ C1
6         link 1
7         100MB, 5ms
8 -->
9
10 <AS id="1" routing="Full">
11   <host id="S1" speed="1Gf"/>
12   <host id="C1" speed="1Gf"/>
13
14   <link id="1" bandwidth="10kBps" latency="10ms" sharing_policy="FULLDUPLEX"/>
15
16   <route src="S1" dst="C1" symmetrical="NO">
17      <link_ctn id="1" direction="DOWN"/>
18   </route>
19
20   <route src="C1" dst="S1" symmetrical="NO">
21      <link_ctn id="1" direction="UP"/>
22   </route>
23
24 </AS>
25 </platform>