/* * Bit.cpp * */ #include "Bit.h" #include "gf2n.h" template Bit::Bit(const gf2n_& other) : super(other.get_bit(0)) { assert(other.is_one() or other.is_zero()); } template Bit::Bit(const gf2n_& other); template Bit::Bit(const gf2n_& other);