Remove debugging mode

This commit is contained in:
Claude Brisson
2023-12-21 22:31:58 +01:00
parent 52f660b1d6
commit 68177932b9

View File

@@ -28,7 +28,7 @@ sealed class BaseSolver(
companion object { companion object {
val rand = Random(/* seed from properties - TODO */) val rand = Random(/* seed from properties - TODO */)
val DEBUG_EXPORT_WEIGHT = true val DEBUG_EXPORT_WEIGHT = false
var byePlayers: MutableList<Pairable> = mutableListOf() var byePlayers: MutableList<Pairable> = mutableListOf()
} }