Archived
0

change scorer for fast priority

This commit is contained in:
iMoHax
2015-07-15 15:13:36 +03:00
parent a658902d7b
commit 49d2126878

View File

@@ -112,6 +112,9 @@ public class Scorer {
if (lands > 0 && profile.getLandMult() > 0){
score = profit / (lands * profile.getLandMult());
}
if (profile.getPathPriority() == Profile.PATH_PRIORITY.ECO){
jumps = 1;
}
score -= profile.getJumpMult()/profile.getJumps() * score * jumps;
}
LOG.trace("score={}", score);