Kaydet (Commit) daec961e authored tarafından Tim Peters's avatar Tim Peters

Changed Karatsuba cutoff to match current reality.

üst 42cd14d0
......@@ -6,7 +6,7 @@ from random import random, randint
SHIFT = 15
BASE = 2 ** SHIFT
MASK = BASE - 1
KARATSUBA_CUTOFF = 35 # from longobject.c
KARATSUBA_CUTOFF = 70 # from longobject.c
# Max number of base BASE digits to use in test cases. Doubling
# this will more than double the runtime.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment