TODO on NE partsig op
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 6 Feb 2020 16:28:34 +0000 (16:28 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 6 Feb 2020 16:28:34 +0000 (16:28 +0000)
src/ieee754/part/partsig.py

index e1627b7d6d5891de0fd3c6f69acfd4f77eead0c5..af343dc5757e2dba57372caca3d8268a8fae413e 100644 (file)
@@ -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):