forked from madsonrda/LRPON-Simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pddba.sh
29 lines (27 loc) · 752 Bytes
/
pddba.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
# To do a complete test: uncomment the line below
#for seed in 20 30 40 50 60 70 80 90 100 110
# To do a FAST test: uncomment the line below
for seed in 20
do
for exp in 1160 1450 1740 2030 2320 2610
do
python g-sim.py pd_dba -O 3 -s $seed -e $exp -w 10 -p 5 -M ols &
done
sleep 100
for exp in 2900 3190 3480 3770 4060 4350
do
python g-sim.py pd_dba -O 3 -s $seed -e $exp -w 10 -p 5 -M ols &
done
sleep 100
for exp in 1160 1450 1740 2030 2320 2610
do
python g-sim.py pd_dba -O 3 -s $seed -e $exp -w 20 -p 20 -M ridge &
done
sleep 100
for exp in 2900 3190 3480 3770 4060 4350
do
python g-sim.py pd_dba -O 3 -s $seed -e $exp -w 20 -p 20 -M ridge &
done
sleep 100
done