fixed normal variate unit test

This commit is contained in:
John Tramm 2019-11-22 19:47:19 +00:00
parent 7d3dcfedc0
commit d3e2d36fc8

View file

@ -295,7 +295,7 @@ def normal_variate(mean_value, std_dev, prn_seeds, stream):
prn_seeds_arr = np.array(prn_seeds, dtype=np.uint64)
return _dll.normal_variate(mean_value, std_dev, prn_seeds, stream)
return _dll.normal_variate(mean_value, std_dev, prn_seeds_arr, stream)
def broaden_wmp_polynomials(E, dopp, n):