b-inary/postflop-solver

lack of symmetry in game.rs

bgnori opened this issue · 1 comments

I see these in L1201 and L1202

postflop-solver/src/game.rs

Lines 1201 to 1202 in 3f665d5

node.actions.reserve(49);
node.children.reserve(49);

But in L1226 and L1227

postflop-solver/src/game.rs

Lines 1226 to 1227 in 3f665d5

node.actions.reserve(49);
node.children.reserve(48);

I do not know much about this software, but it seems something wrong.

Oops, it works practically fine, but L1226 is incorrect. Thanks for the report!