OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:costsofar
(Results
1 - 3
of
3
) sorted by null
/external/srec/srec/crec/
astar.c
326
if (netcost + parp->
costsofar
> max_cost)
329
printf("netcost %d (%d+%d) + parp->
costsofar
> max_cost %d\n",
330
netcost, wtoken->cost, best_cost_for_node, parp->
costsofar
, max_cost);
391
extended_parp->
costsofar
= parp->
costsofar
+ netcost;
504
parp->
costsofar
= rec->accumulated_cost_offset[ wtoken->end_time];
505
parp->
costsofar
+= wtoken->cost;
769
max_cost = stack->complete_paths[0]->
costsofar
+ stack->prune_delta;
773
max_cost = stack->active_paths[ stack->num_active_paths-1]->
costsofar
;
777
max_cost = stack->active_paths[0]->
costsofar
+ stack->prune_delta
[
all
...]
srec_results.c
131
*bestcost = stack->complete_paths[0]->
costsofar
;
248
*cost = stack->complete_paths[index]->
costsofar
;
300
*cost = stack->complete_paths[n]->
costsofar
;
473
if (stack->complete_paths[j]->
costsofar
< stack->complete_paths[i]->
costsofar
)
475
/* PLogMessage(" %d %d", stack->complete_paths[j]->
costsofar
, stack->complete_paths[j]->
costsofar
); */
/external/srec/srec/include/
astar.h
76
bigcostdata
costsofar
; /* quick access to total score, frwd+bkwd */
member in struct:partial_path_t
Completed in 373 milliseconds