MCTSBot bot = getLearningMCTSBot();
if (bot.getId().equals(actor)) return false;
Config config = bot.getConfig();
WekaLearningModel model = (WekaLearningModel) config.getModel();
ARFFPlayer player = model.getPlayer(actor);
return player.modelCreated();
} catch (Exception e) {
System.err.println(e);
return false;
}
}