Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
mikea committed Nov 28, 2024
1 parent 5770609 commit 9075965
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "bridgitte"
version = "0.1.0"
edition = "2021"
license = "GNU GPLv3"
license = "GPL-3.0"
description = "Contract bridge double dummy solver"

[dependencies]
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,15 @@ Important details:
- Trumps (if any) are always Spades.
- All cards are promoted after every trick
- Cards are not removed from the deck until the full trick is played.

## Performance

As of Nov 2024 bridgitte is ~100 time slower than state of the art.
It takes seconds to evaluate "fast" positions and minutes for
"slow" ones.

The following algorithm improvements will probably speed things up:

- quick tricks is applied only at the beginning of the round
- transposition table lookup is linear
- there's no move ordering

0 comments on commit 9075965

Please sign in to comment.