A Numpy and Numba based Python library for solving Constraint Satisfaction Problems over finite domains
Project description
TLDR
NUCS is a Python library for solving Constraint Satisfaction and Optimization Problems. Because it is 100% written in Python, NUCS is easy to install and use. NUCS is also very fast because it is powered by Numpy and Numba.
Installation
pip install nucs
Documentation
Check out NUCS documentation.
With NUCS, in a few seconds you can ...
Find all 14200 solutions to the 12-queens problem
NUMBA_CACHE_DIR=.numba/cache PYTHON_PATH=. python -m nucs.examples.queens -n 12
{
'OPTIMIZER_SOLUTION_NB': 0,
'PROBLEM_FILTER_NB': 262011,
'PROBLEM_PROPAGATOR_NB': 3,
'PROBLEM_VARIABLE_NB': 36,
'PROPAGATOR_ENTAILMENT_NB': 0,
'PROPAGATOR_FILTER_NB': 2269980,
'PROPAGATOR_FILTER_NO_CHANGE_NB': 990450,
'PROPAGATOR_INCONSISTENCY_NB': 116806,
'SOLVER_BACKTRACK_NB': 131005,
'SOLVER_CHOICE_NB': 131005,
'SOLVER_CHOICE_DEPTH': 10,
'SOLVER_SOLUTION_NB': 14200
}
Compute the 92 solutions to the BIBD(8,14,7,4,3) problem
NUMBA_CACHE_DIR=.numba/cache PYTHON_PATH=. python -m nucs.examples.bibd
{
'OPTIMIZER_SOLUTION_NB': 0,
'PROBLEM_FILTER_NB': 2797,
'PROBLEM_PROPAGATOR_NB': 462,
'PROBLEM_VARIABLE_NB': 504,
'PROPAGATOR_ENTAILMENT_NB': 5273,
'PROPAGATOR_FILTER_NB': 562130,
'PROPAGATOR_FILTER_NO_CHANGE_NB': 531724,
'PROPAGATOR_INCONSISTENCY_NB': 1307,
'SOLVER_BACKTRACK_NB': 1398,
'SOLVER_CHOICE_NB': 1398,
'SOLVER_CHOICE_DEPTH': 41,
'SOLVER_SOLUTION_NB': 92
}
Demonstrate that the optimal 10-marks Golomb ruler length is 55
NUMBA_CACHE_DIR=.numba/cache PYTHON_PATH=. python -m nucs.examples.golomb -n 10
{
'OPTIMIZER_SOLUTION_NB': 10,
'PROBLEM_FILTER_NB': 22886,
'PROBLEM_PROPAGATOR_NB': 82,
'PROBLEM_VARIABLE_NB': 45,
'PROPAGATOR_ENTAILMENT_NB': 98080,
'PROPAGATOR_FILTER_NB': 2843257,
'PROPAGATOR_FILTER_NO_CHANGE_NB': 1806240,
'PROPAGATOR_INCONSISTENCY_NB': 11406,
'SOLVER_BACKTRACK_NB': 11405,
'SOLVER_CHOICE_NB': 11470,
'SOLVER_CHOICE_DEPTH': 9,
'SOLVER_SOLUTION_NB': 10
}
[1, 6, 10, 23, 26, 34, 41, 53, 55]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nucs-0.9.4.tar.gz
(28.9 kB
view details)
Built Distribution
NUCS-0.9.4-py3-none-any.whl
(58.8 kB
view details)
File details
Details for the file nucs-0.9.4.tar.gz
.
File metadata
- Download URL: nucs-0.9.4.tar.gz
- Upload date:
- Size: 28.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5775769a2e7cbfcb79f7d0e7f7d8b0e64c9755fe06e68e412c26c3442ff1be02 |
|
MD5 | 7c31ab56fbd47c7b8357341dbf15d9d8 |
|
BLAKE2b-256 | 4f81ca758467f57c313232108fa8a4734743d0089a0370f3f1d7b04abc710592 |
File details
Details for the file NUCS-0.9.4-py3-none-any.whl
.
File metadata
- Download URL: NUCS-0.9.4-py3-none-any.whl
- Upload date:
- Size: 58.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c931c0f01c44907e1cd2a937adcd5e74c5e0d4fbc2872e5c95915167045ff23b |
|
MD5 | 97ad51e400ea9d14076b3f9d868788ce |
|
BLAKE2b-256 | 051576fbf2e617fd3804b1af826ecba6bd4f2ead1cbe52cbaa1e45052bf909e7 |