Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ rs-poker is a Rust poker library
### Feature Flags

```toml
default = ["arena", "serde", "omaha"]
default = ["arena", "serde", "omaha", "open-hand-history"]
arena # Multi-agent simulation
serde # JSON serialization
omaha # Omaha (PLO4/PLO5/PLO6/PLO7) hand evaluation
arena-test-util # Testing helpers with approx comparisons
open-hand-history # OHH format support
arena-test-util # Testing helpers with approx comparisons
open-hand-history-test-util # OHH testing helpers
```

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ tikv-jemallocator = { version = "~0.6.0", optional = true, features = [
] }

[features]
default = ["arena", "serde", "omaha"]
default = ["arena", "serde", "omaha", "open-hand-history"]
omaha = []
serde = ["dep:serde", "dep:serde_json"]
arena = [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ Avoids the O(N!) complexity of traditional ICM by simulating all-in confrontatio
| `arena` | Yes | Multi-agent simulation framework, CFR solver |
| `serde` | Yes | JSON serialization for hands, game states, configs |
| `omaha` | Yes | Omaha (PLO4/PLO5/PLO6/PLO7) hand evaluation |
| `open-hand-history` | Yes | Open Hand History format import/export |
| `rsp` | No | CLI binary with all features enabled |
| `open-hand-history` | No | Open Hand History format import/export |
| `arena-test-util` | No | Approximate comparison helpers for tests |
| `open-hand-history-test-util` | No | OHH format testing helpers |

Expand Down
Loading