gnugo-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnugo-devel] another regression patch


From: Gunnar Farneback
Subject: [gnugo-devel] another regression patch
Date: Thu, 19 Sep 2002 17:59:39 +0200
User-agent: EMH/1.14.1 SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.3 Emacs/20.7 (sparc-sun-solaris2.7) (with unibyte mode)

This patch adds 14 new regression tests.

atari_atari:16
Finds a bogus combination attack due to intricacies with how the
atari_atari code handles its goal array.

blunder:22
Filllib makes a backfilling move which happens to reduce a small
eyespace, making the group owl attackable.

blunder:23-27
Playing an outer liberty causes the outcome of a semeai to become
worse.

reading:172
Simple reading mistake. I already have a fix for this.

score2: 60
Scoring mistake, revealing an incorrect assumption in the aftermath
code.

strategy5: 273, 274
The atari_atari code comes up with bogus defense moves.

strategy5: 275, 276
Basic semeai problem. White can make a corner seki (275) and black can
live with territory (276). The latter test case passes.

strategy5: 277
The correct move is undervalued compared to some other moves which the
atari_atari code has identified as defenses.


The function blunder_size() in utils.c has this notice (which I added
in my last revision):

  /* FIXME: We would also need a detect_semeai_blunder() to check
   * against moves which make the outcome of a semeai worse, e.g. by
   * letting the opponent live in seki.
   */

The five test cases blunder:23-27 all are examples where this is
needed.

/Gunnar

Index: regression/Makefile.am
===================================================================
RCS file: /cvsroot/gnugo/gnugo/regression/Makefile.am,v
retrieving revision 1.48
diff -u -r1.48 Makefile.am
--- regression/Makefile.am      13 Sep 2002 13:21:27 -0000      1.48
+++ regression/Makefile.am      19 Sep 2002 10:48:27 -0000
@@ -115,9 +115,6 @@
 ld_owl_rot: ld_owl_rot.tst
        $(srcdir)/eval.sh ld_owl_rot.tst $(GG_OPTIONS)
 
-life: life.tst
-       $(srcdir)/eval.sh life.tst --life $(GG_OPTIONS)
-
 manyfaces: manyfaces.tst
        $(srcdir)/eval.sh manyfaces.tst $(GG_OPTIONS)
 
Index: regression/atari_atari.tst
===================================================================
RCS file: /cvsroot/gnugo/gnugo/regression/atari_atari.tst,v
retrieving revision 1.16
diff -u -r1.16 atari_atari.tst
--- regression/atari_atari.tst  21 Mar 2002 14:23:09 -0000      1.16
+++ regression/atari_atari.tst  19 Sep 2002 10:48:27 -0000
@@ -65,3 +65,7 @@
 loadsgf games/atari_atari05.sgf 291
 15 combination_attack black
 #? [B13]
+
+loadsgf games/atari_atari06.sgf
+16 combination_attack white
+#? [K3]
Index: regression/blunder.tst
===================================================================
RCS file: /cvsroot/gnugo/gnugo/regression/blunder.tst,v
retrieving revision 1.19
diff -u -r1.19 blunder.tst
--- regression/blunder.tst      4 Sep 2002 23:24:04 -0000       1.19
+++ regression/blunder.tst      19 Sep 2002 10:48:27 -0000
@@ -96,3 +96,34 @@
 loadsgf games/handtalk/handtalk13.sgf 131
 21 gg_genmove black
 #? [L9]
+
+# R18 is suicidal
+loadsgf games/blunder15.sgf
+22 gg_genmove black
+#? [!R18|R19]
+
+# Don't play an outer liberty and let white have a ko.
+loadsgf games/blunder16.sgf
+23 gg_genmove black
+#? [!F4|F5|F6]
+
+# Don't play the outer liberty and let white make seki.
+loadsgf games/blunder17.sgf
+24 gg_genmove black
+#? [!P5]
+
+# Don't play an outer liberty and let white make seki or better.
+loadsgf games/blunder18.sgf
+25 gg_genmove black
+#? [!P9|M5|T9]
+
+# Don't play an outer liberty and let black make seki or better.
+loadsgf games/blunder19.sgf
+26 gg_genmove white
+#? [!D19|F17]
+
+# R3 lets black play T2 and get seki.
+loadsgf games/blunder20.sgf
+27 gg_genmove white
+#? [!R3]
+
Index: regression/nicklas1.tst
===================================================================
RCS file: /cvsroot/gnugo/gnugo/regression/nicklas1.tst,v
retrieving revision 1.35
diff -u -r1.35 nicklas1.tst
--- regression/nicklas1.tst     17 Sep 2002 06:40:35 -0000      1.35
+++ regression/nicklas1.tst     19 Sep 2002 10:48:31 -0000
@@ -331,7 +331,7 @@
 
 loadsgf games/nicklas/nicklas23.sgf 26
 2301 gg_genmove black
