[svn] [2774] Changed a couple constants in sputnik, as per Guru.
Revision: 2774 Author: nate Date: 2008-10-10 14:27:43 -0400 (Fri, 10 Oct 2008) Log Message: ----------- Changed a couple constants in sputnik, as per Guru. Modified Paths: -------------- dependencies/sputnik/sputnik.c Modified: dependencies/sputnik/sputnik.c =================================================================== --- dependencies/sputnik/sputnik.c 2008-09-24 14:26:07 UTC (rev 2773) +++ dependencies/sputnik/sputnik.c 2008-10-10 18:27:43 UTC (rev 2774) @@ -53,9 +53,9 @@ /* this is the point score for each exact match */ #define EXACT_MATCH_POINTS 1 /* this is the point score for a mismatch, insertion or deletion */ -#define ERROR_MATCH_POINTS -6 +#define ERROR_MATCH_POINTS -100 /* this is the minimum score required to be considered a match */ -#define MATCH_MIN_SCORE 8 +#define MATCH_MIN_SCORE 4 /* this is the low score at which we stop trying */ #define MATCH_FAIL_SCORE -1 /* this is the max recursion depth we try to recover errors */
participants (1)
-
nate@bx.psu.edu