diff options
author | Determinant <[email protected]> | 2015-06-10 20:42:10 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-06-10 20:42:10 +0800 |
commit | b818c2562d07a69083377cbc34f2add108e9fa66 (patch) | |
tree | a595ce4f269035951715334d2942d91d42ae236e /common.h | |
parent | c20af45d0756d5d3004105da10e51d42a382ad66 (diff) |
add CombinerLayer to support branches in NN; add MSELayer
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -26,6 +26,7 @@ typedef struct HashMap { HashMap *hashmap_create(size_t size, HashKey_t hfunc, HashMapCmp_t cmp); void *hashmap_getval(HashMap *h, const char *key); void hashmap_setval(HashMap *h, const char *key, void *val); +void hashmap_clear(HashMap *h); size_t bkdr_hash(const char *key); |