covid-sim
Sweep.h
1 #ifndef COVIDSIM_SWEEP_H_INCLUDED_
2 #define COVIDSIM_SWEEP_H_INCLUDED_
3 
4 void TravelReturnSweep(double);
5 void TravelDepartSweep(double);
6 void InfectSweep(double, int); //added int as argument to InfectSweep to record run number: ggilani - 15/10/14
7 void IncubRecoverySweep(double, int); //added int as argument to record run number: ggilani - 15/10/14
8 int TreatSweep(double);
9 //void HospitalSweep(double); //added hospital sweep function: ggilani - 10/11/14
10 void DigitalContactTracingSweep(double); // added function to update contact tracing number
11 
12 #endif // COVIDSIM_SWEEP_H_INCLUDED_