summaryrefslogtreecommitdiff
path: root/tests/simple_send_eth0_3s1r/simulator.py
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-06-30 12:11:59 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2022-06-30 12:11:59 +0200
commitd0ae9f329685a19136cfd9a890b305db3bc384b9 (patch)
treeb3c72908b8930db16b1f682bb7119abeaf72fadf /tests/simple_send_eth0_3s1r/simulator.py
parent1bef51d87860f782f687533012167bebb43c093d (diff)
Improve tests
Diffstat (limited to 'tests/simple_send_eth0_3s1r/simulator.py')
-rwxr-xr-xtests/simple_send_eth0_3s1r/simulator.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/simple_send_eth0_3s1r/simulator.py b/tests/simple_send_eth0_3s1r/simulator.py
deleted file mode 100755
index 84c0de0..0000000
--- a/tests/simple_send_eth0_3s1r/simulator.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python
-
-# Load ESDS
-import esds
-import numpy as np
-
-B=np.full((4,4),8)
-L=np.full((4,4),0)
-s=esds.Simulator({"wlan0":{"bandwidth":B, "latency":L, "is_wired":False}, "eth0":{"bandwidth":B, "latency":L, "is_wired":True}})
-
-s.create_node("sender")
-s.create_node("sender")
-s.create_node("sender")
-s.create_node("receiver")
-
-s.run()