b-inary / desktop-postflop

[Development suspended] Advanced open-source Texas Hold'em GTO solver with optimized performance
GNU Affero General Public License v3.0
215 stars 52 forks source link
game-theory gto poker solver texas-holdem texas-holdem-poker

Desktop Postflop

[!IMPORTANT] As of October 2023, I have started developing a poker solver as a business and have decided to suspend development of this open-source project. See this issue for more information.


Desktop Postflop is a free, open-source GTO solver for Texas hold'em poker.

This is a port of WASM Postflop to a native desktop application using the Tauri framework. Since WASM Postflop works on web browsers, it is more suitable for casual use. However, if you want to use the solver for more serious purposes, please consider trying Desktop Postflop.

Related repositories

Comparison to WASM Postflop

See the WASM Postflop repository for more detailed comparisons, including some commercial solvers.

Supported environments

Download

You can download the app from the GitHub releases page.

Uninstall

On Windows, please remove the following folder after the regular uninstallation to completely uninstall Desktop Postflop:

C:\Users\<username>\AppData\Local\b-inary.desktop-postflop

Build

Rust and Node.js need to be installed to build. On Linux, you will also need to install some dependencies; please see the Tauri documentation for details. For better performance, we also recommend installing the Rust nightly channel:

$ rustup install nightly
$ rustup default nightly

Then clone this reporitory and run the following commands:

$ npm install
$ npm run tauri build

If the build was successful, you should be able to find the application in the src-tauri/target/release/bundle/ directory.

If you want to use stable Rust instead of nightly Rust, please modify the following line in src-tauri/Cargo.toml (performance will be sacrificed):

[dependencies]
...
- postflop-solver = { git = "https://github.com/b-inary/postflop-solver", features = ["custom-alloc"] }
+ postflop-solver = { git = "https://github.com/b-inary/postflop-solver" }

Roadmap (in order of priority)

License

Copyright (C) 2022 Wataru Inariba

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.