From: Jacob Lifshay Date: Sat, 8 Oct 2022 00:31:47 +0000 (-0700) Subject: format code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=690ec7d11da85901791eed3308fa212c1d227a28;p=bigint-presentation-code.git format code --- diff --git a/src/bigint_presentation_code/toom_cook.py b/src/bigint_presentation_code/toom_cook.py index a045edb..58c9a44 100644 --- a/src/bigint_presentation_code/toom_cook.py +++ b/src/bigint_presentation_code/toom_cook.py @@ -376,6 +376,7 @@ def range_overlaps(range1, range2): return (range1.start in range2 or range1_last in range2 or range2.start in range1 or range2_last in range1) + @plain_data(unsafe_hash=True, frozen=True) @final class OpAddSubE(Op):