[Housebot-developers] SF.net SVN: housebot: [469] trunk/housebot
Status: Alpha
Brought to you by:
j_house
|
From: <tg...@us...> - 2007-02-09 09:22:24
|
Revision: 469
http://svn.sourceforge.net/housebot/?rev=469&view=rev
Author: tgiphil
Date: 2007-02-09 01:22:17 -0800 (Fri, 09 Feb 2007)
Log Message:
-----------
* added alt_alive safety status to regression suite
Modified Paths:
--------------
trunk/housebot/src/gtp/GTPGoBoard.h
Added Paths:
-----------
trunk/housebot/regression/basic/AltAlive.tst
trunk/housebot/regression/basic/AltAlive1.sgf
Added: trunk/housebot/regression/basic/AltAlive.tst
===================================================================
--- trunk/housebot/regression/basic/AltAlive.tst (rev 0)
+++ trunk/housebot/regression/basic/AltAlive.tst 2007-02-09 09:22:17 UTC (rev 469)
@@ -0,0 +1,37 @@
+loadsgf AltAlive1.sgf
+
+1 unconditional_status A14
+#? [altalive]
+2 unconditional_status G18
+#? [altalive]
+3 unconditional_status O19
+#? [altalive]
+4 unconditional_status T11
+#? [altalive]
+5 unconditional_status T7
+#? [altalive]
+6 unconditional_status R1
+#? [altalive]
+7 unconditional_status D10
+#? [altalive]
+8 unconditional_status O6
+#? [dead]
+9 unconditional_status Q6
+#? [dead]
+
+10 unconditional_status A17
+#? [black_territory]*
+11 unconditional_status J15
+#? [black_territory]*
+12 unconditional_status E8
+#? [black_territory]*
+13 unconditional_status P10
+#? [black_territory]*
+14 unconditional_status M6
+#? [black_territory]*
+15 unconditional_status P6
+#? [black_territory]*
+16 unconditional_status S6
+#? [black_territory]*
+17 unconditional_status O1
+#? [black_territory]*
\ No newline at end of file
Added: trunk/housebot/regression/basic/AltAlive1.sgf
===================================================================
--- trunk/housebot/regression/basic/AltAlive1.sgf (rev 0)
+++ trunk/housebot/regression/basic/AltAlive1.sgf 2007-02-09 09:22:17 UTC (rev 469)
@@ -0,0 +1,3 @@
+(;SZ[19]
+AB[af][bf][be][bd][bc][bb][ba][dm][dl][dk][dj][em][ej][fm][fk][fj][gm][gk][ge][gd][gc][gb][hm][hl][he][hb][ig][if][ic][ib][jg][jd][jc][ko][kn][km][kk][kj][ki][kg][ke][kd][ls][lr][lo][lm][lk][li][lg][lf][le][mr][mo][mm][mk][mi][nr][no][nm][nk][ni][ng][nf][ne][nd][nc][nb][na][or][oo][om][ok][oi][og][pr][po][pm][pk][pi][pg][pf][pe][pc][pb][pa][qs][qr][qo][qm][qk][qi][qe][qc][ro][rm][rk][ri][re][rc][so][sm][sk][si][se][sd][sc]
+AW[nn][pn])
Modified: trunk/housebot/src/gtp/GTPGoBoard.h
===================================================================
--- trunk/housebot/src/gtp/GTPGoBoard.h 2007-02-08 09:25:20 UTC (rev 468)
+++ trunk/housebot/src/gtp/GTPGoBoard.h 2007-02-09 09:22:17 UTC (rev 469)
@@ -434,6 +434,7 @@
{
case UNKNOWN: return GTPInternalResponse(true, "undecided");
case ALIVE: return GTPInternalResponse(true, "alive");
+ case ALT_ALIVE: return GTPInternalResponse(true, "altalive");
case DEAD: return GTPInternalResponse(true, "dead");
case BLACK_TERRITORY: return GTPInternalResponse(true, "black_territory");
case WHITE_TERRITORY: return GTPInternalResponse(true, "white_territory");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|