X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=hashtable.h;h=c09b3ff3e77f344f1dd3fa8ab0f4685be5801b87;hb=4fa31aac91303266f4c87a6cd5d60cbab34135db;hp=5b0086f24282393b47cdb15ac9377ba3928b8178;hpb=f5305a99cba598d0de55358df103439831dd1eb2;p=model-checker.git diff --git a/hashtable.h b/hashtable.h index 5b0086f..c09b3ff 100644 --- a/hashtable.h +++ b/hashtable.h @@ -12,8 +12,9 @@ #include "common.h" /** - * Hashtable linked node class, for chained storage of hash table conflicts. By - * default it is snapshotting, but you can pass in your own allocation + * @brief HashTable linked node class, for chained storage of hash table conflicts + * + * By default it is snapshotting, but you can pass in your own allocation * functions. * * @tparam _Key Type name for the key @@ -33,8 +34,10 @@ struct hashlistnode { }; /** - * Hashtable class. By default it is snapshotting, but you can pass in your own - * allocation functions. + * @brief A simple, custom hash table + * + * By default it is snapshotting, but you can pass in your own allocation + * functions. * * @tparam _Key Type name for the key * @tparam _Val Type name for the values to be stored