Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 1006 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 1006 Bytes

OpenSolver

Open source postflop solver for Texas Hold'em Poker written in Rust with UPI (Universal Poker Interface) compatibility. Algorithm used is Discounted CFR (DCFR). First project used to learn Rust.

Performance

Compared to commercial solvers, it is about 2x slower for rainbow flops (three distinct suits) and even worse for two tone and monotone flops, due to isomorphism not being correctly implemented.

TODOs

Resources

[1] DCFR algorithm: https://arxiv.org/pdf/1809.04040.pdf

[2] c++ Poker Solver: https://github.com/Fossana/cplusplus-cfr-poker-solver Current rust code base was heavily based on this code