Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add example to test the fullduplex aware TCP model, this option is disabled by defaul...
authorvelho <velho@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 18 Nov 2010 17:52:24 +0000 (17:52 +0000)
committervelho <velho@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 18 Nov 2010 17:52:24 +0000 (17:52 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8586 48e7efb5-ca39-0410-a469-dd3cf9ba447f

examples/msg/gtnets/fullduplex-p.xml [new file with mode: 0644]

diff --git a/examples/msg/gtnets/fullduplex-p.xml b/examples/msg/gtnets/fullduplex-p.xml
new file mode 100644 (file)
index 0000000..64077e8
--- /dev/null
@@ -0,0 +1,24 @@
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "simgrid.dtd">
+<platform version="2"><!--- 
+   S1  --------- C1
+        link 1
+        100MB, 5ms
+-->
+
+<AS id="1" routing="Full">
+  <host id="S1" power="1000000000"/>
+  <host id="C1" power="1000000000"/>
+
+  <link id="1" bandwidth="10000" latency="0.01" sharing_policy="FULLDUPLEX"/>
+
+  <route src="S1" dst="C1" symetrical="NO">
+     <link_ctn id="1" direction="DOWN"/>
+  </route>
+
+  <route src="C1" dst="S1" symetrical="NO">
+     <link_ctn id="1" direction="UP"/>
+  </route>
+
+</AS>
+</platform>