does this make sence to you?
any way Tournament Mainsworthy 26 has this feature

http://wbec-ridderkerk.nl/index.html
Moderator: Ras
Wouldn't that mess up your transition table? I think the move order found for a shallower prior search would be less likely to be correct in a deeper search using a new algorithm.mainsworthy wrote:or different algo types
I think the idea is basically flawed, because trans/ref stuff depends on predictable depth as you mentioned. But randomly doing a deeper search seems to make little sense to me in that most of the tree branches are irrelevant anyway and extending those seems pointless.Dirt wrote:Wouldn't that mess up your transition table? I think the move order found for a shallower prior search would be less likely to be correct in a deeper search using a new algorithm.mainsworthy wrote:or different algo types
Unless it is pseudo-random and it behaves exactly the same every time it reaches the same position. For instance, the number to make the decision could be picked from the zobrist key of the position.bob wrote:I think the idea is basically flawed, because trans/ref stuff depends on predictable depth as you mentioned. But randomly doing a deeper search seems to make little sense to me in that most of the tree branches are irrelevant anyway and extending those seems pointless.Dirt wrote:Wouldn't that mess up your transition table? I think the move order found for a shallower prior search would be less likely to be correct in a deeper search using a new algorithm.mainsworthy wrote:or different algo types
hi robert, i wasnt thinking of usual programing principles, i was thinking redesigning tables etc..bob wrote:I think the idea is basically flawed, because trans/ref stuff depends on predictable depth as you mentioned. But randomly doing a deeper search seems to make little sense to me in that most of the tree branches are irrelevant anyway and extending those seems pointless.Dirt wrote:Wouldn't that mess up your transition table? I think the move order found for a shallower prior search would be less likely to be correct in a deeper search using a new algorithm.mainsworthy wrote:or different algo types
I'd agree _if_ there is some basis for making the decision to go deeper here as opposed to over there. Doing it randomly is not something I would consider at all.michiguel wrote:Unless it is pseudo-random and it behaves exactly the same every time it reaches the same position. For instance, the number to make the decision could be picked from the zobrist key of the position.bob wrote:I think the idea is basically flawed, because trans/ref stuff depends on predictable depth as you mentioned. But randomly doing a deeper search seems to make little sense to me in that most of the tree branches are irrelevant anyway and extending those seems pointless.Dirt wrote:Wouldn't that mess up your transition table? I think the move order found for a shallower prior search would be less likely to be correct in a deeper search using a new algorithm.mainsworthy wrote:or different algo types
I am not saying the idea is good or not, but I am saying that it is possible to make sure that the hashtable is not messed up.
The idea may need to be explored. I do not see why discarding an unused fraction of a ply should be a better procedure than using it to increase the chances to go deeper.
Miguel