mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
fix: Correct argument passing in ARC 1D task test lambda functions
This commit is contained in:
parent
2d3012d5ae
commit
28c30c69d1
1 changed files with 2 additions and 2 deletions
|
|
@ -24,8 +24,8 @@ def test_all_arc_1d_tasks():
|
|||
move_pix = 2
|
||||
|
||||
tasks = [
|
||||
(lambda s, r, **k: task_move_n_pix(s, move_pix, **k, r=r), {"solid": True}),
|
||||
(lambda s, r, **k: task_move_n_pix_wrapped(s, move_pix, **k, r=r), {"solid": True}),
|
||||
(lambda s, r, **k: task_move_n_pix(s, move_pix, k["solid"], r), {"solid": True}),
|
||||
(lambda s, r, **k: task_move_n_pix_wrapped(s, move_pix, k["solid"], r), {"solid": True}),
|
||||
(task_gravity, {}),
|
||||
(task_gravity_counting, {}),
|
||||
(task_gravity_antigravity, {}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue