def getScaledThresholds()

in sketches/Sampler.py [0:0]


    def getScaledThresholds(self, min_size_per_objective):
        num_objectives = len(self.thresholds)
        scaled_thresholds = []
        for i in range(num_objectives):
            priorities = [R[i] for R, w, x in self.buffer]
            priorities.sort()
            scaled_thresholds.append( priorities[min_size_per_objective+1] )
    
        return scaled_thresholds