Phase C/dry-run·미사용 모듈·재생성 HTML을 제거하고, 운영 체결을 sim_causal_hybrid와 동일한 hybrid 로직으로 통합한다. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
292 B
Python
12 lines
292 B
Python
#!/usr/bin/env python3
|
|
"""Simulation: GT 프로필 + 인과 EV 매칭 (규칙·monitor_rules)."""
|
|
import runpy
|
|
from pathlib import Path
|
|
|
|
runpy.run_path(str(Path(__file__).resolve().parent / "_bootstrap.py"))
|
|
|
|
from deepcoin.matching.pipeline import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|