diff options
Diffstat (limited to 'data/cuts/tvt_valid.py')
-rw-r--r-- | data/cuts/tvt_valid.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/data/cuts/tvt_valid.py b/data/cuts/tvt_valid.py new file mode 100644 index 0000000..c5bb828 --- /dev/null +++ b/data/cuts/tvt_valid.py @@ -0,0 +1,9 @@ +import random + +begin = 1372636853 +end = 1404172787 + +random.seed(1337) +cuts = [] +for i in range(500): + cuts.append(random.randrange(begin, end)) |