From: Luke Kenneth Casson Leighton Date: Thu, 6 Feb 2020 16:28:34 +0000 (+0000) Subject: TODO on NE partsig op X-Git-Tag: ls180-24jan2020~253 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=150515f14b4665f50acebf1501da865a79559c94;p=ieee754fpu.git TODO on NE partsig op --- diff --git a/src/ieee754/part/partsig.py b/src/ieee754/part/partsig.py index e1627b7d..af343dc5 100644 --- a/src/ieee754/part/partsig.py +++ b/src/ieee754/part/partsig.py @@ -103,7 +103,7 @@ class PartitionedSignal: def __ne__(self, other): width = self.sig.shape()[0] - invert = ~self.sig # invert the input before compare EQ. + invert = ~self.sig # invert the input before compare EQ. TODO: NE op return self._compare(width, invert, other, "eq", PartitionedEqGtGe.EQ) def __gt__(self, other):