From 751123822392a0faf5eccde720d53c4af2eaa09b Mon Sep 17 00:00:00 2001 From: mgymrek Date: Fri, 17 Jun 2016 11:05:33 -0400 Subject: [PATCH] small const can be 0 --- src/Genotyper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Genotyper.cpp b/src/Genotyper.cpp index 43d2ff3..3cca271 100644 --- a/src/Genotyper.cpp +++ b/src/Genotyper.cpp @@ -41,7 +41,7 @@ along with lobSTR. If not, see . using namespace std; -const float SMALL_CONST = 1e-10; +const float SMALL_CONST = 0; Genotyper::Genotyper(NoiseModel* _noise_model, const vector& _haploid_chroms,