An efficient implementation of Algorithm X
Project description
Algorithm X
An efficient Python implementation of Algorithm X, which finds solutions to instances of the Exact Cover problem..
Installation
$ pip install algorithm-x
Usage
from algorithm_x import AlgorithmX
solver = AlgorithmX(7)
solver.appendRow([2, 4, 5], 'row 1')
solver.appendRow([0, 3, 6], 'row 2')
solver.appendRow([1, 2, 5], 'row 3')
solver.appendRow([0, 3], 'row 4')
solver.appendRow([1, 6], 'row 5')
solver.appendRow([3, 4, 6], 'row 6')
for solution in solver.solve():
print(solution)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
algorithm_x-0.0.2.tar.gz
(2.1 kB
view hashes)
Built Distribution
Close
Hashes for algorithm_x-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ef7b438cada3088c0a2be33d03d2ed113ed5c5f713739b2d3f4793c7bd408d4 |
|
MD5 | 191346e89455c4e42a49b989a70f54f6 |
|
BLAKE2b-256 | d36ceb55c4bf2b137fa8ee525eea78cb13c121a27496e4ea35089645aaa5fc8a |