@@ -64,7 +64,7 @@ const auto age_group_80_plus = mio::AgeGroup(5);
6464// - Is active for the full 30-day simulation window.
6565// - Uses a PCR test (sensitivity/specificity come from TestData defaults).
6666// - Tests are valid for `validity_days`; a negative result exempts retesting for validity_days days (Default: 3).
67- // - Targets persons in any infected state (Exposed through Critical).
67+ // - Targets persons in any infected state (Exposed to Critical).
6868// - Applies to all age groups except school children (5-14).
6969// - Tests with `testing_probability` probability upon entry (Default: 100%).
7070// - Applies to all public locations (SocialEvent, School, Work, BasicsShop)
@@ -90,7 +90,7 @@ void add_npi_testing_strategies_to_world(mio::abm::Model& model, double testing_
9090
9191 auto testing_criteria = mio::abm::TestingCriteria (ages_to_test, states_to_test);
9292 auto testing_scheme = mio::abm::TestingScheme (testing_criteria, validity, start_date_test, end_date_test,
93- pcr_test_parameters, testing_probability);
93+ pcr_test_parameters, testing_probability);
9494
9595 // Attach the scheme to all public location types.
9696 model.get_testing_strategy ().add_scheme (mio::abm::LocationType::SocialEvent, testing_scheme);
@@ -291,4 +291,4 @@ int main(int argc, char* argv[])
291291 std::cout << " Results written to abm_tests.txt\n " ;
292292
293293 return 0 ;
294- }
294+ }
0 commit comments