Home
last modified time | relevance | path

Searched refs:can_win (Results 1 – 7 of 7) sorted by relevance

/dports/games/freedoko/FreeDoko_0.7.19/src/player/ai.dummy/
H A Dai.cpp207 bool can_win = false; in card_get() local
219 can_win |= is_winnercard; in card_get()
229 if (can_win in card_get()
233 if (!can_win in card_get()
241 if (can_win in card_get()
245 if (!can_win in card_get()
/dports/games/crafty/crafty-25.2_1/
H A Devaluate.c22 int score, side, can_win = 3, phase, lscore, cutoff; in Evaluate() local
93 can_win ^= (1 << side); in Evaluate()
119 if (tree->score_eg > DrawScore(1) && !(can_win & 2)) in Evaluate()
121 if (tree->score_eg < DrawScore(1) && !(can_win & 1)) in Evaluate()
305 score = EvaluateDraws(tree, ply, can_win, score); in Evaluate()
493 int EvaluateDraws(TREE * RESTRICT tree, int ply, int can_win, int score) { in EvaluateDraws() argument
550 if (can_win != 3) { in EvaluateDraws()
551 if (can_win & 1) { in EvaluateDraws()
554 } else if (can_win & 2) { in EvaluateDraws()
/dports/net/pacemaker2/pacemaker-Pacemaker-2.1.1/include/crm/cluster/
H A Delection_internal.h78 enum election_result election_count_vote(election_t *e, xmlNode *vote, bool can_win);
/dports/net/pacemaker1/pacemaker-Pacemaker-1.1.24/include/crm/cluster/
H A Delection.h74 enum election_result election_count_vote(election_t *e, xmlNode *vote, bool can_win);
/dports/net/pacemaker2/pacemaker-Pacemaker-2.1.1/lib/cluster/
H A Delection.c532 election_count_vote(election_t *e, xmlNode *message, bool can_win) in election_count_vote() argument
554 if (!can_win) { in election_count_vote()
/dports/net/pacemaker1/pacemaker-Pacemaker-1.1.24/lib/cluster/
H A Delection.c527 election_count_vote(election_t *e, xmlNode *message, bool can_win) in election_count_vote() argument
555 if(can_win == FALSE) { in election_count_vote()
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/widgets/
H A Dgamewidget.py206 def can_win(color): function
214 (can_win(self.gamemodel.players[0].color) or
215 can_win(self.gamemodel.players[1].color)):