a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/dgRange.c src/lib/dgRange.c
index 2c36eba..0c4c6e7 100644
--- src/lib/dgRange.c
+++ src/lib/dgRange.c
@@ -1,23 +1,22 @@
 /* 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. */
 
 #include "common.h"
 #include "diGraph.h"
 
-static char const rcsid[] = "$Id: dgRange.c,v 1.3 2003/05/06 07:33:42 kate Exp $";
 
 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
 /* A node in a (lightweight) Belman Ford graph. */
    {
    int position;               /* Currently assigned position. */
    struct bfEdge *waysOut;     /* Ways out. */