344c344
< bool nor_reduce() const { return or_reduce(); }
---
> bool nor_reduce() const { return !or_reduce(); }
346c346
< bool xnor_reduce() const { return xor_reduce(); }
---
> bool xnor_reduce() const { return !xor_reduce(); }