summaryrefslogtreecommitdiff
path: root/Demos/benchmarks/nqueens.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demos/benchmarks/nqueens.py')
-rw-r--r--Demos/benchmarks/nqueens.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/benchmarks/nqueens.py b/Demos/benchmarks/nqueens.py
index 87e63df11..918f9e589 100644
--- a/Demos/benchmarks/nqueens.py
+++ b/Demos/benchmarks/nqueens.py
@@ -43,7 +43,7 @@ def permutations(iterable):
else:
return
-# From http://code.activestate.com/recipes/576647/
+# From https://code.activestate.com/recipes/576647/
@cython.locals(queen_count=int, i=int, vec=list)
def n_queens(queen_count):
"""N-Queens solver.