def get_tournament_fittest(self):
     tournament = Tournament()
     tournament.randomly_populate(self.current_population, self.tournament_size)
     return tournament.get_fittest(self.target_individual)