|
1234567891011121314 |
- # Compute the Permanent
- Implements Ryser's algorithm for the [permanent](https://en.wikipedia.org/wiki/Permanent).
-
- Install:
- ```bash
- $ pip install permanent
- ```
- Use:
- ```python
- >>> from numpy import *
- >>> from permanent import permanent
- >>> permanent(eye(15))
- (1-0j)
- ```
|