From 1a4904fa539d9f25b5db5df8cdf8be16a4ff5bbe Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Thu, 2 Oct 2014 19:32:52 -0700 Subject: [PATCH] fix queens --- csp/python-constraint/trials/queens.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csp/python-constraint/trials/queens.py b/csp/python-constraint/trials/queens.py index 73ec4569..deac7131 100755 --- a/csp/python-constraint/trials/queens.py +++ b/csp/python-constraint/trials/queens.py @@ -7,7 +7,7 @@ import sys def main(show=False): problem = Problem() - size = 12 + size = 8 cols = range(size) rows = range(size) problem.addVariables(cols, rows)