Oops - comment out the printouts

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1500 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2009-09-02 01:45:56 +00:00
parent 91ccb0f8c5
commit 24d809133d
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ public abstract class RatioFilter implements VariantExclusionCriterion {
boolean exclude = ! passesThreshold(r);
sumExclude += p * (exclude ? 1.0 : 0.0);
System.out.printf("integral: k=%d, n=%d, r=%f, p=%f, sumP = %f, exclude=%b | sum=%f, percentExcluded=%f%n",
counts.first, n, r, p, sumP, exclude, sumExclude, sumExclude / sumP);
//System.out.printf("integral: k=%d, n=%d, r=%f, p=%f, sumP = %f, exclude=%b | sum=%f, percentExcluded=%f%n",
// counts.first, n, r, p, sumP, exclude, sumExclude, sumExclude / sumP);
}
double percentExcluded = sumExclude / sumP;