|
本帖最后由 Jimihandrix 于 2016-9-25 03:36 编辑
持有AKs
select count(handshaving(inRange,'AA,KK') >= 1) /* How often at least 1 player match hand range AA,KK */ as COUNT1
from game='holdem', syntax='Generic',
PLAYER_1='AK:xx',
PLAYER_2='*',
PLAYER_3='*',
PLAYER_4='*',
PLAYER_5='*',
PLAYER_6='*',
PLAYER_7='*',
PLAYER_8='*',
PLAYER_9='*'
3.8897%
持有AKo
select count(handshaving(inRange,'AA,KK') >= 1) /* How often at least 1 player match hand range AA,KK */ as COUNT1
from game='holdem', syntax='Generic',
PLAYER_1='AK:xy',
PLAYER_2='*',
PLAYER_3='*',
PLAYER_4='*',
PLAYER_5='*',
PLAYER_6='*',
PLAYER_7='*',
PLAYER_8='*',
PLAYER_9='*'
3.8510%
其实两个答案应该相等,但是因为软件使用的是蒙特卡洛算法产生了一些微小的误差。
|
|