If it is expected I think it is possible to use it.zamar wrote:I think that what you are observing is just expected behaviour!
As the depth grows, negamax prunings kick in more and more (compared to minimax) and values of all moves get closer to alpha.
All moves are going to alpha, thus I changed root_search (SF 1.8).
Code: Select all
// Step extra. pv search
// We do pv search for first moves (i < MultiPV)
// and for fail high research (value > alpha)
if (i < MultiPV || value > alpha || rml.get_move_score(i) >= rml.get_move_score(0))
Code: Select all
cutechess-cli -fcp name=sfx cmd=sfx.exe -scp name=sf cmd=sf.exe -both proto=uci option.Ponder=false tc=/0:50+0.2
-pgnin gaviota-starters.pgn -resign 3 700 -games 300 -repeat -recover -concurrency 1 -pgnout games.pgn min
And I received the (expected


sfx - sf: +40 -22 =68
It is a huge (stable

