示例#1
0
 def test_hermdiv(self) :
     for i in range(5) :
         for j in range(5) :
             msg = "At i=%d, j=%d" % (i,j)
             ci = [0]*i + [1]
             cj = [0]*j + [1]
             tgt = herm.hermadd(ci, cj)
             quo, rem = herm.hermdiv(tgt, ci)
             res = herm.hermadd(herm.hermmul(quo, ci), rem)
             assert_equal(trim(res), trim(tgt), err_msg=msg)
 def test_hermdiv(self):
     for i in range(5):
         for j in range(5):
             msg = "At i=%d, j=%d" % (i, j)
             ci = [0]*i + [1]
             cj = [0]*j + [1]
             tgt = herm.hermadd(ci, cj)
             quo, rem = herm.hermdiv(tgt, ci)
             res = herm.hermadd(herm.hermmul(quo, ci), rem)
             assert_equal(trim(res), trim(tgt), err_msg=msg)
示例#3
0
 def test_hermadd(self):
     for i in range(5):
         for j in range(5):
             msg = "At i=%d, j=%d" % (i, j)
             tgt = np.zeros(max(i, j) + 1)
             tgt[i] += 1
             tgt[j] += 1
             res = herm.hermadd([0] * i + [1], [0] * j + [1])
             assert_equal(trim(res), trim(tgt), err_msg=msg)
示例#4
0
 def test_hermadd(self) :
     for i in range(5) :
         for j in range(5) :
             msg = "At i=%d, j=%d" % (i,j)
             tgt = np.zeros(max(i,j) + 1)
             tgt[i] += 1
             tgt[j] += 1
             res = herm.hermadd([0]*i + [1], [0]*j + [1])
             assert_equal(trim(res), trim(tgt), err_msg=msg)