Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
minor fix
  • Loading branch information
kbudhath committed Feb 14, 2017
1 parent ee3f344 commit c28dfeb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test_synthetic.py
Expand Up @@ -86,17 +86,18 @@ def generate_additive_N(size):
def test_decision_rate():
srcsX = ["uniform", "binomial", "negativeBinomial",
"geometric", "hypergeometric", "poisson", "multinomial"]
total = len(srcs) * len(srcs)
total = len(srcsX)
count = 0
progress(count, total)
for srcX in srcsX:
count += 1
_decision_rate(srcX)
progress(count, total)


def _decision_rate(srcX):
nsample = 1000
size = 1000
nsample = 100
size = 100
level = 0.05
suppfX = range(-7, 8)

Expand Down

0 comments on commit c28dfeb

Please sign in to comment.