Skip to content

Commit

Permalink
Edit comment in universal_poker InformationStateTensor
Browse files Browse the repository at this point in the history
  • Loading branch information
VitamintK authored Feb 23, 2023
1 parent 649a5f5 commit 6d0bbf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion open_spiel/games/universal_poker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ void UniversalPokerState::InformationStateTensor(
values[offset + (2 * i)] = 0;
values[offset + (2 * i) + 1] = 1;
} else if (actionSeq[i] == 'a') {
// Encode raise as 01.
// Encode all-in as 11.
values[offset + (2 * i)] = 1;
values[offset + (2 * i) + 1] = 1;
} else if (actionSeq[i] == 'f') {
Expand Down

0 comments on commit 6d0bbf5

Please sign in to comment.