-#? [G6|F7]
+#? [G6|F7|H8]
 
 loadsgf games/nicklas/nicklas23.sgf 40
 2302 gg_genmove black
Index: regression/reading.tst
===================================================================
RCS file: /cvsroot/gnugo/gnugo/regression/reading.tst,v
retrieving revision 1.32
diff -u -r1.32 reading.tst
--- regression/reading.tst      31 Aug 2002 14:56:14 -0000      1.32
+++ regression/reading.tst      19 Sep 2002 10:48:35 -0000
@@ -693,6 +693,10 @@
 popgo
 popgo
 
+loadsgf games/reading38.sgf
+172 defend N14
+#? [1 Q10]
+
 
 # Report number of nodes visited by the tactical reading
 10000 get_reading_node_counter
Index: regression/score2.tst
===================================================================
RCS file: /cvsroot/gnugo/gnugo/regression/score2.tst,v
retrieving revision 1.5
diff -u -r1.5 score2.tst
--- regression/score2.tst       18 Sep 2002 12:14:15 -0000      1.5
+++ regression/score2.tst       19 Sep 2002 10:48:35 -0000
@@ -113,3 +113,7 @@
 loadsgf games/nngs/gnugo-3.3.8-evand-200209090532.sgf
 59 final_score
 #? [W\+15.5]
+
+loadsgf games/nngs/silverado-gnugo-3.3.8-200209120723.sgf
+60 final_score
+#? [B\+19.5]
Index: regression/semeai.tst
===================================================================
RCS file: /cvsroot/gnugo/gnugo/regression/semeai.tst,v
retrieving revision 1.21
diff -u -r1.21 semeai.tst
--- regression/semeai.tst       5 Jul 2002 14:48:04 -0000       1.21
+++ regression/semeai.tst       19 Sep 2002 10:48:38 -0000
@@ -63,6 +63,8 @@
 # Strategy4 168
 # Strategy4 185
 # Strategy4 206
+# Strategy5 275
+# Strategy5 276
 
 # for any of these problems, if PASS is a solution it is the best
 # solution. However the other solutions are acceptable.
Index: regression/strategy5.tst
===================================================================
RCS file: /cvsroot/gnugo/gnugo/regression/strategy5.tst,v
retrieving revision 1.9
diff -u -r1.9 strategy5.tst
--- regression/strategy5.tst    17 Sep 2002 06:40:35 -0000      1.9
+++ regression/strategy5.tst    19 Sep 2002 10:48:38 -0000
@@ -81,6 +81,30 @@
 272 gg_genmove white
 #? [C7]*
 
+# Black has a combination attack which must be defended correctly against.
+# F8 and F7 both fail.
+loadsgf games/strategy47.sgf
+273 gg_genmove white
+#? [E8|E9|F9|E7|F6|E6|D7|C7]
+
+# Black has a combination attack which must be defended correctly against.
+# In particular L5 fails.
+loadsgf games/strategy48.sgf
+274 gg_genmove white
+#? [!L5|M5|N5]
+
+# Semeai problem. White can make seki, black can kill.
+loadsgf games/strategy49.sgf
+275 gg_genmove white
+#? [A18]
+276 gg_genmove black
+#? [A18]
+
+# R19 defends everything.
+loadsgf games/strategy50.sgf
+277 gg_genmove white
+#? [R19]
+
 
 
 ############ End of Tests #################
