disable mul and rmul in PartitionedSignal for now
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 5 Oct 2021 12:34:45 +0000 (13:34 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 5 Oct 2021 12:34:45 +0000 (13:34 +0100)
src/ieee754/part/partsig.py

index c90021719fff0113565d167022c57c6ed87bd8e5..8e5154add74e50e82c423e388a0a64f559064465 100644 (file)
@@ -245,9 +245,11 @@ class PartitionedSignal(UserValue):
         return result
 
     def __mul__(self, other):
+        raise NotImplementedError # too complicated at the moment
         return Operator("*", [self, other])
 
     def __rmul__(self, other):
+        raise NotImplementedError # too complicated at the moment
         return Operator("*", [other, self])
 
     def __check_divisor(self):