MCPcopy
hub / github.com/hyperopt/hyperopt / max

Method max

hyperopt/pyll/base.py:95–99  ·  view source on GitHub ↗

return max of args

(self, *args)

Source from the content-addressed store, hash-verified

93 return self._new_apply("range", args, {}, o_len=None, pure=True)
94
95 def max(self, *args):
96 """return max of args"""
97 return self._new_apply(
98 "max", list(map(as_apply, args)), {}, o_len=None, pure=True
99 )
100
101 def min(self, *args):
102 """return min of args"""

Callers 8

logsum_rowsFunction · 0.80
pprintMethod · 0.80
test_distributionsFunction · 0.80
workMethod · 0.80
workMethod · 0.80
workMethod · 0.80
workMethod · 0.80

Calls 1

_new_applyMethod · 0.95

Tested by 5

test_distributionsFunction · 0.64
workMethod · 0.64
workMethod · 0.64
workMethod · 0.64
workMethod · 0.64