From cdba778e7986fd4543ea2deaee4d6bdafb858f68 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 6 Sep 2020 22:10:12 -0400 Subject: lib: remove KeySizeWithMinDistanceIter --- lib/hamming.go | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'lib/hamming.go') diff --git a/lib/hamming.go b/lib/hamming.go index 3ed4611..d9801a4 100644 --- a/lib/hamming.go +++ b/lib/hamming.go @@ -32,21 +32,6 @@ func setBits(b byte) int { return int(c) } -// Returns average key size with minimum normalized hamming distance. -// 'keyMin' is the minimum key size -// 'keyMax' is the maximum key size -// 'iterate' is the number of times to iterate. -func KeySizeWithMinDistanceIter(keyMin, keyMax, iterate int) int { - sum := 0 - avg := 0.0 - for i := 0; i < iterate; i++ { - sum += KeySizeWithMinDistance(keyMin, keyMax) - } - avg = float64(sum) / float64(iterate) - - return int(avg) -} - // Returns key size with minimum normalized hamming distance // 'keyMin' is the minimum key size // 'keyMax' is the maximum key size -- cgit v1.2.3