Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix a java test
[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.1">
4   <!-- S1 _________ C1
5            link 1
6          10kB, 10ms    -->
7        
8   <zone id="1" routing="Full">
9     <host id="S1" speed="1Gf"/>
10     <host id="C1" speed="1Gf"/>
11
12     <link id="1" bandwidth="10kBps" latency="10ms" sharing_policy="FULLDUPLEX"/>
13
14     <route src="S1" dst="C1" symmetrical="NO">
15       <link_ctn id="1" direction="DOWN"/>
16     </route>
17     <route src="C1" dst="S1" symmetrical="NO">
18       <link_ctn id="1" direction="UP"/>
19     </route>
20   </zone>
21 </platform>