1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# This is GNU GO, a Go program. Contact gnugo@gnu.org, or see #
# http://www.gnu.org/software/gnugo/ for more information. #
# #
# Copyright 1999 by the Free Software Foundation. #
# #
# This program is free software; you can redistribute it and/or #
# modify it under the terms of the GNU General Public License #
# as published by the Free Software Foundation - version 2. #
# #
# This program is distributed in the hope that it will be #
# useful, but WITHOUT ANY WARRANTY; without even the implied #
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR #
# PURPOSE. See the GNU General Public License in file COPYING #
# for more details. #
# #
# You should have received a copy of the GNU General Public #
# License along with this program; if not, write to the Free #
# Software Foundation, Inc., 59 Temple Place - Suite 330, #
# Boston, MA 02111, USA #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# Database of connection patterns.
#
# ? - don't care
# . - empty
# X - opposite color of O, not easily captured
# O - color of dragon having false or half eye
# x - X or empty
# o - O or empty and an X move here could be captured
# * - cutting point in the O formation, an X move here must be
# tactically safe
# ! - inhibit connection, eye space points for O are turned marginal
#
Pattern 1
?XO
O*!
---
:8,B,NULL
Pattern 2
?XO
O*!
.!.
---
:8,B,NULL
Pattern 3
.O
O.
:X,C,NULL
aO
Ob
;!xcut(a) && !xcut(b)
Pattern 4
OO
..
OO
:+,C,NULL
Pattern 5
# Ok, this is a bit fishy, but we need it in order find the sente
# move at *, threatening to cut.
|.O? force X to connect
|!*X
|.O?
:-,B,NULL
Pattern 6
?O. fragile double connection
X*O
?O.
:8,B,double_does_break_helper
Pattern 7
?OO
o..
?O?
:8,C,NULL
?OO
cba
?O?
;odefend_against(a,b) && olib(c)>1
Pattern 8
?OO
X..
?O?
:8,C,NULL
?OO
Xba
?O?
;odefend_against(a,b)
Pattern 9
# second line clamp
x.!?
XO*!
x.!?
----
:8,B,NULL
Pattern 10
X.O?
.*!?
..!!
----
:8,B,NULL
Pattern 11
O!O
!*X
.O?
:8,B,NULL
O!a
!*X
.b?
;lib(a)==2 || lib(b) == 2
Pattern 12
XO?
O*!
?!?
:8,B,basic_cut_helper
Pattern 13
O
.
O
:+,C,NULL
O
A
O
;!safe_xmove(A)
Pattern 14
.O
..
O.
oO
:8,C,NULL
dO
ab
Oc
oO
;(xplay_attack(a,b,c,a) || xplay_attack(a,b,c,c)) &&
;(xplay_attack(b,a,d,b) || xplay_attack(b,a,d,d))
Pattern 15
XO
O.
:\,C,NULL
AO
OB
;attack(A) || !safe_xmove(B)
Pattern 16
# This pattern is an ugly way to ensure that the X stone is at least
# regarded as a potential cutting stone. The helper returns 0 so the
# pattern does not fire as a B pattern. With an improved connectivity
# analysis, this pattern should no longer be needed.
XO
O*
:8,B,ugly_cutstone_helper
AO
OB
;attack(A) && safe_xmove(B)
Pattern 17
?O.
...
?O.
:+,C,NULL
?Od
cab
?Oe
;olib(c)>1 && xplay_attack(a,b,c,d,e,e)
Pattern 18
OXO
!*!
.!.
---
:8,B,NULL
# END OF FILE
|