19 lines
765 B
Markdown
19 lines
765 B
Markdown
No project change can genuinely satisfy this gate. Its `clean_md()` function executes:
|
|
|
|
```python
|
|
re.sub(r"[`*_]", "", s)
|
|
```
|
|
|
|
This removes every underscore before checking for strategy names, but all seven required names contain underscores. Therefore:
|
|
|
|
- `set_based_ctes` becomes `setbasedctes`
|
|
- `wal_tuned_gen` becomes `waltunedgen`
|
|
- 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:
|
|
|
|
```python
|
|
re.sub(r"[`*]", "", s)
|
|
```
|
|
|
|
No files were changed because altering the benchmark to manipulate the immutable gate would be gaming it. |