X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fpawns.cpp;h=2906b0453b3c8508ddeb3ce129a00152d9a5b1cd;hp=3aede5adfa7f111b42ddef9332e9182a5dfba8f5;hb=c2d42ea8339b49e52a116e488214a14fda09d413;hpb=b5f6c2241b3ad688fb85ea8203a9254aff842f07 diff --git a/src/pawns.cpp b/src/pawns.cpp index 3aede5ad..2906b045 100644 --- a/src/pawns.cpp +++ b/src/pawns.cpp @@ -72,14 +72,14 @@ namespace { } -/// PawnInfoTable::get_pawn_info() takes a position object as input, computes +/// PawnInfoTable::pawn_info() takes a position object as input, computes /// a PawnInfo object, and returns a pointer to it. The result is also stored /// in an hash table, so we don't have to recompute everything when the same /// pawn structure occurs again. -PawnInfo* PawnInfoTable::get_pawn_info(const Position& pos) const { +PawnInfo* PawnInfoTable::pawn_info(const Position& pos) const { - Key key = pos.get_pawn_key(); + Key key = pos.pawn_key(); PawnInfo* pi = probe(key); // If pi->key matches the position's pawn hash key, it means that we