I was trying the amax River Solver (it's the RiverSolver2.zip taken from here
http://www.poker-ai.org/archive/www.pok ... a&start=40) with the following board and game tree:
Code:
var board = Hand.ParseHand("2d 6s 8c 7s Ah");
static Decision CreateGame4(HoleDistribution[] d)
{
return
new Decision
(
0, d,
new Decision(1, d,
new Showdown(190),
new Decision(0, d,
new Fold(-190),
new Showdown(190 + 230))),
new Decision(1, d,
new Fold(+190),
new Showdown(190 + 230)));
}
However I am getting very odd results. The following is line 3260 taken from the attached solution dump. It shows that player 0 is check/folding the nuts 28% which makes no sense.
Code:
Ts 9s 28 72 | 0.25 0.633300114817056 | -9768030032.41891 150030
Anyone knows what could be wrong here?
Thanks.