987241ea99c99b93aea51bb63bdf579f927e9d2b
kent
  Wed Oct 7 13:46:09 2015 -0700
Fixing copyright on some old essentially public domain files.

diff --git src/inc/hmmstats.h src/inc/hmmstats.h
index 7db9bde..e42e872 100644
--- src/inc/hmmstats.h
+++ src/inc/hmmstats.h
@@ -1,22 +1,21 @@
-/*****************************************************************************
- * Copyright (C) 2000 Jim Kent.  This source code may be freely used         *
- * for personal, academic, and non-profit purposes.  Commercial use          *
- * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) *
- *****************************************************************************/
 /* hmmstats.h - Stuff for doing statistical analysis in general and 
- * hidden Markov models in particular. */
+ * hidden Markov models in particular. 
+ * 
+ * This file is copyright 2000 Jim Kent, but license is hereby
+ * granted for all use - public, private or commercial. */
+
 #ifndef HMMSTATS_H
 #define HMMSTATS_H
 
 int scaledLog(double val);
 /* Return scaled log of val. */
 
 #define logScaleFactor 1000
 /* Amount we scale logs by. */
 
 double simpleGaussean(double x);
 /* Gaussean distribution with standard deviation 1 and mean 0. */
 
 double gaussean(double x, double mean, double sd);
 /* Gaussean distribution with mean and standard deviation at point x  */