-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bids and situations for a Stayman-like cue bid for lebensohl #105
base: main
Are you sure you want to change the base?
Conversation
@@ -278,6 +284,38 @@ b1NoBM2N3C3N :: Action | |||
b1NoBM2N3C3N = bid3N_ [T.Hearts, T.Spades] True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line 254: remember to update the TODO.
-- Stayman-like cue bids | ||
cueBid_ :: T.Suit -> Bool -> Action | ||
cueBid_ oppsSuit shouldHaveStopper = do | ||
NT.gameForcing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider also requiring that you're balanced (or at least semibalanced?) to bid this: ending up in notrump with a void can be awkward. Also consider requiring that you have at most 4 cards in the opponent's suit. That's not important when the opponents make a two-suited bid, but I had an example where RHO overcalled a single-suited spade, and we were 5404. Stayman would probably be the right choice if RHO was two-suited (surely LHO will run to the second suit, which will be in our void), but RHO was single-suited, and I think a double is the right call.
T.Bid 3 T.Notrump .+ " without one because we have a stopper " .+ | ||
"in the opponent's suit. Relay through " .+ | ||
relay .+ ", then bid " .+ bid .+ " as Stayman. Partner can " .+ | ||
"bid the correct game, based on whether we've got a major-suit fit." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mention how this bid is forcing, so we have the ability to investigate slam if we've got extra strength. Same comment below.
...but not yet bids or situations for opener's responses. This is big enough for a PR already.