mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 13:15:39 -04:00
fixed normal variate unit test
This commit is contained in:
parent
7d3dcfedc0
commit
d3e2d36fc8
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue