this.selection = new TournamentSelection(this, 4);
this.rules = new BasicRuleHolder();
// set the score compare method
if (theScoreFunction.shouldMinimize()) {
this.selectionComparator = new MinimizeAdjustedScoreComp();
this.bestComparator = new MinimizeScoreComp();
} else {
this.selectionComparator = new MaximizeAdjustedScoreComp();
this.bestComparator = new MaximizeScoreComp();
}