Hi ! I have a problem. I want to generate boards with this conditions: N: 11-22PC, 5+♥ S: 3-6PC, 3-4♥ OR 7-11PC, <4♠ AND <3♥ OR N: 11-22PC, 5+♠ S: 3-6PC, 3-4♠ OR 7-11PC, <3♠ This is my code : produce 50
dealer north
1h = ( hcp(north)>=11 && hcp(north)<=22 && hearts(north)>=5 )
1s = ( hcp(north)>=11 && hcp(north)<=22 && spades(north)>=5 )
1nAh = (hcp(south)>=3 && hcp(south)<=6 && hearts(south)>=3 && hearts(south)<=4)
|| (hcp(south)>=7 && hcp(south)<=11 && hearts(south)<3 && spades(south)<4)
1nAs = (hcp(south)>=3 && hcp(south)<=6 && spades(south)>=3 && spades(south)<=4)
|| (hcp(south)>=7 && hcp(south)<=11 && spades(south)<3)
condition 1h && 1nAh || 1s && 1nAs
action
printpbn
What's wrong here ?