package agents.active;

import agents.base.BaseVoter;
import agents.system.BeatMostFreq;
import agents.system.CopyLast;
import agents.system.FlipLast;
import agents.system.Randomiser;

public class VoteBot extends BaseVoter {
	public VoteBot() {
	  add_voter(new Randomiser());
	  add_voter(new CopyLast());
	  add_voter(new FlipLast());
	  add_voter(new BeatMostFreq());
	  add_voter(new AntiPatternMatcher());	  
	  add_voter(new PatternMatcherD());
	}
}
