mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Missing closing parenthesis
This commit is contained in:
parent
8b834d9fe4
commit
a7c7c9b91c
1 changed files with 2 additions and 2 deletions
|
|
@ -223,8 +223,8 @@ def test_normal_dist():
|
|||
# sample some numbers
|
||||
for i in range(num_samples):
|
||||
# sample the normal distribution from openmc
|
||||
samples.append(openmc.lib.math.normal_variate(a, b, prn_seed)
|
||||
prn_seed = prn_seed + 1
|
||||
samples.append(openmc.lib.math.normal_variate(a, b, prn_seed))
|
||||
prn_seed += 1
|
||||
|
||||
stat,p = shaprio(samples)
|
||||
assert stat > 0.97
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue