projects
/
ieee754fpu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ac07fd
)
disable mul and rmul in PartitionedSignal for now
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Tue, 5 Oct 2021 12:34:45 +0000
(13:34 +0100)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Tue, 5 Oct 2021 12:34:45 +0000
(13:34 +0100)
src/ieee754/part/partsig.py
patch
|
blob
|
history
diff --git
a/src/ieee754/part/partsig.py
b/src/ieee754/part/partsig.py
index c90021719fff0113565d167022c57c6ed87bd8e5..8e5154add74e50e82c423e388a0a64f559064465 100644
(file)
--- a/
src/ieee754/part/partsig.py
+++ b/
src/ieee754/part/partsig.py
@@
-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):