1 # Helper script for distinct metadata reduction test
6 input = open(sys
.argv
[1], "r").read().splitlines()
8 depth_map
= {"0": 1, "1": 3, "2": 3, "3": 2, "4": 1}
11 for i
in range(len(depth_map
)):
14 if re
.match(rf
".*interesting_{i}.*", line
) != None:
16 if counter
!= depth_map
[str(i
)]: