Skip to content

Commit

Permalink
Remove some debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
benfulton committed Oct 30, 2017
1 parent 6dffc93 commit 1f4cf52
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cafe/viterbi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ void viterbi_sum_probabilities(viterbi_parameters *viterbi, pCafeTree pcafe, pCa
else if (square_matrix_get(child[k]->birthdeath_matrix, pcnode->familysize, m) < p)
{
viterbi->viterbiPvalues[key] += square_matrix_get(child[k]->birthdeath_matrix, pcnode->familysize, m);
std::cout << "Node " << key.first << " pulling from " << child[k]->super.super.id << " at ";
std::cout << pcnode->familysize << ", " << m << " value " << square_matrix_get(child[k]->birthdeath_matrix, pcnode->familysize, m) << std::endl;
}
}
}
Expand Down

0 comments on commit 1f4cf52

Please sign in to comment.