Skip to content

Commit

Permalink
add extra comments
Browse files Browse the repository at this point in the history
  • Loading branch information
penguinland committed Sep 21, 2024
1 parent 7ed7ff4 commit 1efd404
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Bids/Lebensohl.hs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,13 @@ b1No2C2H = NT.b1N2H
signoff_ :: Int -> T.Suit -> Action
signoff_ level suit = do
NT.lessThanInvitational
pointRange 5 40
pointRange 5 40 -- We should have at least half the points to compete
-- NOTE: if we're nonvul, we might compete with less than half the points if
-- we're extra shapely. That's hard to encode here because we don't know the
-- vulnerability yet, and annoying to code in a topic because we can't reuse
-- this function for that situation. Just skip it; users won't get to
-- practice but it's a rare situation that is hopefully obvious when it
-- occurs.
minSuitLength suit 5
-- Have a good reason to bid this suit.
alternatives [soundHolding suit, minSuitLength suit 6]
Expand Down

0 comments on commit 1efd404

Please sign in to comment.