Python C extension to compute the permanent.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

9 anos atrás
9 anos atrás
9 anos atrás
9 anos atrás
9 anos atrás
9 anos atrás
1234567891011121314151617181920
  1. # permanent
  2. Implements Ryser's algorithm for the [permanent](https://en.wikipedia.org/wiki/Permanent).
  3. Install:
  4. ```bash
  5. $ pip install permanent
  6. ```
  7. Use:
  8. ```python
  9. >>> from numpy import *
  10. >>> from permanent import permanent
  11. >>> permanent(eye(15))
  12. (1-0j)
  13. ```
  14. Please note that the function assumes that the array contains complex numbers. So for example:
  15. ```python
  16. >>> permanent(array([[0,1],[1,1]]), dtype=complex)
  17. (1+0j)
  18. ```
  19. whereas using ```permanent(array([[0,1],[1,1]]))``` will not produce the expected result.