This commit is contained in:
wassname
2026-06-11 11:07:28 +00:00
parent 7871aa66b8
commit 270c4f5a27
30 changed files with 455 additions and 442 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
"""Vibe-check of the substrate partition + teacher-pool composition (no-cheat family).
"""Verify substrate partition and teacher-pool composition.
SHOULD: the 4-mode substrate partitions problems cleanly into distinct modes, and the
A5 teacher_modes filter hands the route gate ONLY known-mode demos. ELSE: a
@@ -61,7 +61,7 @@ def main() -> int:
ok &= _check("held-out modes are genuinely held out (each has >0 problems in the partition)",
all(counts[m] > 0 for m in held_out))
logger.info("ALL PASS -- partition + teacher-pool no-cheat invariants hold" if ok else "FAILURES above")
logger.info("ALL PASS -- partition + teacher-pool oracle-separation invariants hold" if ok else "FAILURES above")
return 0 if ok else 1