private HashMap<PlayerId, AccuracyData> accuracyData;
public ActionTrackingVisitor(OpponentModel opponentModel, PlayerId bot) {
super(opponentModel);
try {
this.propz = new ARFFPropositionalizer(bot);
accuracyData = new HashMap<PlayerId, AccuracyData>();
} catch (IOException e) {
e.printStackTrace();
}
}