From 690ec7d11da85901791eed3308fa212c1d227a28 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Fri, 7 Oct 2022 17:31:47 -0700 Subject: [PATCH] format code --- src/bigint_presentation_code/toom_cook.py | 1 + 1 file changed, 1 insertion(+) 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): -- 2.30.2