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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
#
# Copyright (C) 1996-2001, Thomas Andrews
#
# $Id: utility.tcl 255 2008-09-15 12:43:02Z thomasoa $
#
# 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; either version 2 of the License, or
# (at your option) any later version.
#
# 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 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-1307 USA
#
#
# In prior releases, this file was called the rather useless name
# "library"
#
#
# Determine if a hand is balanced and within a certain hcp range.
#
proc nt {hand min max} {
if {[balanced $hand]} {
set hcp [hcp $hand]
return [expr {$hcp>=$min && $hcp<=$max}]
}
return 0
}
#
# In Roth's picture bidding, he allows 5-card majors to open
# 1NT. Roth_nt_shape needs to be defined
#
proc Roth_nt {hand min max} {
if {[Roth_nt_shape $hand]} {
set hcp [hcp $hand]
return [expr {$hcp>=$min && $hcp<=$max}]
} else {
return 0
}
}
proc 5CM_nt {hand min max} {
set s [spades $hand]
set h [hearts $hand]
set d [diamonds $hand]
set c [clubs $hand]
set count(0) 0
set count(1) 0
set count(4) 0
set count(5) 0
set count(6) 0
set count(7) 0
set count($s) 1
set count($h) 1
set count($d) 1
set count($c) 1
if {
($count(1)==0) &&
($count(0)==0) &&
($count(6)==0) &&
($count(7)==0)
} {
if {$count(5)==1 && $count(4)==1} { return 0 }
set hcp [hcp $hand]
return [expr {$hcp>=$min && $hcp<=$max}]
}
return 0
}
defvector Top0 0
defvector Top1 1
defvector Aces 1
defvector Top2 1 1
defvector Top3 1 1 1
defvector Top4 1 1 1 1
defvector Honors 1 1 1 1
defvector Top5 1 1 1 1 1
defvector Top6 1 1 1 1 1 1
defvector Top7 1 1 1 1 1 1 1
defvector Top5Q 2 2 2 1 1
defvector Ace 1
defvector King 0 1
defvector AceKing 1 1
defvector Queen 0 0 1
defvector JT 0 0 0 1 1
set Losers(0) 0
set Losers(1) 1
set Losers(2) 2
set Losers(3) 3
set Losers(4) 4
set Losers(5) 4
set Losers(6) 3
set Losers(7) 3
set Losers(8) 2
set Losers(9) 2
set Losers(10) 2
set Losers(11) 1
set Losers(12) 1
set Losers(13) 0
#
# This returns 2X the number of expected defensive tricks
# from a suit. This is a crude estimate.
#
holdingProc defense {A K Q len} {
set defense 0
if {$A} { incr defense 2 }
if {$K&&$len<7} {
incr defense 2
}
if {$Q&&$len<6} {
if {$A||$K} {
incr defense 2
} else {
incr defense 1
}
}
return $defense
}
proc defense {hand suit} {
set len [$suit $hand]
set defense 0
if {[Ace $hand $suit]} {
incr defense 2
}
if {[King $hand $suit] && $len < 7} {
incr defense 2
}
if {[Queen $hand $suit] && $len < 6} {
if {[AceKing $hand $suit]>0} {
incr defense 2
} else {
incr defense 1
}
}
return $defense
}
#
# This routine needs some work
#
defvector losers0_1 100
defvector losers0_2 50 50
defvector losers0_3 50 25 25
defvector losers0_4 40 30 20 10 10
defvector losers1_2 100 50 50
defvector losers1_3 50 50 30 20
defvector losers1_4 30 30 30 30 10 10
defvector losers2_3 100 50 50 30 20 20
defvector losers2_4 40 40 40 40 10 10 10
defvector losers3_4 100 60 60 30 10 5 5
proc offense {hand suit} {
global Losers
set len [$suit $hand]
set baselose $Losers($len)
if {$baselose == 0} { return $len }
if {$baselose == 1} {
return [expr $len-1+[Aces $hand $suit]];
}
if {$baselose == 2} {
if {[losers0_2 $hand $suit]>=100} { return $len }
if {[losers1_2 $hand $suit]>=100} { return [expr $len-1] }
return [expr $len-2]
}
if {$baselose == 3} {
if {[losers0_3 $hand $suit]>=100} { return $len }
if {[losers1_3 $hand $suit]>=100} { return [expr $len-1] }
if {[losers2_3 $hand $suit]>=100} { return [expr $len-2] }
return [expr $len-3]
}
if {[losers0_4 $hand $suit]>=100} { return $len }
if {[losers1_4 $hand $suit]>=100} { return [expr $len-1] }
if {[losers2_4 $hand $suit]>=100} { return [expr $len-2] }
if {[losers3_4 $hand $suit]>=100} { return [expr $len-3] }
return [expr $len-4]
}
proc sOP {hand suit} {
set offense [offense $hand $suit]
set defense [defense $hand $suit]
return [expr $offense-$defense]
}
proc OP {hand} {
return [expr {
[sOP $hand hearts] + [sOP $hand spades]
+ [sOP $hand diamonds] + [sOP $hand clubs]
}
]
}
proc thomas_opener {hand} {
set hcp [hcp $hand]
if {$hcp>12} {return 1}
if {[balanced $hand] && $hcp==12} {return 1}
if {[losers $hand]<=2+$hcp} {
if {[Aces $hand]>1} {return 1}
if {[OP $hand]<4} {return 1}
}
return 0
}
proc sound_opener {hand} {
return [expr {
([losers $hand]+38<=4*[hcp $hand]) ||
[nt $hand 13 15]
} ]
}
proc roth_opener {hand} {
set h [dhcp $hand]
if {$h>14} { return 1 }
if {$h<12} { return 0 }
set l [losers $hand]
if {$l>8} { return 0 }
if {$h>13} { return 1 }
set count 0
if {[Aces $hand]<1} { incr count }
if {$l>6} {incr count }
if {[spades $hand]<=1} {incr count }
if {[hearts $hand]+[spades $hand]<4} {incr count}
if {$h-$count>=12} { return 1 }
return 0
}
proc standard_opening_suit {hand} {
set s [spades $hand]
set h [hearts $hand]
set d [diamonds $hand]
set c [clubs $hand]
if {($s >= 5) && ($s >= $h) && ($s >= $d) && ($s >= $c)} {
return "spades"
}
if {($h >=5) && ($h >= $d) && ($h >= $c)} {
return "hearts"
}
if {$d>$c} { return diamonds }
if {$d==$c && $d>=5} { return diamonds }
return "clubs"
}
proc solid_suit {hand suit} {
expr "[Top3 $hand $suit]==3 && [$suit $hand]>=7"
}
proc gambling_nt {hand} {
if {[hearts $hand]>=4 || [spades $hand]>=4} {return 0}
return [expr {
(([clubs $hand]<=3 && [solid_suit $hand diamonds]) ||
([diamonds $hand]<=3 && [solid_suit $hand clubs])) &&
[controls $hand] <= 4 &&
[hcp $hand] <= 13
}]
}
proc r1_control_suit {hand suit} {
if {[$suit hand] = 0} {return 1}
if {[Ace $hand] = 1} {return 1}
return 0
}
proc r2_control_suit {hand suit} {
if {[$suit hand] <= 1} {return 1}
if {[King $hand] = 1} {return 1}
return 0
}
proc weak_two_quality {hand suit} {
if {[weak_two_qualvec $hand $suit] < 4} {
return 0
}
return 1
}
proc partner {hand} {
if {$hand >= "south"} {
if {$hand == "south"} { return "north" }
return "east"
}
if {$hand == "north"} {return "south"}
return "west"
}
defvector dhcp0 0
defvector dhcp1 4 2 0 0
defvector dhcp2 4 3 1 1
defvector dhcp3 4 3 2 1
proc dhcp {hand} {
set total 0
foreach suit {spades hearts diamonds clubs} {
set count [$suit $hand]
if {$count>3} { set count 3 }
incr total [dhcp$count $hand $suit]
}
return $total
}
defvector newhcpvector 11 7 4 2 1
proc newhcp {hand args} {
set total 0
if {$args==""} {
set suits "spades hearts diamonds clubs"
} else {
set suits $args
}
foreach suit "$suits" {
set val [newhcpvector $hand $suit]
set count [$suit $hand]
if {$count==1 && $val<=7 && $val>=2} { incr val -2 }
if {[Top4 $hand $suit]>=2} { incr val 2 }
if {$count==1} {
incr val 2
}
if {$count==0} {
incr val 3
}
if {$count>=5} { incr val [expr 2*($count-4)] }
incr total $val
}
return $total
}
holdingProc -string distinct_cards {A K Q J T x9 x8 x7 x6 x5 x4 x3 x2} {
set L [list]
set last 0
foreach card {A K Q J T 9 8 7 6 5 4 3 2} \
hasit [list $A $K $Q $J $T $x9 $x8 $x7 $x6 $x5 $x4 $x3 $x2] {
if {$hasit &! $last} {
lappend L $card
}
set last $hasit
}
set L
}
|