remove comments

This commit is contained in:
jopohl
2016-07-01 12:56:25 +02:00
parent 5c79def75c
commit 85bc0d53d9

View File

@@ -55,15 +55,6 @@ class LabelAssigner(object):
self.constant_intervals_per_block[i].append(interval)
self.constant_intervals_per_block[j].append(interval)
# Apply a label for each constant range
# if labels overlap, there are different merge strategies
# 1) choose the range that occurred most frequently
# 2) split the overlapping ranges and create two labels -> not good as this changes the information
# 3) Use the smallest common range (hides possible informations/broken protocols shrink information range)
# when to create a new labelset?
# 1) use information about diffs like (0, 2) [71-87, 135-155] 8070 00010 and put blocks in labelset
# if they have enough in common
# for block_index in sorted(self.constant_intervals_per_block):
# interval_info = ""
# for interval in sorted(set(self.constant_intervals_per_block[block_index])):