Created
October 12, 2017 18:15
-
-
Save fedden/c82bc1a71be45836b5ebf1e6b681008c to your computer and use it in GitHub Desktop.
god fly dfo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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