(self, num_perm)
| 106 | raise ValueError("Numbers of hash values and permutations mismatch") |
| 107 | |
| 108 | def _init_hashvalues(self, num_perm): |
| 109 | return np.ones(num_perm, dtype=np.uint64)*_max_hash |
| 110 | |
| 111 | def _init_permutations(self, num_perm): |
| 112 | # Create parameters for a random bijective permutation function |