Python C extension to compute the permanent.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Pete Shadbolt 0209bbe17b Update README.md 10 år sedan
permanent Compatible with PyPI, can be installed through pip 10 år sedan
src Compatible with PyPI, can be installed through pip 10 år sedan
.gitignore Compatible with PyPI, can be installed through pip 10 år sedan
LICENSE Compatible with PyPI, can be installed through pip 10 år sedan
MANIFEST Compatible with PyPI, can be installed through pip 10 år sedan
MANIFEST.in Compatible with PyPI, can be installed through pip 10 år sedan
README.md Update README.md 10 år sedan
run-tests.py Compatible with PyPI, can be installed through pip 10 år sedan
run-tests.sh Compatible with PyPI, can be installed through pip 10 år sedan
setup.py Include numpy headers 10 år sedan

README.md

Compute the Permanent

Implements Ryser's algorithm for the permanent Should install with

$ pip install permanent

Then

>>> from numpy import *
>>> from permanent import permanent
>>> permanent(eye(15))
(1-0j)