working on code some more
[bigint-presentation-code.git] / src / bigint_presentation_code / toom_cook.py
index 4ceb3d7e0a0df582b72db31075e89a1d2fb1ec2a..e220104061ff787b40e5b7922ccec836770320a2 100644 (file)
@@ -14,7 +14,6 @@ from bigint_presentation_code.compiler_ir import (GPR_SIZE_IN_BITS, BaseTy, Fn,
                                                   OpKind, SSAVal, Ty)
 from bigint_presentation_code.matrix import Matrix
 from bigint_presentation_code.type_util import Literal, final
-from bigint_presentation_code.util import InternedMeta
 
 
 @final
@@ -352,7 +351,7 @@ class EvalOpGenIrState:
 
 
 @plain_data(frozen=True, unsafe_hash=True)
-class EvalOp(metaclass=InternedMeta):
+class EvalOp:
     __slots__ = "lhs", "rhs", "poly"
 
     @property