From 7c0fb5e9fa8c42220ad14a90c251f5b092ad52b6 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Sun, 17 Feb 2019 13:53:13 +0100 Subject: Improve mm{,2} performance: raise win/lose scores --- ai_mm2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ai_mm2.cpp') diff --git a/ai_mm2.cpp b/ai_mm2.cpp index 93b40b2..843a419 100644 --- a/ai_mm2.cpp +++ b/ai_mm2.cpp @@ -7,8 +7,8 @@ using namespace std; -#define SCORE_WIN 10 -#define SCORE_LOSE (-10) +#define SCORE_WIN 10000 +#define SCORE_LOSE (-10000) #define SCORE_TIE 0 #define INF (1e34) -- cgit v1.2.3-54-g00ecf