From 69e96eaea9561961f99128b0e70839711c7b8d61 Mon Sep 17 00:00:00 2001 From: ZhuangYumin Date: Thu, 28 Sep 2023 12:56:05 +0800 Subject: [PATCH] adjust defualt_probability to 0.06 --- src/include/client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/client.h b/src/include/client.h index 791c9b4..812f6e2 100644 --- a/src/include/client.h +++ b/src/include/client.h @@ -439,7 +439,7 @@ std::pair SimpleGuess() { using namespace Client; // std::cout << "SimpleGuess" << std::endl; std::vector probability[max_size][max_size]; - double default_probability = 0.18; + double default_probability = 0.06; int total_known = 0, total_known_with_mine = 0; for (int i = 0; i < rows; i++) for (int j = 0; j < columns; j++)