This commit is contained in:
2026-01-20 03:45:15 +08:00
parent 101e8b7e8e
commit 1498209b0e
147 changed files with 13055 additions and 12 deletions

View File

@@ -44,7 +44,8 @@ def truncation_correction(mu, sigma, C, p_thresh):
if p_trunc < p_thresh:
return mu, p_trunc, False
else:
mu_tilde = mu * (1 + 0.4 * p_trunc)
# 与主流程 `02_demand_correction.py` 保持一致:线性修正系数 0.1
mu_tilde = mu * (1 + 0.1 * p_trunc)
return mu_tilde, p_trunc, True