| """ | |
| Compatibility shim for the corrected experiment runner. | |
| The benchmark logic now lives in `experiments/run_all.py`, which implements: | |
| - strict prefix evaluation | |
| - shuffled-chronology causal ablation | |
| - aligned XGBoost baseline | |
| - multi-seed aggregation | |
| """ | |
| from experiments.run_all import main | |
| if __name__ == "__main__": | |
| main() | |