jdonn, on Dec 27 2009, 08:21 AM, said:
True, except that there are some ways to add high cards to Justin's example which make it not a 2♦ bid. Would opener bid 2♦ with x xx AKJxxx KQxx?
Posted 2009-December-27, 04:02
jdonn, on Dec 27 2009, 08:21 AM, said:
Posted 2009-December-27, 04:08
mike777, on Dec 27 2009, 09:37 AM, said:
Posted 2009-December-27, 05:11
gnasher, on Dec 27 2009, 05:08 AM, said:
mike777, on Dec 27 2009, 09:37 AM, said:
Posted 2009-December-27, 07:05
eyhung, on Dec 27 2009, 03:06 AM, said:
Quote
Quote
Quote
Quote
Quote
Quote
Quote
Posted 2009-December-27, 10:09
Posted 2009-December-27, 13:39
gnasher, on Dec 27 2009, 06:05 AM, said:
Quote
Quote
Posted 2009-December-27, 13:57
Posted 2009-December-27, 16:22
eyhung, on Dec 27 2009, 08:39 PM, said:
Quote
Quote
Quote
Quote
Quote
Posted 2009-December-27, 16:50
eyhung, on Dec 27 2009, 03:06 AM, said:
Quote
Quote
Posted 2009-December-27, 17:31
Quote
Posted 2009-December-27, 17:48
gnasher, on Dec 27 2009, 03:50 PM, said:
Quote
### non-overcall over 1D
### doesn't handle two-suiters yet
proc pass_1D {hand} {
[space] [space]if {[preempt $hand]} { return 0 }
[space] [space]if {[spades $hand] >= 5 && [hcp $hand] >= 8} { return 0 }
[space] [space]if {[spades $hand] >= 6 && [hcp $hand] >= 5 && [ok_lsuit $hand]} { return 0
}
[space] [space]if {[hearts $hand] >= 5 && [hcp $hand] >= 8} { return 0 }
[space] [space]if {[hearts $hand] >= 6 && [hcp $hand] >= 5 && [ok_lsuit $hand]} { return 0
}
[space] [space]if {[clubs $hand] >= 5 && [hcp $hand] >= 12 && [good_lsuit $hand]} { return
0 }
[space] [space]if {[hcp $hand] >= 15} { return 0 }
[space] [space]if {[diam_dbl $hand 13]} { return 0 }
[space] [space]return 1
}
### non-overcall over 1H
### doesn't handle two-suiters yet
proc pass_1H {hand} {
[space] [space]if {[preempt $hand]} { return 0 }
[space] [space]if {[spades $hand] >= 5 && [hcp $hand] >= 8} { return 0 }
[space] [space]if {[spades $hand] >= 6 && [hcp $hand] >= 5 && [ok_lsuit $hand]} { return 0
}
[space] [space]if {[clubs $hand] >= 5 && [hcp $hand] >= 12 && [good_lsuit $hand]} { return
0 }
[space] [space]if {[diamonds $hand] >= 5 && [hcp $hand] >= 12 && [good_lsuit $hand]} { retu
rn 0 }
[space] [space]if {[hcp $hand] >= 15} { return 0 }
[space] [space]if {[heart_dbl $hand 13]} { return 0 }
[space] [space]return 1
}
Posted 2009-December-28, 08:44