big: Split up gcd + lcm.

This commit is contained in:
Jeroen van Rijn
2021-08-11 20:59:53 +02:00
parent 62dcccd7ef
commit c3db24f834
3 changed files with 185 additions and 197 deletions
+6 -1
View File
@@ -446,7 +446,6 @@ TESTS = {
test_factorial: [
[ 6_000 ], # Regular factorial, see cutoff in common.odin.
[ 12_345 ], # Binary split factorial
[ 100_000 ],
],
test_gcd: [
[ 23, 25, ],
@@ -464,6 +463,12 @@ TESTS = {
],
}
if not FAST_TESTS:
TESTS[test_factorial].append(
# This one on its own takes around 800ms, so we exclude it for FAST_TESTS
[ 100_000 ],
)
total_passes = 0
total_failures = 0