コード例 #1
0
ファイル: test_graycode.py プロジェクト: uservidya/pyeda
def test_bin2gray():
    B = bitvec('B', 4)
    G = bin2gray(B)
    gnums = [G.vrestrict({B: uint2vec(i, 4)}).to_uint() for i in range(16)]
    assert gnums == [0, 1, 3, 2, 6, 7, 5, 4, 12, 13, 15, 14, 10, 11, 9, 8]
コード例 #2
0
ファイル: test_addition.py プロジェクト: uservidya/pyeda
def uadd(S, A, B, aval, bval):
    N = len(A)
    R = S.vrestrict({A: uint2vec(aval, N), B: uint2vec(bval, N)})
    return R.to_uint()
コード例 #3
0
ファイル: test_graycode.py プロジェクト: uservidya/pyeda
def test_gray2bin():
    G = bitvec('G', 4)
    B = gray2bin(G)
    gnums = [0, 1, 3, 2, 6, 7, 5, 4, 12, 13, 15, 14, 10, 11, 9, 8]
    bnums = [B.vrestrict({G: uint2vec(i, 4)}).to_uint() for i in gnums]
    assert bnums == list(range(16))