Skip to content

Found this forgotten code I wrote ages ago, uploaded here so I don't lose it again

Notifications You must be signed in to change notification settings

Alex-At-Home/OldGameTheoryProjects

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

OldGameTheoryProjects

Found this forgotten C++ code I wrote ages ago, uploaded here so I don't lose it again

It's been long enough that I don't remember all the details but the overall idea was to come up with a very approximate solution to 2-player poker (Texas Hold'em specifically) with the following strategy:

  • Decompose all the different combinations of hands and boards into a tractable set of common situations ("top pair no draw on a board with a flush draw")
  • Map the above situations to a multi-step (step = betting action or street) game where both players have a score of [0,1] (ie hand strength) but also a probability distribution function that describes how their hand will vary with time (eg flush draw will stay at ~0.0 80% of the time, move to ~1.0 20% of the time)
  • Use a variant of fictious play (FP) on this simplified version (for >1 step it's still right at the edge of what FP can calculate in a sensible amount of time as I recall)

There are 2 projects here:

  • BoardAnalyzer is a mostly complete and functioning library that maps specific situations to typical scenarios (and generates probabilities for them)
    • There are some examples included that use the library to solve some very simple simplified games (eg your opponent bets on the flop X% of the time, if your only two options are to fold or raise all-in, what should your range be?)
    • Most of the fun is in CBoardAnalyzer.
  • ZeroOneGames is some pretty complicated code to generate approximate solutions to the "[0, 1]" multi-step game described above, its details are a bit hazy, but it looks like:

About

Found this forgotten code I wrote ages ago, uploaded here so I don't lose it again

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published