PairOnBoard vs. PairOnFlop

Coding-related discussion: OpenPPL (Poker Programming Language) and internal OpenHoldem-script
Post Reply
Partypoker562
First blood
First blood
Posts: 19
Joined: Fri Jan 27, 2023 1:35 pm

PairOnBoard vs. PairOnFlop

Post by Partypoker562 »

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
Alex
Site Admin
Site Admin
Posts: 3112
Joined: Sun Mar 26, 2017 5:58 pm

Re: PairOnBoard vs. PairOnFlop

Post by Alex »

Partypoker562 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
usually PairOnBoard is used, because PairOnFlop is more for calling it from later streets
Post Reply