1
0

command advance sweep

This commit is contained in:
Aiden
2026-05-26 15:21:52 +10:00
parent 74a2e2fd2c
commit a48fa0ed18
14 changed files with 821 additions and 78 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python3
"""Bench runner for CONNECT: OK candidate advance/ACK sweeps."""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
from h8536.connect_ok_advance_sweep import main
if __name__ == "__main__":
raise SystemExit(main())