From d5486fb2cf5c97e498755c99b3c0b161f86fbfbb Mon Sep 17 00:00:00 2001 From: Calcitem Date: Sun, 20 Oct 2019 03:05:22 +0800 Subject: [PATCH] =?UTF-8?q?depth:=20=E8=BF=9B=E4=B8=80=E6=AD=A5=E6=8F=90?= =?UTF-8?q?=E5=8D=87=E6=91=86=E5=AD=90=E5=92=8C=E8=B5=B0=E5=AD=90=E7=9A=84?= =?UTF-8?q?=E6=B7=B1=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ai/search.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ai/search.cpp b/src/ai/search.cpp index b77f91bf..9ceb55b2 100644 --- a/src/ai/search.cpp +++ b/src/ai/search.cpp @@ -74,18 +74,18 @@ depth_t AIAlgorithm::changeDepth(depth_t origDepth) #endif const depth_t placingDepthTable[] = { - 6, 15, 16, 17, /* 0 ~ 3 */ - 18, 17, 16, 15, /* 4 ~ 7 */ + 6, 16, 17, 18, /* 0 ~ 3 */ + 19, 18, 18, 17, /* 4 ~ 7 */ 12, 12, 9, 7, 1 /* 8 ~ 12 */ }; const depth_t movingDepthTable[] = { 1, 1, 1, 1, /* 0 ~ 3 */ - 1, 1, 11, 11, /* 4 ~ 7 */ - 11, 11, 11, 11, /* 8 ~ 11 */ - 11, 11, 11, 11, /* 12 ~ 15 */ - 11, 11, 11, 11, /* 16 ~ 19 */ - 12, 12, 13, 14, /* 20 ~ 23 */ + 1, 1, 12, 12, /* 4 ~ 7 */ + 12, 12, 12, 12, /* 8 ~ 11 */ + 12, 12, 12, 12, /* 12 ~ 15 */ + 12, 12, 12, 12, /* 16 ~ 19 */ + 12, 13, 14, 15, /* 20 ~ 23 */ }; #ifdef ENDGAME_LEARNING