From 3427ec15a732ee0ff9faf8f58ec6cfce95021ac5 Mon Sep 17 00:00:00 2001 From: Urban Hafner Date: Tue, 23 Jun 2015 13:27:54 +0200 Subject: [PATCH 1/4] Updated CHANGELOG for 0.2.3 --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 691b5f74..d351cba2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 0.2.3 [☰](https://github.com/ujh/iomrascalai/compare/0.2.2...master) + +* Playout the aftermath by default on CGOS +* Additional tests for the UCT tree expansion +* Play in the middle of big eyes during playouts +* Resign lost games faster (to save time) + +### Performance + ## 0.2.2 [☰](https://github.com/ujh/iomrascalai/compare/0.2.1...0.2.2) * A two liberty solver (can prove if a group with up to two stones is From 9f3a6bc398be8bca524d597c930ff6f3786d9f3a Mon Sep 17 00:00:00 2001 From: Urban Hafner Date: Tue, 23 Jun 2015 13:28:36 +0200 Subject: [PATCH 2/4] Set version to 0.2.3 --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/version.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7dd594b1..3fa9db37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "iomrascalai" -version = "0.2.2" +version = "0.2.3" dependencies = [ "enum_primitive 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "getopts 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 1834b7eb..77cccbcc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ description = "An AI for the game of Go" name = "iomrascalai" -version = "0.2.2" +version = "0.2.3" authors = ["Urban Hafner ", "Thomas Poinsot ", "Igor Polyakov "] diff --git a/src/version.rs b/src/version.rs index 269d8c76..c010aacb 100644 --- a/src/version.rs +++ b/src/version.rs @@ -20,5 +20,5 @@ ************************************************************************/ pub fn version() -> &'static str { - "0.2.2" + "0.2.3" } From 53be7616cbdec77ac6b38c7dbf9235e88e29e0da Mon Sep 17 00:00:00 2001 From: Urban Hafner Date: Sat, 27 Jun 2015 14:22:20 +0200 Subject: [PATCH 3/4] Add benchmark results for 0.2.3 to the CHANGELOG --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d351cba2..0e438159 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ ### Performance +After running 200 games on 9x9 with komi 6.5 and a time limit of 5 +minutes (sudden death) the win rate against GnuGo 3.8 level 0 was **75.5% +± 3%** for the default engine with 8 threads. + +After running 200 games on 13x13 with komi 6.5 and a time limit of 10 +minutes (sudden death) the win rate against GnuGo 3.8 level 0 was **6% +± 1.7%** for the default engine with 8 threads. + ## 0.2.2 [☰](https://github.com/ujh/iomrascalai/compare/0.2.1...0.2.2) * A two liberty solver (can prove if a group with up to two stones is From 52a8fb30f732f549b7cc16fe1f728fd6d2963ecb Mon Sep 17 00:00:00 2001 From: Urban Hafner Date: Sun, 28 Jun 2015 13:19:34 +0200 Subject: [PATCH 4/4] Don't mention internal changes in the changelog --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e438159..4d6aa64c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,6 @@ ## 0.2.3 [☰](https://github.com/ujh/iomrascalai/compare/0.2.2...master) * Playout the aftermath by default on CGOS -* Additional tests for the UCT tree expansion * Play in the middle of big eyes during playouts * Resign lost games faster (to save time)