Permalink
Browse files

Changes int to long long

  • Loading branch information...
1 parent 0b464e6 commit 61e5529dd082b74f57e54592cf107ee90d2cebb2 @mothur-westcott mothur-westcott committed Dec 9, 2016
Showing with 1 addition and 1 deletion.
  1. +1 −1 source/opticluster.cpp
View
@@ -118,7 +118,7 @@ bool OptiCluster::update(double& listMetric) {
long long tn, tp, fp, fn;
double bestMetric = -1;
- int bestBin, bestTp, bestTn, bestFn, bestFp;
+ long long bestBin, bestTp, bestTn, bestFn, bestFp;
tn = trueNegatives; tp = truePositives; fp = falsePositives; fn = falseNegatives;
//this calculation is used to save time in the move and adjust function.

0 comments on commit 61e5529

Please sign in to comment.