public int averageStateEvaluation(Evaluator e) { int score = 0; foreach (GameState g in gameStates) { score += e.evaluation(g, MyTronBot.Player); } return score / gameStates.Count; }