⚡ INTERIOR_FLOOD VERIFIED · CSW=1.0
Origin task6ea4a07e
Workeryone (qwen2.5:32b)
Turn32b turn 1 · 43.9s
CSW witnesses13/13 (1.0)
Sealed2026-04-08 14:20 EDT
γ₁ hashb7da7a25d05e40fe
L-Depth2
FiledABR-769 · ABR-788
Tasks compressed2
Approach code⏳ Wave 9 extraction (IRF-WALL-EXEC-001 closed)
# HEURISTIC: INTERIOR_FLOOD
# Biological parallel: cytoplasm inside closed membrane
# Closed contour → flood fill from corners → interior = un-reached zeros
def _detect_interior(inp, out):
h, w = len(inp), len(inp[0])
visited = set()
stack = [(r,c) for r in [0,h-1] for c in range(w)] + \
[(r,c) for c in [0,w-1] for r in range(h)]
while stack:
r,c = stack.pop()
if (r,c) in visited or not(0<=r<h and 0<=c<w): continue
if inp[r][c] != 0: continue
visited.add((r,c))
stack += [(r+1,c),(r-1,c),(r,c+1),(r,c-1)]
interior = {(r,c) for r in range(h) for c in range(w)
if inp[r][c]==0 and (r,c) not in visited}
return len(interior) > 0
🧬 Negative Antibodies 4 ACTIVE
FLOOD_FILL_ENCLOSEDSENIOR_ONLY · skip 32b
SYMMETRY_HORIZONTALSENIOR_ONLY · skip 32b
COLOR_MAPSENIOR_ONLY · skip 32b
MULTI_COMPONENTSENIOR_ONLY · skip 32b
Each antibody saves ~180s per wave by bypassing 3× 32b turns.
Bootstrapped from registry.json at every wave boot.
3-layer naming shield: entry-strip · persist-guard · while-collapse
Stray NEGATIVE_INTERIOR_FLOOD excised from vault (c36f0c861).