X-Git-Url: https://git.distorted.org.uk/~mdw/ocb-tv/blobdiff_plain/2653ca06bad735dbd4bfd0dcd213a183f20a00cb..86082bbc2b778ac98757dc091e191bf1e5dd356d:/find-stretch.sage diff --git a/find-stretch.sage b/find-stretch.sage index cdd408b..61aef46 100644 --- a/find-stretch.sage +++ b/find-stretch.sage @@ -50,6 +50,6 @@ def stretch_shift(w): elif bits > best_bits: best_bits, best_dom, best_c = bits, d, c return best_c, best_dom -for w in [64, 96, 128, 192, 256]: +for w in [64, 96, 128, 192, 256, 512]: c, dom = stretch_shift(w) print '%3d: %3d [%d]' % (w, c, dom)