ctm / mb2-doc

Mb2, poker software
https://devctm.com
7 stars 2 forks source link

Double Board Bomb Pot #1322

Closed ctm closed 4 months ago

ctm commented 4 months ago

Add the ability to deal double board bomb pot PLO and NLHE.

Currently, bomb_pot is only an option for Texas Hold'em and variants and double_board is only an option for Omaha and variants.

The bomb pot merging of hole cards and the dealing of the flop is straightforward enough that I can just copy the technique from Hold'em to Omaha and expect it to work.

I think I can turn the double-board helper methods into a trait with default implementations that will then work for Hold 'em, too.

Turns out, no traits are needed. The helper routines are functions, not methods and they can already be easily inserted into Hold'em.

ctm commented 4 months ago

Deploying now.