예제 #1
0
파일: types.py 프로젝트: zeronek501/MP-SPDZ
 def __lshift__(self, other):
     res = cbits(n=self.n+other)
     inst.shlcbi(res, self, other)
     return res
예제 #2
0
파일: types.py 프로젝트: data61/MP-SPDZ
 def __lshift__(self, other):
     res = cbits.get_type(self.n+other)()
     inst.shlcbi(res, self, other)
     return res