Wave 2 scan: 0 matches for composition chains, mode extensions, bg fill. Tasks are harder than expected.
Browse files
neurogolf_solver/solvers/WAVE2_SCAN.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Wave 2 Scan Results (2026-04-27)
|
| 2 |
+
|
| 3 |
+
## Patterns tested against 349 unsolved tasks:
|
| 4 |
+
|
| 5 |
+
| Pattern | Matches |
|
| 6 |
+
|---------|---------|
|
| 7 |
+
| transform_then_recolor (flip/rot/transpose + color map) | 0 |
|
| 8 |
+
| recolor_then_transform (reverse order) | 0 |
|
| 9 |
+
| row_mode_fill (each row → dominant color) | 0 |
|
| 10 |
+
| col_mode_fill (each col → dominant color) | 0 |
|
| 11 |
+
| fill_bg_with_mode (zeros → global mode) | 0 |
|
| 12 |
+
| fill_bg_with_color (zeros → fixed color) | 0 (PARTIAL on first example only for ~30 tasks) |
|
| 13 |
+
|
| 14 |
+
## Why bg fill tasks are PARTIAL:
|
| 15 |
+
|
| 16 |
+
The 53 tasks where "only bg pixels changed" do NOT do simple global fill.
|
| 17 |
+
They fill bg pixels based on **spatial context**:
|
| 18 |
+
- Fill inside a shape boundary
|
| 19 |
+
- Fill adjacent to a specific color
|
| 20 |
+
- Fill based on nearest non-bg neighbor
|
| 21 |
+
|
| 22 |
+
These require spatial reasoning (flood fill, distance transforms, object detection)
|
| 23 |
+
that cannot be done with simple ReduceSum/ArgMax/Where.
|
| 24 |
+
|
| 25 |
+
## Conclusion:
|
| 26 |
+
|
| 27 |
+
Wave 2 analytical solvers have 0 viable targets in this task set.
|
| 28 |
+
The remaining tasks require fundamentally different approaches.
|