a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/gapCalc.c src/lib/gapCalc.c index ec37148..81a5114 100644 --- src/lib/gapCalc.c +++ src/lib/gapCalc.c @@ -1,23 +1,22 @@ /* gapCalc - Stuff to calculate complex (but linear) gap costs quickly, * and read specifications from a file. */ #include "common.h" #include "linefile.h" #include "gapCalc.h" -static char const rcsid[] = "$Id: gapCalc.c,v 1.4 2006/06/18 23:09:36 kate Exp $"; struct gapCalc /* A structure that bundles together stuff to help us * calculate gap costs quickly. */ { int smallSize; /* Size of tables for doing quick lookup of small gaps. */ int *qSmall; /* Table for small gaps in q; */ int *tSmall; /* Table for small gaps in t. */ int *bSmall; /* Table for small gaps in either. */ int *longPos;/* Table of positions to interpolate between for larger gaps. */ double *qLong; /* Values to interpolate between for larger gaps in q. */ double *tLong; /* Values to interpolate between for larger gaps in t. */ double *bLong; /* Values to interpolate between for larger gaps in both. */ int longCount; /* Number of long positions overall in longPos. */ int qPosCount; /* Number of long positions in q. */