Home
last modified time | relevance | path

Searched refs:complete_paths (Results 1 – 3 of 3) sorted by relevance

/external/srec/srec/crec/
Dsrec_results.c131 *bestcost = stack->complete_paths[0]->costsofar; in srec_nbest_prepare_list()
185 partial_path* parp = stack->complete_paths[i]; in srec_nbest_fix_homonym_confidence_values()
217 free_partial_path(stack, stack->complete_paths[n]); in srec_nbest_remove_result()
222 stack->complete_paths[i-1] = stack->complete_paths[i]; in srec_nbest_remove_result()
223 stack->complete_paths[i-1] = 0; /* empty the last one */ in srec_nbest_remove_result()
247 parp = stack->complete_paths[index]; in srec_nbest_get_resultWordIDs()
248 *cost = stack->complete_paths[index]->costsofar; in srec_nbest_get_resultWordIDs()
299 parp = stack->complete_paths[n]; in srec_nbest_get_result()
300 *cost = stack->complete_paths[n]->costsofar; in srec_nbest_get_result()
365 partial_path* parp = stack->complete_paths[ibest]; in srec_nbest_get_choice_info()
[all …]
Dastar.c530 …stack->complete_paths = (partial_path**)CALLOC_CLR(stack->max_complete_paths, sizeof(partial_path*… in astar_stack_make()
558 FREE(stack->complete_paths); in astar_stack_destroy()
609 stack->complete_paths[ stack->num_complete_paths++] = parp; in astar_stack_prepare()
634 free_partial_path(stack, stack->complete_paths[i]); in astar_stack_clear()
702 print_partial_paths(stack->complete_paths, stack->num_complete_paths, in astar_stack_do_backwards_search()
769 max_cost = stack->complete_paths[0]->costsofar + stack->prune_delta; in astar_stack_do_backwards_search()
803 stack->complete_paths[ stack->num_complete_paths++] = extended_parp; in astar_stack_do_backwards_search()
869 sort_partial_paths(stack->complete_paths, stack->num_complete_paths); in astar_stack_do_backwards_search()
874 print_partial_paths(stack->complete_paths, stack->num_complete_paths, in astar_stack_do_backwards_search()
1251 print_partial_paths(stack->complete_paths, stack->num_complete_paths, in astar_stack_flag_word_tokens_used()
[all …]
/external/srec/srec/include/
Dastar.h101 partial_path** complete_paths; member