Did people try replacing LMR by pruning

Discussion of chess software programming and technical issues.

Moderator: Ras

Michael Sherwin
Posts: 3196
Joined: Fri May 26, 2006 3:00 am
Location: WY, USA
Full name: Michael Sherwin

Re: Did people try replacing LMR by pruning

Post by Michael Sherwin »

metax wrote:Stockfish 1.6:

Code: Select all

// Move count based pruning
          if (   moveCount >= FutilityMoveCountMargin
              && ok_to_prune(pos, move, ss[ply].threatMove)
              && bestValue > value_mated_in(PLY_MAX))
              continue;
I am glad to see that the idea survives! :D
If you are on a sidewalk and the covid goes beep beep
Just step aside or you might have a bit of heat
Covid covid runs through the town all day
Can the people ever change their ways
Sherwin the covid's after you
Sherwin if it catches you you're through
jdart
Posts: 4406
Joined: Fri Mar 10, 2006 5:23 am
Location: http://www.arasanchess.org

Re: Did people try replacing LMR by pruning

Post by jdart »

Toga used this general idea also - that was the first place I remember seeing it. But I have not found it useful, myself.

--Jon
Michael Sherwin
Posts: 3196
Joined: Fri May 26, 2006 3:00 am
Location: WY, USA
Full name: Michael Sherwin

Re: Did people try replacing LMR by pruning

Post by Michael Sherwin »

jdart wrote:Toga used this general idea also - that was the first place I remember seeing it. But I have not found it useful, myself.

--Jon
I believe that my testing of it and posting about it precedes its use in Toga!
If you are on a sidewalk and the covid goes beep beep
Just step aside or you might have a bit of heat
Covid covid runs through the town all day
Can the people ever change their ways
Sherwin the covid's after you
Sherwin if it catches you you're through