mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-22 16:49:06 +00:00
Tweak mini sudoku config
This commit is contained in:
parent
32928bd77b
commit
fa773115b9
1 changed files with 2 additions and 1 deletions
|
|
@ -21,7 +21,8 @@ class MiniSudokuConfig:
|
|||
|
||||
def validate(self):
|
||||
"""Validate configuration parameters"""
|
||||
assert 0 <= self.min_empty <= 16, "min_empty must be between 0 and 16"
|
||||
# More than 12 empty cells tends to result in multiple solutions
|
||||
assert 0 <= self.min_empty <= 12, "min_empty must be between 0 and 12"
|
||||
assert self.min_empty <= self.max_empty <= 16, "max_empty must be between min_empty and 16"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue