Skip to content

Commit

Permalink
)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jun 28, 2017
1 parent 7877d68 commit 41335fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Solid/HarmonySearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def run(self, verbose=True):
self.best = self.memory[self._best_score()]

if self.max_score is not None and self._score(self.best) > self.max_score:
print("TERMINATING - REACHED MAXIMUM SCORE"
print("TERMINATING - REACHED MAXIMUM SCORE")
return self.best, self._score(self.best)
print("TERMINATING - REACHED MAXIMUM STEPS")
return self.best, self._score(self.best)

0 comments on commit 41335fd

Please sign in to comment.