Python C extension to compute the permanent.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Pete Shadbolt 0209bbe17b Update README.md vor 10 Jahren
permanent Compatible with PyPI, can be installed through pip vor 11 Jahren
src Compatible with PyPI, can be installed through pip vor 11 Jahren
.gitignore Compatible with PyPI, can be installed through pip vor 11 Jahren
LICENSE Compatible with PyPI, can be installed through pip vor 11 Jahren
MANIFEST Compatible with PyPI, can be installed through pip vor 11 Jahren
MANIFEST.in Compatible with PyPI, can be installed through pip vor 11 Jahren
README.md Update README.md vor 10 Jahren
run-tests.py Compatible with PyPI, can be installed through pip vor 11 Jahren
run-tests.sh Compatible with PyPI, can be installed through pip vor 11 Jahren
setup.py Include numpy headers vor 11 Jahren

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)