(valuation) Tweaking penalties a bit

This commit is contained in:
Viktor Lofgren 2024-01-03 16:02:25 +01:00
parent c770f0b68b
commit 87048511fe

View File

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