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.

run-tests.py 261B

9 år sedan
9 år sedan
123456789101112131415
  1. import os
  2. import time
  3. import multiprocessing as mp
  4. import numpy as np
  5. import lib
  6. import time
  7. dimension=2
  8. real=np.ones((dimension, dimension))
  9. imag=np.ones((dimension, dimension))
  10. submatrix=real+1j*imag
  11. print submatrix.dtype
  12. p=lib.permanent(submatrix)
  13. print p