Searched defs:max_cost (Results 1 - 2 of 2) sorted by relevance

/external/opencv/cv/src/
H A Dcvemd.cpp111 float weight, max_cost; member in struct:CvEMDState
268 eps = CV_EMD_EPS * state.max_cost;
346 float max_cost = 0; local
535 if( max_cost < val )
536 max_cost = val;
547 state->max_cost = max_cost;
917 float eps = CV_EMD_EPS * state->max_cost;
/external/srec/srec/crec/
H A Dastar.c293 bigcostdata max_cost,
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);
662 bigcostdata max_cost = 0; local
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;
781 max_cost = MAXbcostdata;
784 extended_parp = extend_path(stack, parp, btoken_index, arc_for_token_index, max_cost, re
289 extend_path(AstarStack* stack, partial_path* parp, wtokenID extend_token_index, arc_token* arc_for_extend_token_index, bigcostdata max_cost, word_token* word_token_array, int* pwhether_complete) argument
[all...]

Completed in 243 milliseconds