Skip to content
Snippets Groups Projects

Fixed an error where PQ_overtreat_9m was incorrectly categorized (true positives…

Merged Thomas OBADIA requested to merge fix-pq-overtreat-9m into master
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
+ 3
3
@@ -2932,7 +2932,7 @@ void intervention_dist(double t, params* theta, population* POP, intervention* I
@@ -2932,7 +2932,7 @@ void intervention_dist(double t, params* theta, population* POP, intervention* I
POP->people[n].PQ_overtreat = 1;
POP->people[n].PQ_overtreat = 1;
}
}
if( (PQ_treat == 1) && (POP->people[n].T_last_BS < 270.0) )
if( (PQ_treat == 1) && (POP->people[n].T_last_BS > 270.0) )
{
{
POP->people[n].PQ_overtreat_9m = 1;
POP->people[n].PQ_overtreat_9m = 1;
}
}
@@ -3118,7 +3118,7 @@ void intervention_dist(double t, params* theta, population* POP, intervention* I
@@ -3118,7 +3118,7 @@ void intervention_dist(double t, params* theta, population* POP, intervention* I
POP->people[n].PQ_overtreat = 1;
POP->people[n].PQ_overtreat = 1;
}
}
if ((PQ_treat == 1) && (POP->people[n].T_last_BS < 270.0))
if ((PQ_treat == 1) && (POP->people[n].T_last_BS > 270.0))
{
{
POP->people[n].PQ_overtreat_9m = 1;
POP->people[n].PQ_overtreat_9m = 1;
}
}
@@ -3291,7 +3291,7 @@ void intervention_dist(double t, params* theta, population* POP, intervention* I
@@ -3291,7 +3291,7 @@ void intervention_dist(double t, params* theta, population* POP, intervention* I
POP->people[n].PQ_overtreat = 1;
POP->people[n].PQ_overtreat = 1;
}
}
if ((PQ_treat == 1) && (POP->people[n].T_last_BS < 270.0))
if ((PQ_treat == 1) && (POP->people[n].T_last_BS > 270.0))
{
{
POP->people[n].PQ_overtreat_9m = 1;
POP->people[n].PQ_overtreat_9m = 1;
}
}
Loading