From 22197e06665881e14ddaede2abf20ac9af60903c Mon Sep 17 00:00:00 2001 From: Jean-loup Gailly Date: Thu, 22 Mar 2012 09:26:05 +0100 Subject: [PATCH] MAX_PATTERN_DIST: 6 -> 7 This does not make a measureable difference against Fuego but could be helpful against humans. --- patternsp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patternsp.h b/patternsp.h index f47cffe..d572eb4 100644 --- a/patternsp.h +++ b/patternsp.h @@ -15,7 +15,7 @@ * feature implementation in the General Pattern Matcher (pattern.[ch]). */ /* Maximum spatial pattern diameter. */ -#define MAX_PATTERN_DIST 6 +#define MAX_PATTERN_DIST 7 /* Maximum number of points in spatial pattern (upper bound). * TODO: Better upper bound to save more data. */ #define MAX_PATTERN_AREA (MAX_PATTERN_DIST*MAX_PATTERN_DIST) -- 2.11.4.GIT