Files
MP-SPDZ/Math/Bit.h
2020-03-20 20:31:25 +11:00

73 lines
1.1 KiB
C++

/*
* Bit.h
*
*/
#ifndef MATH_BIT_H_
#define MATH_BIT_H_
#include "BitVec.h"
class gf2n_short;
class Bit : public BitVec_<bool>
{
typedef BitVec_<bool> super;
public:
static int size_in_bits()
{
return 1;
}
Bit()
{
}
Bit(int other) :
super(other)
{
assert(other == 0 or other == 1);
}
Bit(const super::super& other) :
super(other)
{
}
Bit(char*)
{
throw runtime_error("never call this");
}
Bit(const gf2n_short& other);
Bit operator*(const Bit& other) const
{
return super::operator*(other);
}
template<class T>
T operator*(const T& other) const
{
return other * *this;
}
void pack(octetStream& os, int = -1) const
{
super::pack(os, 1);
}
void unpack(octetStream& os, int = -1)
{
super::unpack(os, 1);
}
void operator>>=(int)
{
throw runtime_error("never call this");
}
void operator<<=(int)
{
throw runtime_error("never call this");
}
};
#endif /* MATH_BIT_H_ */