tonyo / pyope

Implementation of Boldyreva's symmetric order-preserving encryption in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

numpy hypergeometric function freezes with certain arguments

tonyo opened this issue · comments

This works fine:

import numpy.random as numpy_random
numpy_random.hypergeometric(32767, 2147450880, 1073741824)

But this doesn't:

import numpy.random as numpy_random
numpy_random.hypergeometric(262, 16776954, 8388608)

Commit 536be28 removes the 'numpy' dependency.