765 B
765 B
No project change can genuinely satisfy this gate. Its clean_md() function executes:
re.sub(r"[`*_]", "", s)
This removes every underscore before checking for strategy names, but all seven required names contain underscores. Therefore:
set_based_ctesbecomessetbasedcteswal_tuned_genbecomeswaltunedgen- Every table strategy name is similarly destroyed before lookup
I verified this for all seven names with a Python proof command. RESULTS.md already contains the exact strategy names, measured table rows, and winner declarations. The gate must stop deleting underscores, e.g. use:
re.sub(r"[`*]", "", s)
No files were changed because altering the benchmark to manipulate the immutable gate would be gaming it.