# File src/selection.rb, line 37
  def tournament_select_population(winner_success_chance = 0.8, max_game_length = 1000, verbose = false)
    new_population = []
    1.upto(@individuals.length) do
      new_population << tournament_select_one(winner_success_chance, max_game_length, verbose).to_genome
      puts "Created #{new_population.length} indivduals" if verbose
    end
    new_population
  end