Python 3 compatibility changes in fn_time.py

- Use range instead of xrange as it has been removed
- Use integer division operator (//)
- Import uniform and fn_time_delta_cpp only when started as a script
- Remove the unused imports

Change-Id: I268e0aec8fb8e6d490bfb8b0e9e6d169a9f6c352
This commit is contained in:
Vasil Velichkov 2019-09-10 00:04:28 +03:00 committed by Piotr Krysik
parent 45b04bb3cc
commit f6314031e7
1 changed files with 4 additions and 4 deletions

View File

@ -20,9 +20,6 @@
# Boston, MA 02110-1301, USA.
#
#
from math import floor, ceil
from random import uniform
from grgsm import fn_time_delta_cpp
__hyper_frame = 26*51*2048
__symb_rate = 13.0e6/48.0
@ -72,10 +69,13 @@ def fn_time_delta(fn_ref, time_ref, fn_x, time_hint=None, ts_num=0, ts_ref=0):
if __name__ == "__main__":
from random import uniform
from grgsm import fn_time_delta_cpp
fn1 = 10000
ts_ref = 4
time1 = 10.5
for fn2 in xrange(__hyper_frame/2+fn1-10,__hyper_frame/2*10+fn1+100,10):
for fn2 in range(__hyper_frame//2+fn1-10,__hyper_frame//2*10+fn1+100,10):
ts_x = int(uniform(0,8))
time2 = time1 + (fn2-fn1)*__frame_period + (ts_x-ts_ref)*__ts_period
error = uniform(-6200,6200)