Skip to content

Commit eff2c02

Browse files
committed
Reduce upper bound for paths in Q16
1 parent ca2ba63 commit eff2c02

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

paramgenerator/generateparamsbi.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,8 @@ def main(argv=None):
397397
post_upper_threshold = (total_posts/(non_empty_weeks/4))*1.2
398398
post_months = post_month_params(week_posts, post_lower_threshold, post_upper_threshold)
399399

400-
path_bounds = enumerate_path_bounds(3, 9, 2)
400+
# the lower bound is inclusive and the upper bound is exclusive
401+
path_bounds = enumerate_path_bounds(3, 7, 2)
401402
language_codes = prob_language_codes()
402403
post_lengths = prob_post_lengths()
403404

0 commit comments

Comments
 (0)