Brian Cain

Results 2 issues of Brian Cain

https://en.wikipedia.org/wiki/Nelder%E2%80%93Mead_method The Wiki article has the Contraction Step as follows Xc = X0 + rho * (Xn+1 - X0) with 0 < rho < 0.5 This code has it as:...

The following sample code has been executed on both python 2 and python 3 with the same result ``` from pybloom_live import BloomFilter if __name__ == '__main__': bf1 = BloomFilter(capacity=1000,...