From: Steinar H. Gunderson Date: Fri, 5 Nov 2021 14:34:03 +0000 (+0100) Subject: Revert "Include the PV move in the low-depth analysis." X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=34d25e65b202dd1b30356728848686d6d0ea3acd Revert "Include the PV move in the low-depth analysis." This reverts commit b827590935f10fd11c664e513f4daf94c52cce2a. --- diff --git a/remoteglot.pl b/remoteglot.pl index abbbd98..fb663f8 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -544,13 +544,7 @@ sub parse_infos { my $cp = $info->{'score_cp1'} // $info->{'score_cp'}; my $mate = $info->{'score_mate1'} // $info->{'score_mate'}; my $splicepos = $info->{'splicepos1'} // $info->{'splicepos'}; - my $bestmove; - if (defined($info->{'pv1'})) { # Avoid autovivification. - $bestmove = $info->{'pv1'}[0]; - } else { - $bestmove = $info->{'pv'}[0]; - } - push @{$info->{'lowdepth'}}, [ $d, $cp, $mate, $splicepos, $bestmove ]; + push @{$info->{'lowdepth'}}, [ $d, $cp, $mate, $splicepos ]; } } @@ -965,9 +959,7 @@ sub output_json { $json->{'lowdepth'} = {}; if (exists($info->{'lowdepth'})) { for my $ld (@{$info->{'lowdepth'}}) { - my $score = score_digest_inner($ld->[1], $ld->[2], $ld->[3], 0, $pos_calculating); - push @$score, prettyprint_pv($pos_calculating, $ld->[4]); - $json->{'lowdepth'}{$ld->[0]} = $score; + $json->{'lowdepth'}{$ld->[0]} = score_digest_inner($ld->[1], $ld->[2], $ld->[3], 0, $pos_calculating); } }