mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 16:46:30 +08:00
Joona tweaks of Weights and limits
Verification test give unusless result After 999 games at 1+0 Mod vs Orig +250 =503 -246 50.20% +1 ELO So we are well below our radar level. Neverthless there are 100.000 games on Joona QUAD that we could take in account and that shows that this tweak perhaps has something good in it, altough very little. Verification tests shows should not be a regression, at least not a big one even in the worst case, so apply the change anyway and keep the finger crossed ;-) Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -655,8 +655,8 @@ inline Value Position::non_pawn_material(Color c) const {
|
||||
inline Phase Position::game_phase() const {
|
||||
|
||||
// Values modified by Joona Kiiski
|
||||
static const Value MidgameLimit = Value(15713);
|
||||
static const Value EndgameLimit = Value(4428);
|
||||
static const Value MidgameLimit = Value(15581);
|
||||
static const Value EndgameLimit = Value(3998);
|
||||
|
||||
Value npm = non_pawn_material(WHITE) + non_pawn_material(BLACK);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user