Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rework all examples and test cases of the properties
[simgrid.git] / examples / platforms / prop.xml
index 6046ad9..8ba56cc 100644 (file)
@@ -1,19 +1,30 @@
 <?xml version='1.0'?>
 <!DOCTYPE platform SYSTEM "simgrid.dtd">
+
+<!-- This file describe a super simple platform which main interest is
+     to define some properties on hosts, processes and links. 
+     It is used in several regression cases on properties -->
+
+<!-- Some properties' name is prefixed by SG_TEST_ only to simplify
+     the test of GRAS on real life: we don't want to display the whole
+     user's environment here, only the ones related to the test.
+     
+     Of course, this restriction is not needed in your own platforms. -->
+
 <platform version="2">
-  <host id="C1-01" power="1000000000">
-    <prop id="Hdd" value="180"/>
-    <prop id="mem" value="4"/>
+  <host id="host1" power="1000000000">
+    <prop id="SG_TEST_Hdd" value="180"/>
+    <prop id="SG_TEST_mem" value="4"/>
   </host>
-  <host id="C1-00" power="1000000000">
-    <prop id="Hdd" value="120"/>
+  <host id="host2" power="1000000000">
+    <prop id="SG_TEST_Hdd" value="120"/>
   </host>
-  <link id="6" bandwidth="125000000" latency="0.000100">
+  <link id="l1" bandwidth="125000000" latency="0.000100">
     <prop id="type" value="Ethernet"/>
   </link>
-  <link id="0" bandwidth="125000000" latency="0.000100">
+  <link id="l2" bandwidth="125000000" latency="0.000100">
     <prop id="type" value="ethernet"/>
   </link>
-  <route src="C1-00" dst="C1-01"><link:ctn id="6"/><link:ctn id="0"/></route>
-  <route src="C1-01" dst="C1-00"><link:ctn id="0"/><link:ctn id="6"/></route>
+  <route src="host1" dst="host2"><link:ctn id="l1"/><link:ctn id="l2"/></route>
+  <route src="host2" dst="host1"><link:ctn id="l2"/><link:ctn id="l1"/></route>
 </platform>