|
本帖最后由 Jimihandrix 于 2016-10-17 01:32 编辑
用propokertools算了一下,很遗憾,因为软件的最小分辨率是0.0001%(百万分之一),这个条件的计算结果超出了软件的精度,结果是0。
Holdem, Generic syntax
PLAYER_1 *
PLAYER_2 *
PLAYER_3 *
PLAYER_4 *
PLAYER_5 *
PLAYER_6 *
PLAYER_7 *
PLAYER_8 *
PLAYER_9 *
600000 trials (randomized)
[size=1.2em]How often do(es) ( 3 players flop hand category is set AND 1 player flop hand category is straightflush AND ( the board is paired by the turn OR the board is paired by the river))
0.0000% (0)
[size=1.2em]PQL
select count(true) as trials,count(( handshaving(exactFlopHandCategory,FLOPSET) = 3 AND handshaving(exactFlopHandCategory,FLOPSTRAIGHTFLUSH) = 1 AND ( pairedBoard(turn) OR pairedBoard(river)))) /* How often ( 3 players flop hand category is set AND 1 player flop hand category is straightflush AND ( the board is paired by the turn OR the board is paired by the river)) */ as COUNT1 from game='holdem', syntax='Generic', PLAYER_1='*', PLAYER_2='*', PLAYER_3='*', PLAYER_4='*', PLAYER_5='*', PLAYER_6='*', PLAYER_7='*', PLAYER_8='*', PLAYER_9='*'
然后增加条件是同花顺面的情况,结果仍然是0。
|
|