Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hash.h « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 227f3b90ac6d676ca9496c52438b8db6a818d870 (plain)
1
2
3
4
5
6
7
8
#ifndef moses_hash_h
#define moses_hash_h

// taken from burtleburtle.net/bob/hash/doobs.html
unsigned int quick_hash(register const char *k, register unsigned int length, register unsigned int initval);

#endif