Displaying 1 result from an estimated 1 matches for "running_score".
2007 Jul 30
0
Ferret crashing ruby while highlighting
...pt->end
field is -1. I think the reason is because in this code from search.c:
for (e_start = e_end = 0; e_start < mv->size; e_start++) {
const int start_offset = matches[e_start].start_offset;
if (e_start > e_end) {
running_score = 0.0;
e_end = e_start;
}
while (e_end < mv->size && (matches[e_end].end_offset
<= start_offset +
excerpt_len)) {
running_score += matches[e_end].score;...