What's the difference between PairOnBoard vs. PairOnFlop? I want to write code that bets the flop when there's no pair.
Which one is better:
WHEN HaveOverPair AND NOT PairOnFlop RaiseTo 1.0*PotSize FORCE
WHEN HaveOverPair AND NOT PairOnBoard RaiseTo 1.0*PotSize FORCE
PairOnBoard vs. PairOnFlop
Re: PairOnBoard vs. PairOnFlop
usually PairOnBoard is used, because PairOnFlop is more for calling it from later streetsPartypoker562 wrote: ↑Fri Jan 27, 2023 1:42 pm What's the difference between PairOnBoard vs. PairOnFlop? I want to write code that bets the flop when there's no pair.
Which one is better:
WHEN HaveOverPair AND NOT PairOnFlop RaiseTo 1.0*PotSize FORCE
WHEN HaveOverPair AND NOT PairOnBoard RaiseTo 1.0*PotSize FORCE