Skip to content

Commit

Permalink
/= 100.0
Browse files Browse the repository at this point in the history
  • Loading branch information
c9s committed May 22, 2014
1 parent 1563bd5 commit 3cbffb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void r3_tree_feedback(node *tree, node *end) {
if (e->score > 100) {
for (int i = 0 ; i < p->edge_len ; i++ ) {
if ( p->edges[i]->score > 0 ) {
p->edges[i]->score /= 100;
p->edges[i]->score /= 100.0;
}
}
}
Expand Down

0 comments on commit 3cbffb6

Please sign in to comment.