(index) Tweak result valuation renormalization

This commit is contained in:
Viktor Lofgren 2024-01-03 14:53:53 +01:00
parent c70f508ae8
commit 71d789aab0

View File

@ -221,7 +221,7 @@ public class ResultValuator {
if (value < 0)
value = 0;
return Math.sqrt((1.0 + scalingFactor) / (1.0 + value)) + Math.sqrt(penalty);
return Math.sqrt((1.0 + scalingFactor + penalty) / (1.0 + value));
}
}