Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This hack is not needed since gras is killed.
[simgrid.git] / examples / platforms / prop.xml
index 38f60bd..ac206ca 100644 (file)
@@ -5,31 +5,40 @@
       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="3">
  <AS  id="AS0"  routing="Full">
    <prop id="filename" value="prop.xml"/>
    <prop id="date" value="31-08-12"/>
    <prop id="author" value="pnavarro"/>
    
-   <host id="host1" power="1000000000">
-     <prop id="SG_TEST_Hdd" value="180"/>
-     <prop id="SG_TEST_mem" value="4"/>
-   </host>
-   <host id="host2" power="1000000000">
-     <prop id="SG_TEST_Hdd" value="120"/>
-   </host>
-   <link id="l1" bandwidth="125000000" latency="0.000100">
-     <prop id="type" value="Ethernet"/>
-   </link>
-   <link id="l2" bandwidth="125000000" latency="0.000100">
-     <prop id="type" value="ethernet"/>
-   </link>
-   <route src="host1" dst="host2"><link_ctn id="l1"/><link_ctn id="l2"/></route>
+   <AS  id="AS3"  routing="Full">
+          <AS id="AS1" routing="None">
+              <prop id="name" value="AS1"/>
+          </AS>
+          
+          <AS id="AS2" routing="None">
+              <prop id="name" value="AS2"/>
+          </AS>
+   </AS>
+   
+   <AS  id="AS4"  routing="Full">
+          <host id="host1" power="1000000000">
+            <prop id="Hdd" value="180"/>
+            <prop id="mem" value="4"/>
+          </host>
+          
+          <host id="host2" power="1000000000">
+            <prop id="Hdd" value="120"/>
+          </host>
+          
+          <link id="l1" bandwidth="125000000" latency="0.000100">
+            <prop id="type" value="Ethernet"/>
+          </link>
+          
+          <link id="l2" bandwidth="125000000" latency="0.000100">
+            <prop id="type" value="ethernet"/>
+          </link>
+          <route src="host1" dst="host2"><link_ctn id="l1"/><link_ctn id="l2"/></route>
+   </AS>
  </AS>
  </platform>