Searched refs:best_eval (Results 1 – 9 of 9) sorted by relevance
/dports/games/xbubble/xbubble-0.5.8/src/ |
H A D | opponent.c | 417 int best_eval = 0; in eval_tree() local 455 if ( best_eval < eval ) { in eval_tree() 456 best_eval = eval; in eval_tree() 461 return best_eval; in eval_tree() 553 best_eval += leaf_best_eval[i]; in eval_tree() 554 best_eval = best_eval/NB_COLORS; in eval_tree() 557 fprintf( stderr, "[%04d]", best_eval ); in eval_tree() 558 return best_eval; in eval_tree() 562 int find_best_angle( Opponent op , int *best_eval ) { in find_best_angle() argument 581 *best_eval = eval_tree( op, 0 ); in find_best_angle() [all …]
|
H A D | opponent.h | 18 int find_best_angle( Opponent op, int *best_eval );
|
H A D | game.c | 721 int best_eval; in computer_think() local 728 best_angle = find_best_angle( game->opponent[n], &best_eval ); in computer_think() 733 game->board_best_eval[n] = best_eval; in computer_think()
|
/dports/games/crafty/crafty-25.2_1/ |
H A D | learn.c | 194 int best_eval = -999999, best_eval_p = 0; in LearnValue() local 235 if (book_learn_eval[i] > best_eval) { in LearnValue() 236 best_eval = book_learn_eval[i]; in LearnValue() 280 if (best_eval == best_after_worst_eval) { in LearnValue() 281 learn_value = best_eval; in LearnValue()
|
/dports/graphics/chafa/chafa-1.8.0/chafa/ |
H A D | chafa-canvas.c | 332 SymbolEval best_eval; in pick_symbol_and_colors_slow() local 338 best_eval.error = SYMBOL_ERROR_MAX; in pick_symbol_and_colors_slow() 353 *color_pair_out = best_eval.colors; in pick_symbol_and_colors_slow() 356 *error_out = best_eval.error; in pick_symbol_and_colors_slow() 368 SymbolEval2 best_eval; in pick_symbol_and_colors_wide_slow() local 374 best_eval.error [0] = best_eval.error [1] = SYMBOL_ERROR_MAX; in pick_symbol_and_colors_wide_slow() 392 *color_pair_out = best_eval.colors; in pick_symbol_and_colors_wide_slow() 411 SymbolEval best_eval; in pick_symbol_and_colors_fast() local 461 *error_out = best_eval.error; in pick_symbol_and_colors_fast() 477 SymbolEval2 best_eval; in pick_symbol_and_colors_wide_fast() local [all …]
|
/dports/net/openmpi3/openmpi-3.1.6/ompi/mca/topo/treematch/treematch/ |
H A D | tm_solution.c | 419 double max,sum,best_eval,eval; in map_MPIPP() local 435 best_eval = DBL_MAX; in map_MPIPP() 483 if(eval < best_eval){ in map_MPIPP() 484 best_eval = eval; in map_MPIPP()
|
/dports/net/openmpi/openmpi-4.1.1/ompi/mca/topo/treematch/treematch/ |
H A D | tm_solution.c | 419 double max,sum,best_eval,eval; in map_MPIPP() local 435 best_eval = DBL_MAX; in map_MPIPP() 483 if(eval < best_eval){ in map_MPIPP() 484 best_eval = eval; in map_MPIPP()
|
/dports/math/eprover/eprover-E-2.0/HEURISTICS/ |
H A D | che_to_autoselect.c | 772 double best_eval, tmp_eval; in OrderFindOptimal() local 786 best_eval = eval_fun(best_ocb, state, parms); in OrderFindOptimal() 792 if(tmp_eval < best_eval) in OrderFindOptimal() 796 best_eval = tmp_eval; in OrderFindOptimal()
|
/dports/math/py-or-tools/or-tools-9.2/ortools/constraint_solver/ |
H A D | search.cc | 1046 int64_t best_eval = std::numeric_limits<int64_t>::max(); in Choose() local 1051 if (eval < best_eval) { in Choose() 1052 best_eval = eval; in Choose()
|