Fritz GUI's Deep Position Analysis (DPA) would work for engines that supports multipv. Crafty does not implement multipv so far.hgm wrote:Why doesn't it work under WB2UCI?
Deuterium WB has multipv support, and using WB2UCI still does not work because my WB implementation is
Code: Select all
feature option="multiPV -spin 1 1 300"Code: Select all
MultiPV nCode: Select all
option MultiPV=nBut still there is a problem, sample run at MultiPV 2.
Code: Select all
5.444: S> 4 0 1 731 g1f3 g8f6 b1c3 b8c6
5.444: C< info depth 4 score cp 0 time 10 nodes 731 nps 73100 pv g1f3 g8f6 b1c3 b8c6
5.444: S> 4 0 1 829 b1c3 g8f6 g1f3 b8c6
5.444: C< info depth 4 score cp 0 time 10 nodes 829 nps 82900 pv b1c3 g8f6 g1f3 b8c6
5.444: S> 5 27 1 1032 g1f3 g8f6 b1c3 b8c6 d2d3
5.444: C< info depth 5 score cp 27 time 10 nodes 1032 nps 103200 pv g1f3 g8f6 b1c3 b8c6 d2d3
5.444: S> 5 27 1 1175 b1c3 g8f6 g1f3 b8c6 d2d3
5.444: C< info depth 5 score cp 27 time 10 nodes 1175 nps 117500 pv b1c3 g8f6 g1f3 b8c6 d2d3
5.444: S> 6 0 1 2680 g1f3 g8f6 b1c3 b8c6 d2d3 d7d6
5.444: C< info depth 6 score cp 0 time 10 nodes 2680 nps 268000 pv g1f3 g8f6 b1c3 b8c6 d2d3 d7d6
5.444: S> 6 0 1 3019 b1c3 g8f6 g1f3 b8c6 d2d3 d7d6
5.444: C< info depth 6 score cp 0 time 10 nodes 3019 nps 301900 pv b1c3 g8f6 g1f3 b8c6 d2d3 d7d6Code: Select all
depth score time ...What is missing here is the key word multipv n ... in the translation.
Code: Select all
5.444: C< info depth 6 score cp 0 time 10 nodes 3019 nps 301900 pv b1c3 g8f6 g1f3 b8c6 d2d3 d7d6Code: Select all
5.444: C< info depth 6 multipv 1 score cp 0 time 10 nodes 3019 nps 301900 pv b1c3 g8f6 g1f3 b8c6 d2d3 d7d6CECP
Code: Select all
ply score time nodes pv
Where:
ply Integer giving current search depth.
score Integer giving current evaluation in centipawns.
time Current search time in centiseconds (ex:1028 = 10.28 seconds).
nodes Nodes searched.
pv Freeform text giving current "best" line. You can continue the pv onto another line if you start each continuation line with at least four space characters.
Example:
9 156 1084 48000 Nf3 Nc6 Nc3 Nf6
Meaning:
9 ply, score=1.56, time = 10.84 seconds, nodes=48000, PV = "Nf3 Nc6 Nc3 Nf6"