Searched
refs:high (Results
476 -
500 of
1418) sorted by null
<<11121314151617181920>>
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
random.py | 361 def triangular(self, low=0.0, high=1.0, mode=None): 371 c = 0.5 if mode is None else (mode - low) / (high - low) 375 low, high = high, low 376 return low + (high - low) * (u * c) ** 0.5
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
random.py | 361 def triangular(self, low=0.0, high=1.0, mode=None): 371 c = 0.5 if mode is None else (mode - low) / (high - low) 375 low, high = high, low 376 return low + (high - low) * (u * c) ** 0.5
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
random.py | 361 def triangular(self, low=0.0, high=1.0, mode=None): 371 c = 0.5 if mode is None else (mode - low) / (high - low) 375 low, high = high, low 376 return low + (high - low) * (u * c) ** 0.5
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
random.py | 361 def triangular(self, low=0.0, high=1.0, mode=None): 371 c = 0.5 if mode is None else (mode - low) / (high - low) 375 low, high = high, low 376 return low + (high - low) * (u * c) ** 0.5
|