-
Hi, I need Piece-Square Tables of Stockfish for middle game For example, knight Psqt like this :
Please send all pieces (pawn , knight ,bishop ,queen ,king) Psqt for stockfish |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
they can be found here Line 36 in d8f3209 the entires are made up of MG, EG pairs, values will probably be rather for other engines since there are a lot of other evaluations that fill the holes in the psqt table, like explict passed pawn evaluation.You have to convert the values yourself |
Beta Was this translation helpful? Give feedback.
-
and probably better off to just take them all from here https://www.chessprogramming.org/Simplified_Evaluation_Function |
Beta Was this translation helpful? Give feedback.
-
or just copy this entire function https://www.chessprogramming.org/PeSTO%27s_Evaluation_Function :p |
Beta Was this translation helpful? Give feedback.
they can be found here
Stockfish/src/psqt.cpp
Line 36 in d8f3209
the entires are made up of
MG, EG
pairs, values will probably be rather for other engines since there are a lot of other evaluations that fill the holes in the psqt table, like explict passed pawn evaluation.You have to convert the values yourself