Skip to content

Commit 9fdc37e

Browse files
committed
GSoC 2025 Contributions: Core Updates & Optimizations
Includes: - Optimization: Euchre computation simplification (Issue #3) - Bug Fix: Phantom TTT history tracking (Issue #1) - Bug Fix: Universal Poker action count logic clarification (Issue #4) - Bug Fix: Standardize Kuhn Poker observation strings (Issue #5) - Doc: Updated Go/PhantomGo URLs (Issue #2)
1 parent 01e97b2 commit 9fdc37e

File tree

11 files changed

+829
-688
lines changed

11 files changed

+829
-688
lines changed

open_spiel/games/CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ set(GAME_SOURCES
5050
coop_box_pushing/coop_box_pushing.h
5151
coordinated_mp/coordinated_mp.cc
5252
coordinated_mp/coordinated_mp.h
53+
5354
crazy_eights/crazy_eights.cc
5455
crazy_eights/crazy_eights.h
5556
cribbage/cribbage.cc
@@ -395,6 +396,8 @@ add_executable(coordinated_mp_test coordinated_mp/coordinated_mp_test.cc ${OPEN_
395396
$<TARGET_OBJECTS:algorithms>)
396397
add_test(coordinated_mp_test coordinated_mp_test)
397398

399+
400+
398401
add_executable(crazy_eights_test crazy_eights/crazy_eights_test.cc ${OPEN_SPIEL_OBJECTS}
399402
$<TARGET_OBJECTS:tests>)
400403
add_test(crazy_eights_test crazy_eights_test)
@@ -514,6 +517,11 @@ add_executable(kuhn_poker_test kuhn_poker/kuhn_poker_test.cc ${OPEN_SPIEL_OBJECT
514517
$<TARGET_OBJECTS:algorithms>)
515518
add_test(kuhn_poker_test kuhn_poker_test)
516519

520+
add_executable(kuhn_consistency_test kuhn_poker/kuhn_consistency_test.cc ${OPEN_SPIEL_OBJECTS}
521+
$<TARGET_OBJECTS:tests>
522+
$<TARGET_OBJECTS:algorithms>)
523+
add_test(kuhn_consistency_test kuhn_consistency_test)
524+
517525
add_executable(latent_ttt_test latent_ttt/latent_ttt_test.cc ${OPEN_SPIEL_OBJECTS}
518526
$<TARGET_OBJECTS:tests>)
519527
add_test(latent_ttt_test latent_ttt_test)

0 commit comments

Comments
 (0)