Python C extension to compute the permanent.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Pete Shadbolt 0209bbe17b Update README.md 10年前
permanent Compatible with PyPI, can be installed through pip 10年前
src Compatible with PyPI, can be installed through pip 10年前
.gitignore Compatible with PyPI, can be installed through pip 10年前
LICENSE Compatible with PyPI, can be installed through pip 10年前
MANIFEST Compatible with PyPI, can be installed through pip 10年前
MANIFEST.in Compatible with PyPI, can be installed through pip 10年前
README.md Update README.md 10年前
run-tests.py Compatible with PyPI, can be installed through pip 10年前
run-tests.sh Compatible with PyPI, can be installed through pip 10年前
setup.py Include numpy headers 10年前

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)