Skip to content

Instantly share code, notes, and snippets.

@fedden
Created October 12, 2017 18:15
Show Gist options
  • Save fedden/c82bc1a71be45836b5ebf1e6b681008c to your computer and use it in GitHub Desktop.
Save fedden/c82bc1a71be45836b5ebf1e6b681008c to your computer and use it in GitHub Desktop.
god fly dfo
swarms_best_index = np.argmin(fitnesses)
self.swarms_best_score = np.amin(fitnesses)
self.swarms_best = self.population[swarms_best_index]
if self.swarms_best_score <= self.all_time_best_score:
self.all_time_best_score = self.swarms_best_score
self.all_time_best = self.swarms_best
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment