docs: .NET 렌더러 운영 상태와 검증 기준 정리
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 3s
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (pull_request) Failing after 4s
Quant Engine CI/CD Pipeline / validate-core (pull_request) Failing after 2m17s
Quant Engine CI/CD Pipeline / validate-ui-and-storage (pull_request) Has been skipped

- 운영 상태 문서와 README를 .NET canonical renderer 기준으로 정리했습니다.
- 레거시 렌더러 비운영 선언과 감사/검증기 경로를 통일했습니다.
- 운영 보정 로직의 데이터 소스 반영을 정리했습니다.
This commit is contained in:
2026-06-26 14:18:48 +09:00
parent 9e6e2ded2f
commit e0508324e5
9 changed files with 84 additions and 10 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ def main() -> int:
corpus = _scan_code()
spec_total = len(formula_ids)
impl = [fid for fid in formula_ids if fid in corpus]
report_binding = [fid for fid in formula_ids if fid in corpus and "render_operational_report.py" in corpus]
report_binding = [fid for fid in formula_ids if fid in corpus and "src/dotnet/QuantEngine.Tools" in corpus]
outcome_binding = [fid for fid in formula_ids if fid.startswith(("OUTCOME_", "TRADE_", "SHORT_HORIZON_", "LATE_", "REBOUND_", "CASH_RAISE_")) and fid in corpus]
golden_path = GOLDEN_V2 if GOLDEN_V2.exists() else GOLDEN_TEMP