give ELO more weight in featured games heuristics

This commit is contained in:
Thibault Duplessis 2013-07-31 13:11:28 +02:00
parent 42429c1d88
commit 3f1435caa0

View file

@ -74,8 +74,8 @@ object Featured {
private val turnBox = box(1 to 21) _
private val heuristics: List[(Heuristic, Float)] = List(
eloHeuristic(Color.White) -> 1,
eloHeuristic(Color.Black) -> 1,
eloHeuristic(Color.White) -> 1.5f,
eloHeuristic(Color.Black) -> 1.5f,
speedHeuristic -> 1,
progressHeuristic -> 0.5f)