Files
MP-SPDZ/Math/BitVec.h
Marcel Keller 253ece7844 Maintenance.
2021-01-21 11:06:18 +11:00

85 lines
2.4 KiB
C++

/*
* BitVec.h
*
*/
#ifndef MATH_BITVEC_H_
#define MATH_BITVEC_H_
#include "Integer.h"
#include "field_types.h"
class BitDiagonal;
template<class T>
class BitVec_ : public IntBase<T>
{
public:
typedef IntBase<T> super;
typedef BitVec_ Scalar;
typedef BitVec_ next;
typedef BitDiagonal Square;
static const int n_bits = sizeof(T) * 8;
static const false_type invertible;
static const true_type characteristic_two;
static char type_char() { return 'B'; }
static string type_short() { return "B"; }
static DataFieldType field_type() { return DATA_GF2; }
static bool allows(Dtype dtype) { return dtype == DATA_TRIPLE or dtype == DATA_BIT; }
BitVec_() {}
BitVec_(long a) : super(a) {}
template<class U>
BitVec_(const IntBase<U>& a) : super(a.get()) {}
template<int K>
BitVec_(const Z2<K>& a) : super(a.get_limb(0)) {}
BitVec_ operator+(const BitVec_& other) const { return *this ^ other; }
BitVec_ operator-(const BitVec_& other) const { return *this ^ other; }
BitVec_ operator*(const BitVec_& other) const { return *this & other; }
BitVec_ operator~() const { return ~this->a; }
BitVec_ operator/(const BitVec_& other) const { (void) other; throw not_implemented(); }
BitVec_& operator+=(const BitVec_& other) { *this ^= other; return *this; }
BitVec_& operator-=(const BitVec_& other) { *this ^= other; return *this; }
BitVec_ extend_bit() const { return -(this->a & 1); }
BitVec_ mask(int n) const { return n < n_bits ? *this & ((1L << n) - 1) : *this; }
void add(octetStream& os) { *this += os.get<BitVec_>(); }
void mul(const BitVec_& a, const BitVec_& b) { *this = a * b; }
void randomize(PRNG& G, int n = n_bits) { super::randomize(G); *this = mask(n); }
void pack(octetStream& os) const { os.store_int<sizeof(T)>(this->a); }
void unpack(octetStream& os) { this->a = os.get_int<sizeof(T)>(); }
void pack(octetStream& os, int n) const { os.store_int(mask(n).a, DIV_CEIL(n, 8)); }
void unpack(octetStream& os, int n) { this->a = os.get_int(DIV_CEIL(n, 8)); }
static BitVec_ unpack_new(octetStream& os, int n = n_bits)
{
BitVec_ res;
res.unpack(os, n);
return res;
}
};
typedef BitVec_<long> BitVec;
template<class T>
const false_type BitVec_<T>::invertible;
template<class T>
const true_type BitVec_<T>::characteristic_two;
#endif /* MATH_BITVEC_H_ */