mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-24 17:05:03 +00:00
docs: Add descriptive comments for num_jugs and difficulty parameters
This commit is contained in:
parent
ece040a0d0
commit
9068e1d1b1
1 changed files with 2 additions and 2 deletions
|
|
@ -225,8 +225,8 @@ def generate_jug_solution(jug_capacities: Tuple[int, int, int], target: int) ->
|
||||||
class JugsConfig:
|
class JugsConfig:
|
||||||
"""Configuration for Jugs puzzle generation"""
|
"""Configuration for Jugs puzzle generation"""
|
||||||
|
|
||||||
num_jugs: int = 3
|
num_jugs: int = 3 # Number of jugs in the puzzle (affects puzzle complexity and solution space)
|
||||||
difficulty: int = 10
|
difficulty: int = 10 # Minimum required moves to solve the puzzle. Also affects max jug capacity (3 + difficulty)
|
||||||
seed: Optional[int] = None
|
seed: Optional[int] = None
|
||||||
size: int = 500
|
size: int = 500
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue