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

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

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

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

s.run(debug=True)