Home | History | Annotate | Download | only in releasetools

Lines Matching refs:monotonic

28     monotonic: Whether the input has all its integers in increasing order.
34 self.monotonic = False
41 self.monotonic = all(x < y for x, y in zip(self.data, self.data[1:]))
80 If the input has all its blocks in increasing order, then the 'monotonic'
82 input "10-20 30" is monotonic, but the input "15-20 30 10-14" is not, even
104 monotonic = True
113 monotonic = False
121 monotonic = False
124 self.monotonic = monotonic