removed unused function

This commit is contained in:
CPunch 2019-08-14 15:47:42 -05:00 committed by GitHub
parent 559ea05287
commit 9bdeecc601
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -47,11 +47,7 @@ def get_bits(num, p, k):
kBitSubStr = binary[start : end]
# convert extracted sub-string into decimal again
return (int(kBitSubStr,2) % 256)
def get_bits_2(input, n):
pn = 2^(n-1)
return (input % (pn + pn) >= pn) and 1 or 0
return (int(kBitSubStr,2) % 256)
class LuaCompiler:
def __init__(self):