From 2f06382fb3eaf60cf5ddce6f14ff749607afc8f4 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Mon, 6 Feb 2017 17:50:51 +0100 Subject: [PATCH] Increase mate score Scores can now run to +/- 15000 centi-Pawn; 8000 was dangerously close to what eval scores could be. --- dropper.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dropper.c b/dropper.c index 5f5e3ea..eb395b9 100644 --- a/dropper.c +++ b/dropper.c @@ -15,7 +15,7 @@ #define OFF 0 #define INVALID 0 -#define INF 8000 +#define INF 15000 #define MAXPLY 100 #define MAXMOVES 500 -- 1.7.0.4