Skip to content

Commit

Permalink
Change seed_time prior to make it country-specific
Browse files Browse the repository at this point in the history
  • Loading branch information
romain-ragonnet committed Jul 19, 2023
1 parent af009b6 commit 6c5dfdc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions autumn/projects/sm_covid2/common_school/project_maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,8 @@ def get_school_project_priors(first_date_with_death):
"""

# Work out max infectious seeding time so transmission starts before first observed deaths
min_seed_time = 0.0
min_seed_time = first_date_with_death - 100
max_seed_time = first_date_with_death - 1
assert max_seed_time > min_seed_time, "Max seed time is lower than min seed time."

priors = [
UniformPrior("contact_rate", [0.01, 0.1]),
Expand Down

0 comments on commit 6c5dfdc

Please sign in to comment.