summaryrefslogtreecommitdiff
path: root/tests/simple_send_wlan0_2s1r/simulator.py
blob: 9980b2ac49b85b373991fad2163a2add5f53b3b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

# Load ESDS
import sys
sys.path.append("../../")
import esds
import numpy as np

B=np.full((3,3),8)
L=np.full((3,3),0)
s=esds.Simulator(B,L,B,L)

s.create_node("sender")
s.create_node("sender")
s.create_node("receiver")

s.run()