Remove fake task exclusions — all 400 tasks count, unsolved=0
Browse filesThere are NO officially excluded tasks. Competition has 400 tasks, all must be attempted."
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 =
|
| 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
|