A Pythonic package for combinatorics
Project description
Combi is a Pythonic package for combinatorics.
Combi lets you explore spaces of permutations and combinations as if they were Python sequences, but without generating all the permutations/combinations in advance. It lets you specify a lot of special conditions on these spaces. It also provides a few more classes that might be useful in combinatorics programming.
Combi documentation: https://combi.readthedocs.org/en/stable/
Combi on GitHub: https://github.com/cool-RR/combi
Combi on PyPI: https://pypi.python.org/pypi/combi
Changelog: https://combi.readthedocs.org/en/stable/changelog.html
Basic usage
Use PermSpace to create a permutation space:
>>> from combi import *
>>> perm_space = PermSpace('meow')
It behaves like a sequence:
>>> len(perm_space)
24
>>> perm_space[7]
<Perm: ('e', 'm', 'w', 'o')>
>>> perm_space.index('mowe')
3
And yet the permutations are created on-demand rather than in advance.
Use CombSpace to create a combination space, where order doesn’t matter:
>>> comb_space = CombSpace(('vanilla', 'chocolate', 'strawberry'), 2)
>>> comb_space
<CombSpace: ('vanilla', 'chocolate', 'strawberry'), n_elements=2>
>>> comb_space[2]
<Comb, n_elements=2: ('chocolate', 'strawberry')>
>>> len(comb_space)
3
For more details, try the tutorial or see the documentation contents.
Features
PermSpace lets you explore a space of permutations as if it was a Python sequence.
Permutations are generated on-demand, so huge permutation spaces can be created easily without big memory footprint.
PermSpace will notice if you have repeating elements in your sequence, and treat all occurences of the same value as interchangable rather than create redundant permutations.
A custom domain can be specified instead of just using index numbers.
You may specify some elements to be fixed, so they’ll point to the same value in all permutations. (Useful for limiting an experiment to a subset of the original permutation space.)
Permutation spaces may be limited to a certain degree of permutations. (A permutation’s degree is the number of transformations it takes to make it.)
k-permutations are supported.
You may specify a custom type for the generated permutations, so you could implement your own functionality on them.
CombSpace lets you explore a space of combinations as if it was a Python sequence.
MapSpace is like Python’s built-in map, except it’s a sequence that allows index access.
ProductSpace is like Python’s itertools.product, except it’s a sequence that allows index access.
ChainSpace is like Python’s itertools.chain, except it’s a sequence that allows index access.
SelectionSpace is a space of all selections from a sequence, of all possible lengths.
The Bag class is a multiset like Python’s collections.Counter, except it offers far more functionality, like more arithmetic operations between bags, comparison between bags, and more. (It can do that because unlike Python’s collections.Counter, it only allows natural numbers as keys.)
Classes FrozenBag, OrderedBag and FrozenOrderedBag are provided, which are variations on Bag.
Requirements
Python, version 2.6, 2.7 or 3.3 or above. If you’re new to Python, download the newest version from here.
Installation
Use pip to install Combi:
$ pip install combi
Community
Combi on GitHub: https://github.com/cool-RR/combi Feel free to fork and send pull requests!
There are three Combi groups, a.k.a. mailing lists:
If you need help with Combi, post a message on the combi-users Google Group.
If you want to help on the development of Combi itself, come say hello on the combi-dev Google Group.
If you want to be informed on new releases of Combi, sign up for the low-traffic combi-announce Google Group.
Combi was created by Ram Rachum. I provide Development services in Python and Django.
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
Built Distributions
File details
Details for the file combi-1.1.4.tar.gz
.
File metadata
- Download URL: combi-1.1.4.tar.gz
- Upload date:
- Size: 716.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e039296deb4cdb250ce451cbf443fa66336243a10329355422ac78e94a35c3c7 |
|
MD5 | cac159ada2f849321aaf2a34bb013f9f |
|
BLAKE2b-256 | e240c924f4d087ea43b25ba7c72c7e45da509d819a089cf053d87920b962391a |
File details
Details for the file combi-1.1.4-py3-none-any.whl
.
File metadata
- Download URL: combi-1.1.4-py3-none-any.whl
- Upload date:
- Size: 250.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9875554f9fbe34aa349e390fd6897a52508006582a11f0b907895d85c1e24a6d |
|
MD5 | eb4d3a63420af19d24c62186800b44fa |
|
BLAKE2b-256 | 3d4e06b8dc3733eee9ebffde5522c52b18d6ab73fca31ac57f731a165c860b2f |
File details
Details for the file combi-1.1.4-py2-none-any.whl
.
File metadata
- Download URL: combi-1.1.4-py2-none-any.whl
- Upload date:
- Size: 310.7 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 449e38e76eb80ee88d80ee491a423f8bdb57287b62c751d184a13b4b6a5f122f |
|
MD5 | b08df37f312278dcb334575241816d67 |
|
BLAKE2b-256 | 8bb123b88803834a316ed3f4336b3e13ee4b4153592a7a0d0cc430d019634762 |