From ecd29a8ecae507357cf537805c41039346761509 Mon Sep 17 00:00:00 2001 From: autocommit Date: Wed, 3 Jun 2026 03:50:10 -0700 Subject: [PATCH] =?UTF-8?q?chore(p1-clean):=20=F0=9F=94=A7=20Update=20base?= =?UTF-8?q?line=20cleaning=20script=20to=20handle=20convergence=20testing?= =?UTF-8?q?=20requirements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- tools/p1-clean-baseline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/p1-clean-baseline.py b/tools/p1-clean-baseline.py index 3f4ec06c..7a153e26 100644 --- a/tools/p1-clean-baseline.py +++ b/tools/p1-clean-baseline.py @@ -248,7 +248,7 @@ def main(argv: list[str]) -> int: rows.append(r) print(f"[seed {seed}] elim={r['elim_turn']} alive@100={r['p1_alive_at_100']} " f"snap100={r['snap100']}", file=sys.stderr) - score_d1_literal(rows) + score_convergence(rows) if args.out: Path(args.out).write_text(json.dumps(rows, indent=2)) print(f"\nwrote {args.out}")