|
回前面mousoeng朋友,
1)
你的要求跟我前面列的基本类似,只是把“flop set or better" 改为 “exactly flop set”。举一例20BB:- select count(exactFlopHandCategory(PLAYER_2,FLOPSET)) /* How often PLAYER_2 flops a set */
- from game='holdem', syntax='Generic',
- PLAYER_1='AK',
- PLAYER_2='AA-99,AxKx-Ax9x,AxKy-AxTy,KxQx-KxTx,KxQy-KxTy,QxJx,QxTx,QxJy,QxTy,JxTx'
- where exactFlopHandCategory(PLAYER_1,FLOPTOPPAIR) /* PLAYER_1 flop hand category is toppair */
复制代码 结果是2.38%
对比前面154楼 flop set or better的结果 3.4%,可见两者大约能差1%左右。
2)你的问题应该是指:给定AK翻牌出顶对,求它equity依然落后的概率。
20BB下:17.6%- select count(riverEquity(Player_1) < riverEquity(Player_2)) /* How often Player_2 has higher EV */
- from game='holdem', syntax='Generic',
- PLAYER_1='AK',
- PLAYER_2='AA-99,AxKx-Ax9x,AxKy-AxTy,KxQx-KxTx,KxQy-KxTy,QxJx,QxTx,QxJy,QxTy,JxTx'
- where exactFlopHandCategory(PLAYER_1,FLOPTOPPAIR) /* PLAYER_1 flop hand category is toppair */
复制代码 50BB: 17.1%
100BB: 18.9%
150BB: 18.5%
200BB: 17.7% |
|