e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/lib/gapCalc.c src/lib/gapCalc.c
index 81a5114..d811c1b 100644
--- src/lib/gapCalc.c
+++ src/lib/gapCalc.c
@@ -1,18 +1,21 @@
 /* gapCalc - Stuff to calculate complex (but linear) gap costs quickly,
  * and read specifications from a file. */
 
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "linefile.h"
 #include "gapCalc.h"
 
 
 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. */