PyMiniSolvers is a Python API for the MiniSat and MiniCard constraint solvers. It accesses the solvers via shared libraries, reducing overhead and allowing for efficient incremental solving. Its interfaces closely match the interfaces of each tool's Solver class, providing flexible and powerful access to most of the solvers' standard capabilities. Additionally, an extended "SubsetSolver" interface is provided for each tool, simplifying reasoning about subsets of a constraint set (e.g., solving arbitrary subsets of the added constraints, extracting UNSAT cores, etc.).
Basic usage:
>>> import minisolvers
>>> S = minisolvers.MinisatSolver()
>>> for i in range(4):
... S.new_var()
>>> for clause in [1], [-2], [-1, 2, -3], [3, 4]:
... S.add_clause(clause)
>>> S.solve()
True
>>> list(S.get_model())
[1, 0, 0, 1]
>>> S.add_clause([-1, 2, 3, -4])
>>> S.solve()
False
For further examples, see the documentation.
https://pyminisolvers.readthedocs.io/
Requirements:
- Python 2.7 or 3.x
- A standard build environment (make, gcc, etc.)
- zlib development libraries (e.g.,
zlib1g-dev
orzlib-devel
packages)
Tested Platforms:
- Linux
- Cygwin
- OS X
To build the shared libraries:
$ make
To test the API (automatically tests w/ Python 2 and/or 3 as available):
$ make test
Or manually run the tests:
$ python -m doctest -v minisolvers.py
$ python test_minisolvers.py
and/or
$ python3 -m doctest -v minisolvers.py
$ python3 test_minisolvers.py
This code is licensed under the MIT license. See LICENSE for details.