Skip to main content

Some exact cover problems and their solutions

Project description

exact cover samples

contains some exact cover samples together with their solutions.

installation

pip install exact-cover-samples

usage

problems

from exact_cover_samples import problems

problems is a dictionary with the following structure:

{ "shortname": function, ... }

where shortname is a string and function is a function that in turn returns a dictionary with the following structure:

{
    "shortname": str,               # short name of the problem
    "name": str,                    # long name of the problem
    "data": np.ndarray,             # of ndim=2 and dtype=bool
    "solutions": list[list[int]]    # each solution is a list of indices in data
}

in some cases `solutions` is an nd-array too - see below how to canonicalize for comparing solutions.

summary

you can display a summary of the available problems by running the following code:

from exact_cover_samples import summary

summary()
# or to filter a bit
summary("pent")

canonical representation

p = problems["knuth-original"]()
s = p["solutions"]
type(s)
-> list
type(s[0])
-> tuple
type(canonical(s))
-> set

p = problems["pentomino-chessboard"]()
s = p["solutions"]
type(s)
-> numpy.ndarray
type(canonical(s))
-> set

so that as long as your code produces solutions as an iterable of iterables, you should be able to use canonical to compare them like so

# import this module
import exact_cover_samples as ecs
# import a solver module
from exact_cover_py import exact_covers

# get a problem
p = ecs.problems["knuth"]()
# get the expected solutions
expected = p["solutions"]
# get the computed solutions
computed = exact_covers(p["data"])
# compare them
assert ecs.canonical(expected) == ecs.canonical(computed)

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

exact_cover_samples-0.0.4.tar.gz (160.0 kB view details)

Uploaded Source

Built Distribution

exact_cover_samples-0.0.4-py3-none-any.whl (94.1 kB view details)

Uploaded Python 3

File details

Details for the file exact_cover_samples-0.0.4.tar.gz.

File metadata

  • Download URL: exact_cover_samples-0.0.4.tar.gz
  • Upload date:
  • Size: 160.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.1

File hashes

Hashes for exact_cover_samples-0.0.4.tar.gz
Algorithm Hash digest
SHA256 45ecbdbc3083ec07c94e3f8063faef4db3283d1752b033883b72fc91c44a0a35
MD5 fe175fffa3e397117887918e89776036
BLAKE2b-256 be0f835106b1e53d5bf1907d5517879cd74e6405078f5d285d48c3de4cd1eeed

See more details on using hashes here.

File details

Details for the file exact_cover_samples-0.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for exact_cover_samples-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 4c02c76b6ca54f078e62be23fe6dd4b7983f18788d8485b19320a42ab206fa39
MD5 897317b13f555661179ec000bb237d0e
BLAKE2b-256 de85dcdf47871a7598e3076d3bea424f8d596a059199a62cb5a98ff5f16da5ca

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page