Lines Matching refs:values
143 def GeometricMean(values):
144 """Returns the geometric mean of a list of values.
148 values = list(map(float, values))
149 return math.exp(sum(map(math.log, values)) / len(values))
161 "results": [<list of values measured over several runs>],
220 'traces': list(self.traces.values()),
222 'runnables': list(self.runnables.values()),
239 values must lie within. Typical values are 1, 2 and 3 and correspond
305 """Fake parent node with all default values."""
329 Can either be a leaf or an inner node that provides default values.
342 # Accumulated values.
352 # Descrete values (with parent defaults).
963 'all values must lie within. Typical values are 1, 2 and '
966 'value. Larger values result in more retries and thus '