cryptarithm change defaults: size=500, include_example=True

This commit is contained in:
Andreas Koepf 2025-02-16 16:38:43 +01:00
parent 172d81be8a
commit de8162dc6a

View file

@ -36,9 +36,9 @@ class CryptarithmConfig:
min_words: int = 2 # Minimum number of addends
max_words: int = 3 # Maximum number of addends
allow_leading_zero: bool = False
include_example: bool = True
seed: Optional[int] = None
size: int = 20 # Number of puzzle instances to generate
include_example: bool = False
size: int = 500 # Number of puzzle instances to generate
def validate(self):
"""Validate configuration parameters."""