add gcd default max_value to 10_000

This commit is contained in:
Andreas Koepf 2025-01-24 09:17:49 +01:00
parent 7cf3eb5f26
commit 545c9d998b

View file

@ -85,7 +85,7 @@ def gcd_dataset(
min_numbers: int = 2,
max_numbers: int = 2,
min_value: int = 1,
max_value: int = 1000,
max_value: int = 10_000,
seed: Optional[int] = None,
size: int = 500,
) -> GCDDataset: