def lt()

in sketches/Sampler.py [0:0]


    def lt(cls, priority, threshold):
        for r, t in zip(priority, threshold):
            if r < t: 
                return True
        return False