From 8ce16ee1a5a68f080672c4654c0b0755c598dc46 Mon Sep 17 00:00:00 2001 From: Claude Brisson Date: Thu, 30 May 2024 09:30:49 +0200 Subject: [PATCH] Use middle of groups for DUDD by default --- .../src/main/kotlin/org/jeudego/pairgoth/model/Pairing.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-webapp/src/main/kotlin/org/jeudego/pairgoth/model/Pairing.kt b/api-webapp/src/main/kotlin/org/jeudego/pairgoth/model/Pairing.kt index d7010e2..420e62a 100644 --- a/api-webapp/src/main/kotlin/org/jeudego/pairgoth/model/Pairing.kt +++ b/api-webapp/src/main/kotlin/org/jeudego/pairgoth/model/Pairing.kt @@ -42,8 +42,8 @@ data class MainCritParams( val scoreWeight: Double = MAX_SCORE_WEIGHT, // opengotha minimizeScoreDifference val drawUpDownWeight: Double = MAX_DRAW_UP_DOWN_WEIGHT, // opengotha DUDDWeight val compensateDrawUpDown: Boolean = true, - val drawUpDownUpperMode: DrawUpDown = DrawUpDown.BOTTOM, - val drawUpDownLowerMode: DrawUpDown = DrawUpDown.TOP, + val drawUpDownUpperMode: DrawUpDown = DrawUpDown.MIDDLE, + val drawUpDownLowerMode: DrawUpDown = DrawUpDown.MIDDLE, val seedingWeight: Double = MAX_SEEDING_WEIGHT, // 5 *10^6, opengotha maximizeSeeding val lastRoundForSeedSystem1: Int = 2, val seedSystem1: SeedMethod = SeedMethod.SPLIT_AND_RANDOM,