add gcd default max_value to 10_000

This commit is contained in:
Andreas Koepf 2025-01-24 09:17:49 +01:00
parent b48307a9ec
commit b29f81a4dc

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: