My application file alters the TX power using two different algorithms, will call them algorithm1 and algorithm2.
I do four separate runs as follows:
1) Simulate for 400 seconds, alter TXPOWER using algorithm 1. At the end I would have simulated n vehicles.
2) Simulate for 400 seconds, alter TXPOWER using algorithm 2. At the end I would have simulated m vehicles.
3) Simulate for 50 seconds, alter TXPOWER using algorithm 1. At the end I would have simulated x vehicles.
4) Simulate for 50 seconds, alter TXPOWER using algorithm 2. At the end I would have simulated y vehicles.
I noticed that for run 1 and run 2 I would have n <> m and for run 3 and run 4 I would have x = y
where n,m,x,y are the numbers of vehicles simulated for run 1,2,3,4 respectively.
The question is, I do not understand why that the first two runs i have n <> m and for the latter two runs I have x = y
Thank you.