Skip to content

Commit 76adc09

Browse files
authored
Change default value of MaxRiskOfInfectionFromSymptomatic (#1474)
Default value of `MaxRiskOfInfectionFromSymptomatic` was changed to 1
1 parent 79088be commit 76adc09

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cpp/models/ode_secir/parameters.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ struct MaxRiskOfInfectionFromSymptomatic {
245245
using Type = CustomIndexArray<UncertainValue<FP>, AgeGroup>;
246246
static Type get_default(AgeGroup size)
247247
{
248-
return Type(size, 0.);
248+
return Type(size, 1.);
249249
}
250250
static std::string name()
251251
{

cpp/models/ode_secirts/parameters.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ struct MaxRiskOfInfectionFromSymptomatic {
429429
using Type = CustomIndexArray<UncertainValue<FP>, AgeGroup>;
430430
static Type get_default(AgeGroup size)
431431
{
432-
return Type(size, 0.);
432+
return Type(size, 1.);
433433
}
434434
static std::string name()
435435
{

cpp/models/ode_secirvvs/parameters.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ struct MaxRiskOfInfectionFromSymptomatic {
357357
using Type = CustomIndexArray<UncertainValue<FP>, AgeGroup>;
358358
static Type get_default(AgeGroup size)
359359
{
360-
return Type(size, 0.);
360+
return Type(size, 1.);
361361
}
362362
static std::string name()
363363
{

0 commit comments

Comments
 (0)