rogermt commited on
Commit
22b8d94
·
verified ·
1 Parent(s): 9c279b9

Remove fake task exclusions — all 400 tasks count, unsolved=0

Browse files

There are NO officially excluded tasks. Competition has 400 tasks, all must be attempted."

Files changed (1) hide show
  1. neurogolf_solver/constants.py +2 -2
neurogolf_solver/constants.py CHANGED
@@ -18,8 +18,8 @@ INT64_MIN = int(np.iinfo(np.int64).min)
18
  BANNED_OPS = {'Loop', 'Scan', 'NonZero', 'Unique', 'If', 'Function'}
19
  MAX_FILESIZE = int(1.44 * 1024 * 1024)
20
 
21
- # Task exclusions
22
- EXCLUDED_TASKS = {21, 55, 80, 184, 202, 366}
23
 
24
  # ARC-GEN limits
25
  MAX_ARCGEN_VALIDATE = 30
 
18
  BANNED_OPS = {'Loop', 'Scan', 'NonZero', 'Unique', 'If', 'Function'}
19
  MAX_FILESIZE = int(1.44 * 1024 * 1024)
20
 
21
+ # Task exclusions — NONE. All 400 tasks count.
22
+ EXCLUDED_TASKS = set()
23
 
24
  # ARC-GEN limits
25
  MAX_ARCGEN_VALIDATE = 30