diff --git a/CHANGELOG.md b/CHANGELOG.md index f290fba..a82f7a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ### Change Log +#### 1.9 + +* Reduce hash table by 30%, to under 140kB. + #### 1.8.1 * Simplify flush rank key and look-up. diff --git a/CMakeLists.txt b/CMakeLists.txt index deda241..85c92ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,8 +5,8 @@ project(${PROJECT_NAME}) # Versioning. set(SK_POKER_EVAL_VERSION_MAJOR 1) -set(SK_POKER_EVAL_VERSION_MINOR 8) -set(SK_POKER_EVAL_VERSION_PATCH 1) +set(SK_POKER_EVAL_VERSION_MINOR 9) +set(SK_POKER_EVAL_VERSION_PATCH 0) # Get the current commit. execute_process( diff --git a/README.md b/README.md index fee8336..7d0e938 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ Taking v1.1 as the base line, the sampled relative throughput of random [SevenEv | [1.7.1](https://github.com/kennethshackleton/SKPokerEval/releases/tag/v1.7.1) |               1.57 | Reduce the rank hash table.      | | [1.8](https://github.com/kennethshackleton/SKPokerEval/releases/tag/v1.8) |               1.93 | Index cards by bytes.       | | [1.8.1](https://github.com/kennethshackleton/SKPokerEval/releases/tag/v1.8.1) |               2.04 | Simplify flush key. Smaller offset table. | +| [1.9](https://github.com/kennethshackleton/SKPokerEval/releases/tag/v1.9) |               2.04 | Reduce the hash table. | ## I want to contribute, how might I profile my change?