Skip to content

Commit

Permalink
Merge pull request google-deepmind#1020 from VitamintK:patch-8
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 512561885
Change-Id: I490d953f2af2fd00e7c2b3a19ca6daac889b774e
  • Loading branch information
lanctot committed Feb 28, 2023
2 parents 4be5bf4 + 6d0bbf5 commit bda2a69
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 bda2a69

Please sign in to comment.