-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add self playing CFR+ state and surrounding code #92
Draft
elliottneilclark
wants to merge
3
commits into
master
Choose a base branch
from
cfr_node
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
elliottneilclark
force-pushed
the
cfr_node
branch
13 times, most recently
from
February 28, 2024 21:39
66f7630
to
cc13769
Compare
elliottneilclark
changed the title
CFR Historian
Add self playing CFR+ agent and historian
Feb 28, 2024
elliottneilclark
force-pushed
the
cfr_node
branch
from
March 1, 2024 16:49
cc13769
to
97ccc8f
Compare
elliottneilclark
force-pushed
the
cfr_node
branch
2 times, most recently
from
March 10, 2024 18:12
6a578fd
to
197a0f7
Compare
|
elliottneilclark
force-pushed
the
cfr_node
branch
7 times, most recently
from
March 25, 2024 13:34
9e4f46d
to
ec6c078
Compare
elliottneilclark
force-pushed
the
cfr_node
branch
4 times, most recently
from
April 28, 2024 04:02
f213b1e
to
0d94e80
Compare
elliottneilclark
force-pushed
the
cfr_node
branch
from
June 22, 2024 18:13
0d94e80
to
12613b6
Compare
elliottneilclark
force-pushed
the
cfr_node
branch
3 times, most recently
from
June 30, 2024 00:13
3d9fd23
to
ad9fdbd
Compare
elliottneilclark
force-pushed
the
cfr_node
branch
from
December 1, 2024 01:53
2469ba0
to
97b01e7
Compare
elliottneilclark
force-pushed
the
cfr_node
branch
from
December 19, 2024 00:13
ad8e09e
to
e0bcb42
Compare
elliottneilclark
force-pushed
the
cfr_node
branch
6 times, most recently
from
January 2, 2025 16:20
2869486
to
614fdc9
Compare
elliottneilclark
changed the title
Add self playing CFR+ agent and historian
Add self playing CFR+ state and surrounding code
Jan 2, 2025
elliottneilclark
force-pushed
the
cfr_node
branch
6 times, most recently
from
January 3, 2025 16:47
30e4dba
to
adc7ef3
Compare
Summary: - Add CFR game state tree that uses a vec as an allocation arena. - Add a base cfr agent that can be filled out - Add a historian that will follow the game for an agent filling out the cfr tree. Test Plan: - Added a test for CFRState - Added doc tests for state
Summary: - Add a simple test Test Plan: - tests are added but ignored for now
elliottneilclark
force-pushed
the
cfr_node
branch
from
January 3, 2025 17:38
adc7ef3
to
a947d4e
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add CFR State, TraversalState, and Agent
This PR doesn't add all the code working yet. It adds the needed base
struct
s andimpl
s that will be needed. It gives the structure for adding CFR.