mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-06-06 13:27:39 +00:00
Switch to dictionary for the network matrices
This commit is contained in:
parent
94b47ceab5
commit
7540e8290d
26 changed files with 72 additions and 72 deletions
|
@ -26,13 +26,16 @@ import numpy as np
|
|||
|
||||
B=np.full((2,2),8)
|
||||
L=np.full((2,2),0)
|
||||
s=esds.Simulator(B,L,B,L)
|
||||
s=esds.Simulator({"wlan0":{"bandwidth":B, "latency":L},"eth0":{"bandwidth":B, "latency":L}})
|
||||
|
||||
s.create_node("sender")
|
||||
s.create_node("receiver")
|
||||
|
||||
def callback(simulator):
|
||||
simulator.log("Network update!")
|
||||
simulator.update_network(simulator.B_wlan0*2,simulator.L_wlan0,simulator.B_eth0*2,simulator.L_eth0)
|
||||
new_bw_wlan0=simulator.netmat["wlan0"]["bandwidth"]*2
|
||||
new_bw_eth0=simulator.netmat["eth0"]["bandwidth"]*2
|
||||
simulator.update_network({"wlan0":{"bandwidth":new_bw_wlan0, "latency":L},"eth0":{"bandwidth":new_bw_eth0, "latency":L}})
|
||||
|
||||
|
||||
s.run(breakpoints_every=1/2,breakpoint_callback=callback)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue