Reduce default value of balanceWBweight to 1e3 (was 1e6)

This commit is contained in:
Quentin Rendu
2025-03-06 16:08:18 +01:00
parent 73352ef430
commit d91eb5407d

View File

@@ -16,7 +16,7 @@ data class BaseCritParams(
val dupWeight: Double = MAX_AVOIDDUPGAME, val dupWeight: Double = MAX_AVOIDDUPGAME,
val random: Double = 0.0, val random: Double = 0.0,
val deterministic: Boolean = true, val deterministic: Boolean = true,
val colorBalanceWeight: Double = MAX_COLOR_BALANCE, val colorBalanceWeight: Double = MAX_COLOR_BALANCE/1000, // reduce default value to 1e3 (to avoid split bug)
val byeWeight: Double = MAX_BYE_WEIGHT // This weight is not in opengotha val byeWeight: Double = MAX_BYE_WEIGHT // This weight is not in opengotha
) { ) {
init { init {