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/hg/oneShot/cacheMergedRanges/rbmTree.h src/hg/oneShot/cacheMergedRanges/rbmTree.h index 6776bf7..23b67c8 100644 --- src/hg/oneShot/cacheMergedRanges/rbmTree.h +++ src/hg/oneShot/cacheMergedRanges/rbmTree.h @@ -1,25 +1,25 @@ /* rbmTree - Red-Black Tree with Merging of overlapping values - * a type of binary tree which automatically keeps itself relatively balanced * during inserts and deletions. * original author: Shane Saunders * adapted into local conventions: Jim Kent * extended to support merging of overlaps: Angie Hinrichs */ /* Copyright (C) 2004 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. */ #ifndef RBMTREE_H #define RBMTREE_H /* Use same color and node structure as regular (not merging) rbTree: */ #include "rbTree.h" /* Comparison makes an extra distinction: instead of equality, there's * now overlap which is either partial or complete: */ typedef enum { RBMT_LESS, RBMT_GREATER, RBMT_COMPLETE, RBMT_PARTIAL } rbmTreeCompareResult;