From 9d14d911fe5735e784847644624259c07e31feae Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 30 May 2002 19:46:07 +0000 Subject: [PATCH] doc --- src/libCom/cxxTemplates/resourceLib.h | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/src/libCom/cxxTemplates/resourceLib.h b/src/libCom/cxxTemplates/resourceLib.h index c2b4c4a54..406208a29 100644 --- a/src/libCom/cxxTemplates/resourceLib.h +++ b/src/libCom/cxxTemplates/resourceLib.h @@ -5,12 +5,15 @@ * of any base resource type and any resource identifier type. Fast * indexing is implemented with a hash lookup. The identifier type * implements the hash algorithm (or derives from one of the supplied - * identifier types which provide a hashing routine). + * identifier types which provide a hashing routine). The table expands + * dynamically depending on load, and without introducing non-determanistic + * latency. * * Unsigned integer and string identifier classes are supplied here. * - * Author Jeffrey O. Hill - * (string hash alg by Marty Kraimer and Peter K. Pearson) + * Authors Jeffrey O. Hill + * Marty Kraimer (string hash algorithm) + * influenced by papers by Peter K. Pearson and Per-Ake Larson * * johill@lanl.gov * 505 665 1831 @@ -43,13 +46,6 @@ * */ -// -// To Do: -// 1) Add a member function that sets the size of the hash table. -// Dont allocate storage for the hash table until they insert -// the first item. -// - #ifndef INCresourceLibh #define INCresourceLibh