4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/lib/dgRange.c src/lib/dgRange.c
index ed2e33a..cda89bd 100644
--- src/lib/dgRange.c
+++ src/lib/dgRange.c
@@ -1,21 +1,21 @@
 /* dgRange - stuff to tell if a graph which has a range
  * of values associated with each edge is internally consistent.  
  * See comment under bfGraphFromRangeGraph for details. */
 
 /* Copyright (C) 2011 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 
 #include "common.h"
 #include "diGraph.h"
 
 
 struct bfEdge
 /* An edge in a (lightweight) Belman Ford graph. */
    {
    struct bfEdge *next;    /* Pointer to next element. */
    int distance;           /* Distance - may be negative. */
    struct bfVertex *in;    /* Connecting node. */
    struct bfVertex *out;   /* Connecting node. */
    };
 
 struct bfVertex