mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 08:13:08 +00:00
Retire update_pv() and sp_update_pv()
Expand inline instead. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
adb43cc0cc
commit
62c68c2d21
3 changed files with 12 additions and 34 deletions
|
@ -296,8 +296,6 @@ namespace {
|
|||
template <NodeType PvNode>
|
||||
Depth extension(const Position& pos, Move m, bool captureOrPromotion, bool moveIsCheck, bool singleEvasion, bool mateThreat, bool* dangerous);
|
||||
|
||||
void update_pv(SearchStack* ss);
|
||||
void sp_update_pv(SearchStack* pss, SearchStack* ss);
|
||||
bool connected_moves(const Position& pos, Move m1, Move m2);
|
||||
bool value_is_mate(Value value);
|
||||
bool move_is_killer(Move m, SearchStack* ss);
|
||||
|
@ -937,9 +935,8 @@ namespace {
|
|||
// We are failing high and going to do a research. It's important to update
|
||||
// the score before research in case we run out of time while researching.
|
||||
rml.set_move_score(i, value);
|
||||
update_pv(ss);
|
||||
pv[0] = ss->bestMove;
|
||||
TT.extract_pv(pos, pv, PLY_MAX);
|
||||
ss->bestMove = move;
|
||||
TT.extract_pv(pos, move, pv, PLY_MAX);
|
||||
rml.set_move_pv(i, pv);
|
||||
|
||||
// Print information to the standard output
|
||||
|
@ -978,9 +975,8 @@ namespace {
|
|||
|
||||
// Update PV
|
||||
rml.set_move_score(i, value);
|
||||
update_pv(ss);
|
||||
pv[0] = ss->bestMove;
|
||||
TT.extract_pv(pos, pv, PLY_MAX);
|
||||
ss->bestMove = move;
|
||||
TT.extract_pv(pos, move, pv, PLY_MAX);
|
||||
rml.set_move_pv(i, pv);
|
||||
|
||||
if (MultiPV == 1)
|
||||
|
@ -1414,10 +1410,10 @@ namespace {
|
|||
if (PvNode && value < beta) // This guarantees that always: alpha < beta
|
||||
alpha = value;
|
||||
|
||||
update_pv(ss);
|
||||
|
||||
if (value == value_mate_in(ply + 1))
|
||||
ss->mateKiller = move;
|
||||
|
||||
ss->bestMove = move;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1617,7 +1613,7 @@ namespace {
|
|||
if (value > alpha)
|
||||
{
|
||||
alpha = value;
|
||||
update_pv(ss);
|
||||
ss->bestMove = move;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1798,7 +1794,7 @@ namespace {
|
|||
if (PvNode && value < sp->beta) // This guarantees that always: sp->alpha < sp->beta
|
||||
sp->alpha = value;
|
||||
|
||||
sp_update_pv(sp->parentSstack, ss);
|
||||
sp->parentSstack->bestMove = ss->bestMove = move;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1810,25 +1806,6 @@ namespace {
|
|||
lock_release(&(sp->lock));
|
||||
}
|
||||
|
||||
// update_pv() is called whenever a search returns a value > alpha.
|
||||
// It updates the PV in the SearchStack object corresponding to the
|
||||
// current node.
|
||||
|
||||
void update_pv(SearchStack* ss) {
|
||||
|
||||
ss->bestMove = ss->currentMove;
|
||||
}
|
||||
|
||||
|
||||
// sp_update_pv() is a variant of update_pv for use at split points. The
|
||||
// difference between the two functions is that sp_update_pv also updates
|
||||
// the PV at the parent node.
|
||||
|
||||
void sp_update_pv(SearchStack* pss, SearchStack* ss) {
|
||||
|
||||
pss->bestMove = ss->bestMove = ss->currentMove;
|
||||
}
|
||||
|
||||
|
||||
// connected_moves() tests whether two moves are 'connected' in the sense
|
||||
// that the first move somehow made the second move possible (for instance
|
||||
|
|
|
@ -185,15 +185,16 @@ void TranspositionTable::insert_pv(const Position& pos, Move pv[]) {
|
|||
/// will often get single-move PVs when the search stops while failing high,
|
||||
/// and a single-move PV means that we don't have a ponder move.
|
||||
|
||||
void TranspositionTable::extract_pv(const Position& pos, Move pv[], const int PLY_MAX) {
|
||||
void TranspositionTable::extract_pv(const Position& pos, Move bestMove, Move pv[], const int PLY_MAX) {
|
||||
|
||||
const TTEntry* tte;
|
||||
StateInfo st;
|
||||
Position p(pos, pos.thread());
|
||||
int ply = 0;
|
||||
|
||||
assert(pv[0] != MOVE_NONE);
|
||||
assert(bestMove != MOVE_NONE);
|
||||
|
||||
pv[ply] = bestMove;
|
||||
p.do_move(pv[ply++], st);
|
||||
|
||||
// Try to add moves from TT while possible
|
||||
|
|
2
src/tt.h
2
src/tt.h
|
@ -110,7 +110,7 @@ public:
|
|||
TTEntry* retrieve(const Key posKey) const;
|
||||
void new_search();
|
||||
void insert_pv(const Position& pos, Move pv[]);
|
||||
void extract_pv(const Position& pos, Move pv[], const int PLY_MAX);
|
||||
void extract_pv(const Position& pos, Move bestMove, Move pv[], const int PLY_MAX);
|
||||
int full() const;
|
||||
TTEntry* first_entry(const Key posKey) const;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue