From c39546ba59cd2cca3d2b7cdfc2c73e7952d1d37d Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 15 Aug 2010 10:24:38 +0200 Subject: [PATCH] sgf-analyse.pl: Skip pass moves --- sgf-analyse.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sgf-analyse.pl b/sgf-analyse.pl index 3546269..39ce2d3 100755 --- a/sgf-analyse.pl +++ b/sgf-analyse.pl @@ -51,6 +51,10 @@ sub one { } } + # Pass value is not interesting since Pachi might want + # to clarify some groups yet. + return if $realmove eq 'PASS'; + # Generate summary line. print join(', ', $move, $color, $realmove, $genmove, $winrate) . "\n"; } -- 2.11.4.GIT