rs-poker icon indicating copy to clipboard operation
rs-poker copied to clipboard

rs-poker is a rust library that includes all of the poker evaluation tools that you need from hand ranking and starting card enumeration to a full agent arena for self learning.

Results 8 rs-poker issues
Sort by recently updated
recently updated
newest added

I request the ranking an Omaha hands. In Omaha Hold'em, four hole card are dealt for players and five cards are dealt on the board. It's evaluated the best five-cards...

Added the clone feature to Deck and FlatDeck

I was trying to share a deck between two threads and I'm running into the issues that neither Deck nor FlatDeck are clone-able. Looking at the source I believe this...

Currently you can parse one range string like ```rust assert_eq!(RangeParser::parse_one("KK+").unwrap().len(), 12) ``` I'd like to have the ability to parse a broader range string, something like `JJ+, A2s+`: ```rust assert_eq!(RangeParser::parse_one("KK+,A2s+").unwrap().len(),...

# feat: counter factual regregret minimization historian This PR adds a historian for a single agent that follows along creating a CFR tree for the current game path. This needs...

A quick prototype of the "interaction with examples" functionality, as far as i understood. I'll flesh things out from here if this seems fine. Not trying to push for a...

Exmple binaries show how to use the code, but they don't allow much input. We should clean up the input and output handling to make them better showcases. ## TODO...

Ello! Sorry you probably have better things to do but I was just wondering how would I run this, I’m not the best as coding and was wondering if there...