Need help with an experiment #4038
Replies: 6 comments 1 reply
-
the best way to search all move as full root is create loop in uci.cpp
|
Beta Was this translation helpful? Give feedback.
-
Thanks, but I was not able to get this working. |
Beta Was this translation helpful? Give feedback.
-
That would be too much to ask probably, but perhaps I might be able to figure it out with some extra clues. I had experience with Basic (who doesn't) 40 years ago, and professionally with dBase and Thomson Assembly from 25-30 years ago, but that's about it and most of it rusted away over the years. My programming experience with C++ is very basic. |
Beta Was this translation helpful? Give feedback.
-
Change |
Beta Was this translation helpful? Give feedback.
-
Thank you, that makes sense. I'll give it a whirl. |
Beta Was this translation helpful? Give feedback.
-
Alas, I could not make it work and gave up. |
Beta Was this translation helpful? Give feedback.
-
I'm trying to create a version where each move is searched as full root moves, aka MultiPV, but still output only the best PV of each iteration. In search.cpp, I can change statement 2 in the line below, but then all PV's are being displayed.
// MultiPV loop. We perform a full root search for each PV line
for (pvIdx = 0; pvIdx < multiPV && !Threads.stop; ++pvIdx)
How can I suppress the extra PV's in the output or (probably even better) search all child nodes as full root moves?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions