Files
ortools-clone/examples/python/nqueens_sat.py

109 lines
3.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2025-01-10 11:35:44 +01:00
# Copyright 2010-2025 Google LLC
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2023-07-01 06:06:53 +02:00
"""CP/SAT model for the N-queens problem."""
import time
from absl import app
from absl import flags
2025-07-23 17:38:49 +02:00
from ortools.sat.python import cp_model
2023-07-01 06:06:53 +02:00
_SIZE = flags.DEFINE_integer("size", 8, "Number of queens.")
class NQueenSolutionPrinter(cp_model.CpSolverSolutionCallback):
"""Print intermediate solutions."""
2023-11-16 19:46:56 +01:00
def __init__(self, queens: list[cp_model.IntVar]):
cp_model.CpSolverSolutionCallback.__init__(self)
self._queens = queens
self._solution_count = 0
self._start_time = time.time()
2023-11-16 19:46:56 +01:00
@property
def solution_count(self) -> int:
return self._solution_count
2023-11-16 19:46:56 +01:00
def on_solution_callback(self) -> None:
current_time = time.time()
2023-07-01 06:06:53 +02:00
print(
f"Solution{self._solution_count}, time ="
f" {current_time - self._start_time} s"
2023-07-01 06:06:53 +02:00
)
self._solution_count += 1
all_queens = range(len(self._queens))
for i in all_queens:
for j in all_queens:
if self.value(self._queens[j]) == i:
# There is a queen in column j, row i.
2023-07-01 06:06:53 +02:00
print("Q", end=" ")
else:
2023-07-01 06:06:53 +02:00
print("_", end=" ")
print()
print()
def main(_):
board_size = _SIZE.value
### Creates the solver.
model = cp_model.CpModel()
### Creates the variables.
# The array index is the column, and the value is the row.
2023-11-16 19:46:56 +01:00
queens = [
model.new_int_var(0, board_size - 1, "x%i" % i) for i in range(board_size)
]
### Creates the constraints.
# All columns must be different because the indices of queens are all
# different, so we just add the all different constraint on the rows.
2023-11-16 19:46:56 +01:00
model.add_all_different(queens)
# No two queens can be on the same diagonal.
diag1 = []
diag2 = []
for i in range(board_size):
2023-11-16 19:46:56 +01:00
q1 = model.new_int_var(0, 2 * board_size, "diag1_%i" % i)
q2 = model.new_int_var(-board_size, board_size, "diag2_%i" % i)
diag1.append(q1)
diag2.append(q2)
2023-11-16 19:46:56 +01:00
model.add(q1 == queens[i] + i)
model.add(q2 == queens[i] - i)
model.add_all_different(diag1)
model.add_all_different(diag2)
### Solve model.
solver = cp_model.CpSolver()
solution_printer = NQueenSolutionPrinter(queens)
# Enumerate all solutions.
solver.parameters.enumerate_all_solutions = True
2023-11-16 19:46:56 +01:00
# solve.
solver.solve(model, solution_printer)
print()
2023-07-01 06:06:53 +02:00
print("Statistics")
2023-11-16 19:46:56 +01:00
print(" - conflicts : %i" % solver.num_conflicts)
print(" - branches : %i" % solver.num_branches)
print(" - wall time : %f s" % solver.wall_time)
print(" - solutions found : %i" % solution_printer.solution_count)
2023-07-01 06:06:53 +02:00
if __name__ == "__main__":
app.run(main)