Skip to content

Commit cbac920

Browse files
committed
spelling fix
1 parent bde5d29 commit cbac920

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

searches/simulated_annealing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def simulated_annealing(
7474
current_temp = current_temp - (current_temp * rate_of_decrease)
7575

7676
if current_temp < threshold_temp or next_state is None:
77-
# temperature below threshold, or could not find a suitaable neighbor
77+
# temperature below threshold, or could not find a suitable neighbor
7878
search_end = True
7979
else:
8080
current_state = next_state

0 commit comments

Comments
 (0)