2026-05-25-13-42-13 调整自动匹配迭代轮次上限

This commit is contained in:
2026-05-25 13:45:47 +08:00
parent 27e0ec626e
commit 21b372f705
6 changed files with 161 additions and 3 deletions

View File

@@ -1097,7 +1097,7 @@ function normalizeAutoMatchWeights(input: unknown): AutoMatchWeights {
function normalizeAutoMatchIterations(value: unknown) {
return typeof value === 'number' && Number.isFinite(value)
? clampNumber(Math.round(value), 2, 12)
? clampNumber(Math.round(value), 2, 50)
: 6;
}