-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Addition of immunization history class #210
base: main
Are you sure you want to change the base?
Conversation
…f object in person constructor.
@@ -386,65 +420,15 @@ def get_student_pop_size(self): | |||
""" | |||
return self.nStudents | |||
|
|||
def add_visitors(self, day): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, this still seems to have the problem of accidentally reverting changes made in #201. To clean up the commit history and properly fix this, you'll likely need to revert most of the merge commits made (from a quick glance, perhaps go back to commit d149712), test the code to make sure it runs (you may want to implement the changes from 894165a before the next step), make one single merge commit to bring everything up to date with the main branch (there will be merge conflicts, but Noah and I can help with that), and then finally fix any remaining problems from the automated tests.
This is a continuation of PR #193 from the previous repository. This pull request intends to incorporate time-dependent vaccine efficacy to the simulation by adding a new class that keeps track of vaccine-related information.