We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bde5d29 commit cbac920Copy full SHA for cbac920
searches/simulated_annealing.py
@@ -74,7 +74,7 @@ def simulated_annealing(
74
current_temp = current_temp - (current_temp * rate_of_decrease)
75
76
if current_temp < threshold_temp or next_state is None:
77
- # temperature below threshold, or could not find a suitaable neighbor
+ # temperature below threshold, or could not find a suitable neighbor
78
search_end = True
79
else:
80
current_state = next_state
0 commit comments