Skip to content

Commit

Permalink
remove TREAT reports from deploy and report nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
acavelan committed Jul 18, 2024
1 parent 9ceae2a commit 09966ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model/Clinical/CMDecisionTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class CMDTReport : public CMDecisionTree {
for( const size_t outId : outIds ){
mon::reportEventMHI_CMDT( mon::MCD_CMDT_REPORT, hostData.human, 1, outId);
}
return CMDTOut(true);
return CMDTOut(false);
}
private:
vector<int> outIds;
Expand Down Expand Up @@ -530,7 +530,7 @@ class CMDTDeploy : public CMDecisionTree, interventions::HumanIntervention {
//NOTE: it's not intuitively obvious what value should be returned here
// in the case of intervention deployment. This at least means that
// repeat seekers get second-line treatment.
return CMDTOut(true);
return CMDTOut(false);
}
};

Expand Down

0 comments on commit 09966ba

Please sign in to comment.