/= 100.0
This commit is contained in:
parent
1563bd5a78
commit
3cbffb645c
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ void r3_tree_feedback(node *tree, node *end) {
|
||||||
if (e->score > 100) {
|
if (e->score > 100) {
|
||||||
for (int i = 0 ; i < p->edge_len ; i++ ) {
|
for (int i = 0 ; i < p->edge_len ; i++ ) {
|
||||||
if ( p->edges[i]->score > 0 ) {
|
if ( p->edges[i]->score > 0 ) {
|
||||||
p->edges[i]->score /= 100;
|
p->edges[i]->score /= 100.0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue