Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove this dupplicated and unused platform file
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Wed, 8 Jul 2020 23:43:53 +0000 (01:43 +0200)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Wed, 8 Jul 2020 23:43:53 +0000 (01:43 +0200)
MANIFEST.in
examples/platforms/wifi_decay_2STA.xml [deleted file]
tools/cmake/DefinePackages.cmake

index 56c08f2..3736b50 100644 (file)
@@ -1943,7 +1943,6 @@ include examples/platforms/two_hosts_profiles.xml
 include examples/platforms/two_peers.xml
 include examples/platforms/vivaldi.xml
 include examples/platforms/wifi.xml
-include examples/platforms/wifi_decay_2STA.xml
 include examples/python/CMakeLists.txt
 include examples/python/actor-create/actor-create_d.xml
 include examples/python/actor-lifetime/actor-lifetime_d.xml
diff --git a/examples/platforms/wifi_decay_2STA.xml b/examples/platforms/wifi_decay_2STA.xml
deleted file mode 100755 (executable)
index fed5614..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version='1.0'?>
-
-<!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
-<platform version="4.1">
-  <zone id="world" routing="Full">
-
-    <zone id="WIFI zone" routing="Cluster">
-        <!-- First declare the Access Point (ie, the wifi media) -->
-        <link id="AP1" sharing_policy="WIFI" bandwidth="54Mbps" latency="0ms" />
-
-        <!-- Two stations in the wifi zone -->
-        <host id="Station 1" speed="100.0Mf,50.0Mf,20.0Mf" />
-        <host id="Station 2" speed="100.0Mf,50.0Mf,20.0Mf" />
-
-        <!-- Specify that stations use the WIFI link for every communication (incoming or outgoing) -->
-        <host_link id="Station 1" up="AP1" down="AP1"/>
-        <host_link id="Station 2" up="AP1" down="AP1"/>
-
-        <router id="WIFI router"/>
-    </zone>
-
-
-    <!-- NODE1 AS -->
-    <zone id="Wired zone" routing="Full">
-      <host id="NODE1" speed="100.0Mf,50.0Mf,20.0Mf" />
-    </zone>
-    
-
-    <!-- AS Routing -->
-    <link id="Collector" sharing_policy="SHARED" bandwidth="100Mbps" latency="0ms" />
-    <zoneRoute src="WIFI zone" dst="Wired zone" gw_src="WIFI router" gw_dst="NODE1">
-      <link_ctn id="Collector" />
-    </zoneRoute>
-    
-  </zone>
-</platform>
index f97b443..687ce0d 100644 (file)
@@ -1195,7 +1195,6 @@ set(PLATFORMS_EXAMPLES
   examples/platforms/two_hosts_platform_with_availability_included.xml
   examples/platforms/two_peers.xml
   examples/platforms/vivaldi.xml
-  examples/platforms/wifi_decay_2STA.xml
   examples/platforms/wifi.xml
   )