mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
AND for sbitfixvec.
This commit is contained in:
@@ -1246,6 +1246,8 @@ class sbitfixvec(_fix):
|
||||
return super(sbitfixvec, self).mul(other)
|
||||
def __xor__(self, other):
|
||||
return self._new(self.v ^ other.v)
|
||||
def __and__(self, other):
|
||||
return self._new(self.v & other.v)
|
||||
@staticmethod
|
||||
def multipliable(other, k, f, size):
|
||||
class cls(_fix):
|
||||
|
||||
Reference in New Issue
Block a user