Skip to content

Commit

Permalink
Try remove score limitation
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Nov 23, 2023
1 parent fc9149d commit d47f2e6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Lynx/Search/NegaMax.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@ private int NegaMax(int depth, int ply, int alpha, int beta, bool parentWasNullM
if (!pvNode
&& !isInCheck
&& depth <= Configuration.EngineSettings.LMP_MaxDepth
&& scores[moveIndex] < EvaluationConstants.PromotionMoveScoreValue // Quiet moves
&& moveIndex >= Configuration.EngineSettings.LMP_BaseMovesToTry + (Configuration.EngineSettings.LMP_MovesDepthMultiplier * depth)) // Based on formula suggested by Antares
{
// After making a move
Expand Down

0 comments on commit d47f2e6

Please sign in to comment.