mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 22:28:46 +00:00
big: Split up gcd + lcm.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user