Index: regression/games/atari_atari06.sgf
===================================================================
RCS file: regression/games/atari_atari06.sgf
diff -N regression/games/atari_atari06.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/atari_atari06.sgf  19 Sep 2002 10:48:38 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[4.5]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[fa][la][ma][eb][fb][hb][kb][lb][rb][sb][dc][gc][ic][jc][kc][mc][nc][pc][qc][sc][cd][dd][ed][fd][hd][pd][rd][de][fe][ge][ke][le][qe][cf][gf][lf][of][pf][qf][fg][gg][hg][kg][lg][mg][ng][eh][ih][jh][kh][mh][qh][ci][gi][ji][li][mi][ej][gj][hj][mj][qj][rj][bk][gk][ik][mk][nk][ok][rk][sk][bl][cl][il][jl][kl][ol][sl][am][cm][em][hm][im][jm][lm][om][rm][sm][an][cn][dn][in][kn][ln][on][pn][qn][bo][eo][ho][io][jo][ko][mo][no][po][ap][cp][ep][fp][gp][hp][ip][mp][np][pp][bq][cq][eq][hq][lq][oq][pq][qq][ar][br][hr][or][os][ps][qs]AB[aa][ba][ca][da][ea][na][ra][cb][db][mb][ob][pb][qb][ac][cc][ec][lc][oc][bd][id][jd][kd][ld][md][nd][od][be][ce][ee][he][je][me][oe][pe][df][ef][ff][hf][jf][kf][mf][nf][dg][eg][ig][jg][dh][fh][gh][hh][oh][di][fi][hi][ii][ki][aj][bj][dj][ij][jj][kj][lj][oj][ak][ck][dk][hk][jk][lk][qk][al][dl][fl][gl][hl][ll][ml][nl][ql][rl][dm][gm][mm][qm][en][fn][gn][hn][mn][nn][rn][sn][co][do][fo][go][lo][qo][ro][dp][jp][kp][lp][qp][sp][dq][fq][gq][iq][mq][nq][rq][sq][c!
r][dr][er][gr][ir][lr][mr][nr][pr][qr][rr][bs][hs][ns][rs][ss]PL[B])
Index: regression/games/blunder15.sgf
===================================================================
RCS file: regression/games/blunder15.sgf
diff -N regression/games/blunder15.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/blunder15.sgf      19 Sep 2002 10:48:38 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[5.5]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[ja][ka][la][lb][sb][ec][jc][kc][lc][mc][rc][dd][ed][fd][gd][jd][kd][nd][od][qd][rd][ce][de][ee][fe][ge][ie][je][le][me][ne][re][df][ef][hf][jf][kf][mf][nf][of][qf][rf][sf][eg][pg][qg][sg][ch][dh][eh][kh][rh][sh][bi][ci][di][ii][aj][ej][fj][gj][ij][rj][bk][ck][dk][gk][hk][ik][jk][kk][lk][mk][nk][ok][pk][qk][rk][sk][bl][cl][jl][kl][ml][nl][bm][em][km][mm][om][pm][rm][bn][en][fn][kn][qn][co][eo][fo][go][ho][jo][ro][so][cp][ep][fp][jp][np][op][sp][cq][dq][eq][iq][jq][kq][mq][nq][dr][fr][jr][lr][nr][or][rr][fs][gs][is][js][ns]AB[ia][na][ra][eb][ib][jb][kb][nb][rb][cc][dc][fc][gc][hc][ic][nc][oc][pc][qc][cd][hd][id][pd][be][he][oe][pe][qe][af][cf][ff][gf][if][lf][pf][ag][bg][cg][dg][fg][ig][jg][kg][lg][mg][ng][og][ah][bh][fh][ih][ph][qh][ai][ei][fi][gi][hi][ji][qi][ri][si][hj][jj][kj][lj][mj][nj][oj][pj][qj][sj][ek][fk][dl][el][fl][gl][hl][il][ll][cm][dm][fm][hm][jm][lm][nm][cn][dn][gn][hn][in][jn][ln][mn][nn][on][pn][do][io][ko][lo][no][oo][qo][dp][gp][hp][ip][lp][mp][pp][q!
p][rp][hq][lq][oq][pq][qq][rq][sq][er][gr][hr][ir][pr][qr][hs][os][ps]PL[B]IL[ke][rg])
Index: regression/games/blunder16.sgf
===================================================================
RCS file: regression/games/blunder16.sgf
diff -N regression/games/blunder16.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/blunder16.sgf      19 Sep 2002 10:48:40 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[0.0]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[ba][ha][ma][na][db][fb][gb][hb][mb][cc][dc][ec][lc][mc][nc][cd][ed][md][nd][pd][sd][ee][me][oe][pe][re][se][df][ef][nf][of][pf][qf][rf][sf][fg][gg][hg][mg][ng][qg][sg][ah][ch][dh][ih][lh][nh][ai][bi][ci][di][ei][gi][ii][mi][qi][aj][bj][dj][ej][fj][gj][hj][mj][nj][oj][qj][bk][fk][mk][ok][el][kl][ll][ml][em][fm][gm][hm][km][mm][nm][pm][en][hn][in][jn][nn][sn][eo][ho][jo][ko][mo][no][oo][po][ro][so][dp][ep][np][pp][qp][rp][bq][cq][eq][fq][gq][jq][kq][lq][nq][gr][ir][nr][hs][js][ms][ns][os]AB[ca][da][ea][fa][ga][la][oa][ab][bb][cb][eb][lb][nb][ob][rb][bc][oc][pc][qc][sc][bd][dd][od][qd][rd][ce][de][qe][cf][ag][bg][cg][dg][eg][og][pg][rg][bh][eh][fh][gh][hh][oh][qh][rh][sh][fi][hi][ni][oi][pi][cj][pj][ak][ck][dk][ek][gk][nk][pk][qk][al][bl][cl][dl][fl][nl][ol][bm][dm][jm][lm][om][qm][sm][an][dn][gn][kn][ln][mn][on][pn][qn][rn][bo][do][go][io][lo][qo][bp][cp][gp][hp][ip][jp][kp][lp][mp][op][sp][dq][hq][iq][mq][oq][pq][qq][rq][sq][br][cr][dr][er][fr][hr][lr][mr][or][pr][sr][d!
s][fs][gs][ls][ps][rs]PL[B])
Index: regression/games/blunder17.sgf
===================================================================
RCS file: regression/games/blunder17.sgf
diff -N regression/games/blunder17.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/blunder17.sgf      19 Sep 2002 10:48:40 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[5.5]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[dc][cd][dd][ed][fd][hd][kd][md][od][be][ce][ee][ge][he][le][oe][bf][df][ff][if][kf][lf][eg][fg][jg][kg][lg][ng][og][pg][bh][ch][dh][gh][mh][oh][ph][rh][ai][bi][hi][ni][oi][ri][si][aj][cj][gj][ij][jj][kj][lj][mj][nj][pj][qj][sj][bk][ck][fk][gk][ik][pk][rk][cl][el][jl][ol][pl][em][fm][gm][hm][jm][lm][qm][bn][cn][dn][mn][on][pn][qn][ao][eo][ko][lo][qo][ap][cp][dp][ep][qp][rp][aq][dq][eq][lq][mq][oq][rq][ar][cr][dr][lr][mr][nr][or][pr][qr][bs][cs][ms]AB[bb][cb][db][ac][cc][ec][fc][gc][hc][kc][lc][oc][pc][ad][bd][gd][id][ld][qd][ae][ie][je][ke][me][pe][af][cf][jf][mf][nf][of][pf][ag][bg][cg][dg][mg][qg][rg][sg][ah][eh][qh][sh][ci][di][pi][qi][dj][fj][hj][oj][dk][hk][jk][kk][lk][mk][nk][ok][fl][gl][hl][il][nl][ql][im][nm][om][pm][en][fn][gn][hn][in][nn][fo][jo][mo][no][po][fp][jp][lp][mp][np][op][pp][fq][gq][jq][kq][nq][pq][qq][er][gr][kr][ds][es][fs][gs][ks][ls]PL[B])
Index: regression/games/blunder18.sgf
===================================================================
RCS file: regression/games/blunder18.sgf
diff -N regression/games/blunder18.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/blunder18.sgf      19 Sep 2002 10:48:40 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[9.5]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[da][ea][la][ma][na][oa][pa][db][fb][hb][nb][ob][dc][fc][gc][hc][ic][mc][nc][cd][dd][ed][fd][gd][id][jd][ld][md][od][ce][ge][he][je][me][ne][oe][pe][qe][bf][df][ff][if][jf][mf][nf][bg][dg][eg][fg][ng][rg][ah][bh][fh][gh][kh][lh][mh][oh][ph][qh][rh][sh][bi][gi][li][mi][ni][pi][qi][ri][ej][gj][nj][oj][qj][sj][ck][ek][lk][mk][nk][bl][cl][dl][el][il][ll][am][cm][dm][em][hm][im][jm][km][lm][nm][om][pm][qm][rm][sm][cn][en][fn][in][kn][nn][pn][co][jo][ko][no][po][dp][kp][lp][mp][dq][jq][kq][mq][nq][oq][rq][cr][er][gr][kr][mr][es][fs][gs][ls][ms][ns]AB[fa][ga][ha][ia][ja][ka][qa][eb][gb][ib][jb][lb][mb][pb][rb][jc][kc][lc][oc][pc][rc][kd][pd][qd][sd][ke][le][re][cf][gf][hf][kf][lf][of][pf][qf][rf][sf][cg][gg][hg][ig][jg][kg][lg][mg][og][pg][qg][sg][ch][dh][eh][hh][ih][jh][ai][ci][ei][fi][hi][ki][aj][bj][cj][dj][fj][hj][ij][jj][kj][lj][mj][pj][rj][ak][bk][dk][fk][gk][hk][ik][jk][kk][pk][qk][rk][al][fl][gl][hl][jl][kl][ml][nl][ol][rl][sl][fm][gm][mm][dn][gn][hn][mn][on][qn][rn][d!
o][eo][fo][io][lo][mo][oo][ep][gp][hp][ip][jp][np][op][pp][qp][rp][eq][fq][gq][iq][pq][qq][fr][hr][jr][nr][or][rr][hs][js][ks][os][ps][qs]PL[B])
Index: regression/games/blunder19.sgf
===================================================================
RCS file: regression/games/blunder19.sgf
diff -N regression/games/blunder19.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/blunder19.sgf      19 Sep 2002 10:48:40 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[1.0]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[ha][ab][cb][db][hb][ib][jb][lb][qb][bc][dc][ec][hc][jc][kc][mc][nc][oc][pc][rc][ad][bd][cd][jd][kd][md][pd][rd][ae][ke][qe][re][se][kf][rf][ig][jg][rg][ii][ji][ki][ri][aj][jj][kj][lj][mj][nj][qj][rj][ak][bk][fk][jk][kk][ok][sk][al][fl][gl][il][jl][kl][ll][ol][ql][rl][sl][am][bm][dm][em][fm][hm][im][jm][km][mm][nm][om][pm][qm][rm][bn][cn][dn][fn][gn][hn][mn][on][qn][sn][co][go][lo][mo][ro][so][bp][kp][mp][op][qp][rp][bq][cq][dq][eq][jq][mq][nq][oq][dr][gr][hr][ir][kr][lr][cs][ds][es][hs][ls][ms]AB[ba][ea][ga][bb][eb][fb][gb][gc][ic][lc][dd][ed][fd][hd][id][ld][nd][od][be][ce][ie][je][le][me][oe][pe][af][jf][lf][nf][of][qf][sf][bg][kg][mg][pg][qg][sg][ih][jh][kh][mh][oh][ph][qh][rh][sh][ai][bi][hi][li][mi][ni][qi][bj][cj][dj][ej][fj][hj][ij][oj][pj][sj][ck][ek][gk][hk][ik][lk][mk][nk][pk][qk][rk][bl][cl][dl][el][hl][ml][pl][cm][lm][en][in][jn][kn][ln][nn][pn][do][eo][fo][ho][ko][no][oo][po][qo][cp][dp][ep][fp][gp][ip][jp][np][pp][sp][fq][gq][hq][iq][lq][pq][qq][rq][sq][e!
r][fr][mr][nr][or][fs][gs][ns][ps]PL[W])
Index: regression/games/blunder20.sgf
===================================================================
RCS file: regression/games/blunder20.sgf
diff -N regression/games/blunder20.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/blunder20.sgf      19 Sep 2002 10:48:40 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[5.5]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[fa][eb][fb][hb][dc][ec][fc][gc][hc][ic][jc][mc][nc][pc][qc][sc][fd][gd][hd][jd][kd][md][nd][pd][rd][sd][he][ke][me][ne][oe][pe][re][ff][if][jf][kf][of][qf][sf][ag][dg][eg][fg][gg][jg][kg][ng][og][pg][qg][rg][ah][bh][ch][eh][jh][kh][qh][ai][ci][ei][fi][gi][hi][ii][ki][pi][qi][ri][bj][cj][dj][ej][gj][hj][ij][jj][lj][hk][jk][lk][nk][ok][pk][qk][rk][sk][jl][kl][ml][nl][ol][im][jm][mm][pm][rm][gn][hn][in][jn][ln][mn][qn][bo][co][io][jo][no][oo][po][ro][so][ap][cp][dp][ep][np][op][sp][bq][dq][fq][gq][hq][mq][rq][ar][fr][qr][bs][cs][ds][es][fs][ps][qs]AB[ca][da][ea][ga][ha][ia][ka][bb][db][gb][ib][jb][mb][nb][ob][pb][qb][rb][sb][bc][cc][kc][lc][oc][rc][dd][ed][ld][od][ce][ee][fe][ge][ie][le][af][bf][df][ef][gf][hf][lf][mf][nf][bg][cg][hg][ig][lg][mg][sg][fh][gh][hh][ih][lh][nh][oh][ph][rh][sh][li][oi][si][aj][fj][mj][nj][oj][pj][qj][rj][sj][ak][bk][ck][dk][ek][fk][gk][ik][mk][fl][hl][il][ll][ql][gm][hm][km][lm][an][bn][cn][dn][fn][kn][nn][ao][do][eo][go][ho][ko][lo][mo][qo][f!
p][gp][hp][ip][jp][mp][pp][qp][rp][iq][lq][nq][oq][pq][sq][gr][hr][jr][nr][pr][gs][is][os]PL[W])
Index: regression/games/reading38.sgf
===================================================================
RCS file: regression/games/reading38.sgf
diff -N regression/games/reading38.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/reading38.sgf      19 Sep 2002 10:48:46 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[5.5]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[ba][ja][ka][cb][kb][lb][mb][nb][rb][bc][cc][fc][ic][lc][oc][pc][qc][dd][ed][nd][rd][sd][de][ee][fe][je][le][me][ne][oe][qe][re][se][df][ef][if][jf][kf][lf][of][pf][dg][gg][hg][kg][eh][hh][ih][mh][nh][oh][qh][rh][fi][gi][hi][li][mi][pi][qi][ri][dj][gj][kj][mj][oj][qj][fk][hk][jk][kk][mk][ok][sk][hl][jl][ml][ol][pl][sl][im][jm][km][qm][gn][jn][qn][do][eo][fo][go][ho][jo][lo][qo][ro][dp][gp][ip][jp][kp][lp][mp][qp][rp][sp][aq][bq][cq][dq][eq][kq][lq][br][kr][mr][fs][js][ks][ls][ms][ns]AB[ca][da][ia][db][fb][ib][jb][dc][ec][kc][mc][nc][rc][fd][gd][hd][id][jd][kd][ld][md][ge][he][ie][ke][ff][gf][hf][mf][nf][qf][rf][sf][eg][fg][ig][jg][lg][mg][ng][og][pg][qg][sg][fh][gh][jh][kh][lh][ph][sh][ii][ji][ki][ni][si][hj][ij][jj][lj][rj][sj][ik][lk][pk][qk][il][kl][ll][nl][ql][rl][lm][mm][om][pm][rm][kn][ln][mn][nn][rn][sn][ko][mo][no][po][so][ep][fp][hp][np][op][fq][gq][hq][iq][jq][mq][nq][pq][qq][rq][ar][cr][dr][er][fr][gr][ir][jr][nr][or][as][bs][cs][ds][is][os]PL[B])
Index: regression/games/strategy47.sgf
===================================================================
RCS file: regression/games/strategy47.sgf
diff -N regression/games/strategy47.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/strategy47.sgf     19 Sep 2002 10:48:46 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[5.5]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[oa][nb][pb][cc][ec][fc][gc][hc][ic][kc][nc][oc][pc][dd][fd][jd][md][od][be][ce][he][ie][le][af][bf][if][mf][ag][eg][fg][gg][hg][jg][mg][ng][ah][bh][hh][ih][kh][mh][oh][fi][ii][ji][li][mi][ni][pi][cj][ej][fj][ij][jj][lj][nj][oj][pj][qj][sj][ck][dk][gk][hk][pk][qk][rk][sk][bl][dl][gl][jl][sl][bm][gm][hm][im][jm][km][lm][om][bn][cn][dn][gn][jn][ln][mn][nn][on][pn][ao][bo][co][eo][fo][lo][mo][oo][qo][bp][fp][lp][np][op][pp][qp][rp][sp][cq][fq][kq][rq][pr][qr][rr][ps]AB[pa][qa][qb][qc][ed][gd][hd][id][nd][pd][de][ee][fe][ge][me][ne][oe][pe][cf][df][ef][ff][gf][hf][nf][pf][bg][cg][dg][og][pg][ch][eh][fh][gh][ph][ai][bi][ci][di][ei][gi][hi][ki][qi][ri][si][bj][dj][gj][hj][kj][mj][rj][ak][bk][ik][jk][kk][lk][mk][nk][ok][al][cl][hl][il][kl][ll][nl][ol][pl][ql][rl][am][mm][nm][pm][sm][an][hn][in][qn][rn][do][go][jo][ko][ro][so][ap][cp][dp][ep][gp][ip][jp][kp][mp][aq][bq][eq][gq][hq][lq][mq][nq][oq][pq][qq][br][dr][fr][kr][lr][or][es][ms][ns][os]PL[W])
Index: regression/games/strategy48.sgf
===================================================================
RCS file: regression/games/strategy48.sgf
diff -N regression/games/strategy48.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/strategy48.sgf     19 Sep 2002 10:48:46 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[5.0]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[da][ea][ka][oa][eb][fb][jb][kb][lb][nb][ob][pb][qb][dc][jc][qc][dd][ed][fd][gd][jd][ld][md][nd][rd][ce][de][fe][he][je][ke][le][me][ne][oe][qe][re][bf][cf][df][hf][kf][lf][nf][rf][ag][bg][dg][eg][hg][jg][rg][sg][bh][ch][eh][hh][jh][oh][sh][ci][hi][ii][ki][ij][kj][lj][mj][nj][oj][lk][hl][ll][ml][nl][gm][hm][jm][km][om][en][fn][gn][hn][in][mn][on][co][do][io][no][ap][dp][ep][jp][kp][lp][mp][op][pp][sp][aq][bq][cq][dq][jq][oq][qq][rq][sq][ar][br][dr][er][lr][mr][nr][pr][cs][ds][ls][os]AB[ca][la][ma][bb][cb][db][mb][cc][ec][fc][kc][lc][mc][nc][oc][pc][ad][bd][cd][kd][od][pd][qd][ae][be][ee][ge][pe][af][ef][ff][gf][mf][of][pf][qf][gg][kg][lg][mg][ng][qg][ah][dh][fh][gh][kh][nh][ph][rh][ai][bi][di][ei][gi][ji][li][mi][ni][oi][qi][si][bj][cj][dj][gj][hj][jj][pj][rj][hk][ik][jk][kk][mk][nk][ok][qk][gl][il][jl][kl][ol][pl][bm][em][fm][im][pm][an][bn][cn][dn][pn][qn][ao][bo][eo][fo][go][ho][oo][po][ro][so][bp][cp][fp][ip][np][qp][rp][eq][fq][hq][iq][kq][lq][mq][nq][fr][hr][jr][k!
r][es][fs][hs][js][ks]PL[W])
Index: regression/games/strategy49.sgf
===================================================================
RCS file: regression/games/strategy49.sgf
diff -N regression/games/strategy49.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/strategy49.sgf     19 Sep 2002 10:48:46 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[5.5]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[fa][ka][bb][eb][fb][kb][lb][ac][ec][jc][mc][ad][dd][fd][jd][md][nd][od][de][fe][ke][me][qe][af][bf][cf][ef][gf][hf][if][jf][kf][lf][mf][of][pf][cg][dg][eg][gg][ig][mg][ng][og][pg][qg][dh][ih][oh][sh][di][gi][mi][pi][qi][ri][si][ej][fj][gj][hj][lj][mj][nj][oj][pj][sj][ek][kk][lk][qk][rk][al][bl][cl][dl][hl][jl][kl][ol][pl][ql][bm][hm][im][lm][mm][nm][pm][in][jn][kn][ln][mn][bo][co][io][lo][bp][cp][dp][gp][ip][jp][dq][eq][fq][gq][hq][iq][qq][er][ir][es][gs][is]AB[ba][da][ea][la][ma][cb][db][mb][nb][pb][bc][cc][dc][nc][oc][qc][cd][ed][id][pd][ae][be][ce][ie][je][le][ne][oe][pe][re][ff][nf][qf][rf][fg][hg][jg][kg][lg][rg][sg][eh][fh][gh][hh][jh][lh][mh][nh][ph][qh][rh][ei][fi][hi][ii][ki][li][ni][oi][ij][kj][fk][gk][hk][ik][jk][sk][el][gl][il][rl][sl][am][cm][dm][em][gm][jm][om][qm][rm][an][bn][cn][hn][nn][on][pn][qn][ao][do][fo][go][ho][jo][ko][mo][no][po][ap][ep][fp][hp][kp][lp][qp][bq][cq][jq][rq][br][dr][gr][jr][lr][cs][ds][js]PL[B])
Index: regression/games/strategy50.sgf
===================================================================
RCS file: regression/games/strategy50.sgf
diff -N regression/games/strategy50.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/strategy50.sgf     19 Sep 2002 10:48:49 -0000
@@ -0,0 +1,6 @@
+(;GM[1]FF[4]
+SZ[19]
+GN[GNU Go 3.3.8 load and print]
+DT[2002-09-18]
+KM[5.5]AP[GNU Go 3.3.8]RU[Japanese]
+ 
;AW[ea][ia][ra][bb][db][eb][fb][hb][ib][ob][pb][rb][ac][bc][cc][dc][ic][nc][pc][qc][ad][cd][fd][jd][kd][ld][md][sd][he][me][ne][oe][se][ef][ff][gf][hf][jf][kf][mf][rf][sf][dg][eg][gg][hg][ig][kg][lg][mg][ng][pg][qg][rg][gh][jh][mh][qh][ai][ci][di][fi][gi][ji][ki][li][pi][qi][aj][bj][cj][ej][fj][qj][bk][ek][rk][cl][dl][el][fl][kl][ml][nl][pl][ql][rl][dm][jm][km][lm][mm][om][rm][sm][dn][gn][kn][nn][on][pn][sn][co][do][go][ho][jo][ko][mo][dp][hp][ip][jp][lp][mp][np][qp][dq][eq][hq][jq][lq][nq][er][ir][qr][ds][es][fs][is][js]AB[fa][ga][ha][sa][gb][qb][sb][ec][fc][gc][hc][oc][rc][sc][bd][dd][hd][id][nd][od][pd][qd][rd][ae][be][ce][de][ee][fe][ge][ie][je][ke][le][pe][re][df][if][lf][nf][of][pf][qf][cg][fg][og][ah][bh][ch][dh][eh][fh][hh][ih][nh][oh][ph][bi][ei][hi][ii][mi][oi][gj][ij][jj][kj][lj][pj][ak][fk][gk][hk][kk][lk][mk][nk][ok][pk][qk][al][bl][gl][il][jl][ll][ol][am][bm][cm][fm][gm][im][pm][qm][cn][fn][hn][in][jn][qn][rn][bo][fo][io][no][oo][po][qo][so][bp][cp][fp][gp][k!
p][pp][cq][fq][kq][mq][pq][cr][dr][fr][hr][jr][kr][lr][mr][nr][or][pr][cs][gs][ks]PL[W])
Index: regression/games/nngs/silverado-gnugo-3.3.8-200209120723.sgf
===================================================================
RCS file: regression/games/nngs/silverado-gnugo-3.3.8-200209120723.sgf
diff -N regression/games/nngs/silverado-gnugo-3.3.8-200209120723.sgf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ regression/games/nngs/silverado-gnugo-3.3.8-200209120723.sgf        19 Sep 
2002 10:48:52 -0000
@@ -0,0 +1,32 @@
+(;GM[1]FF[4]
+SZ[19]HA[4]KM[0.5]
+PW[silverado]WR[9k]
+PB[GnuGo (GNU Go 3.3.8)]BR[12k*]
+PC[NNGS]DT[2002-09-12]AP[gnugoclient:2.0]
+AB[dd][pd][dp][pp]
+;W[nc];B[jd];W[ne];B[pf];W[pb];B[qc];W[qj];B[qb];W[kc];B[jc];W[fc]
+;B[cf];W[db];B[cc];W[fe];B[cb];W[fg];B[kb];W[lc];B[jf];W[ng];B[jp]
+;W[nq];B[oq];W[np];B[pn];W[rg];B[ph];W[qh];B[fq];W[dn];B[cl];W[co]
+;B[ci];W[cq];B[ob];W[nb];B[pc];W[nn];B[lq];W[hp];B[fo];W[hn];B[hq]
+;W[gq];B[iq];W[gp];B[gr];W[fr];B[er];W[fp];B[eq];W[ep];B[eo];W[dq]
+;B[do];W[cp];B[em];W[en];B[fn];W[fm];B[dm];W[cn];B[gm];W[fl];B[gn]
+;W[im];B[gl];W[fk];B[ho];W[io];B[ip];W[qo];B[po];W[rq];B[om];W[oj]
+;B[nr];W[mr];B[or];W[mq];B[rm];W[qn];B[qm];W[qr];B[rn];W[ro];B[qp]
+;W[rp];B[sr];W[so];B[rf];W[hj];B[qg];W[rh];B[hc];W[he];B[il];W[jj]
+;B[jl];W[lp];B[kn];W[ml];B[dr];W[cr];B[eb];W[fb];B[hf];W[ie];B[if]
+;W[je];B[ke];W[kf];B[kd];W[kk];B[hh];W[fi];B[gf];W[ge];B[lf];W[kg]
+;B[lg];W[kh];B[nh];W[mh];B[lh];W[mg];B[ff];W[ef];B[eg];W[eh];B[dg]
+;W[ed];B[dc];W[mi];B[ki];W[ji];B[jh];W[ia];B[lb];W[mb];B[ld];W[md]
+;B[gg];W[ih];B[jg];W[gh];B[ej];W[fh];B[hi];W[gj];B[ii];W[ij];B[kr]
+;W[hb];B[ga];W[fa];B[gc];W[ec];B[gb];W[ea];B[de];W[jb];B[ee];W[ic]
+;B[id];W[hd];B[ib];W[gi];B[nm];W[mm];B[rk];W[pl];B[hg];W[ic];B[fd]
+;W[cm];B[mc];W[ds];B[dk];W[es];B[go];W[hr];B[hk];W[ir];B[qq];W[pr]
+;B[rr];W[rs];B[sq];W[jn];B[kp];W[lo];B[km];W[jr];B[lr];W[ns];B[ls]
+;W[ms];B[ko];W[gk];B[eq];W[gs];B[hl];W[kl];B[jq];W[pm];B[os];W[on]
+;B[op];W[no];B[rj];W[oh];B[pi];W[qi];B[bl];W[bm];B[pj];W[qk];B[pk]
+;W[ql];B[rl];W[ok];B[am];W[an];B[al];W[kj];B[oi];W[og];B[pg];W[ni]
+;B[li];W[lj];B[sg];W[ek];B[dl];W[di];B[dj];W[dh];B[ch];W[oe];B[oa]
+;W[lc];B[sh];W[si];B[sf];W[ri];B[sj];W[ol];B[pe];W[la];B[ka];W[ma]
+;B[mf];W[me];B[od];W[le];B[kc];W[mc];B[nf];W[of];B[oc];W[oo];B[sn]
+;W[na];B[ei];W[nd];B[fj];W[el];B[];W[jk];B[jm];W[ln];B[];W[js];B[]
+;W[ks];B[];W[kq];B[]C[game adjourned])




reply via email to

[Prev in Thread] Current Thread [Next in Thread]