diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-01-21 04:30:10 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-01-21 04:30:10 -0800 |
commit | 8014f25f6db719fa62336f997963532a14c568f6 (patch) | |
tree | c691ee91a3a2d452a2bd24ac89a8c717beaa7af7 /src/misc/hash/hash.h | |
parent | c44cc5de9429e6b4f1c05045fcf43c9cb96437b5 (diff) | |
download | abc-8014f25f6db719fa62336f997963532a14c568f6.tar.gz abc-8014f25f6db719fa62336f997963532a14c568f6.tar.bz2 abc-8014f25f6db719fa62336f997963532a14c568f6.zip |
Major restructuring of the code.
Diffstat (limited to 'src/misc/hash/hash.h')
-rw-r--r-- | src/misc/hash/hash.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/misc/hash/hash.h b/src/misc/hash/hash.h index 9b5b25d6..6e6c637c 100644 --- a/src/misc/hash/hash.h +++ b/src/misc/hash/hash.h @@ -18,8 +18,8 @@ ***********************************************************************/ -#ifndef __HASH_H__ -#define __HASH_H__ +#ifndef ABC__misc__hash__hash_h +#define ABC__misc__hash__hash_h #ifdef _WIN32 @@ -29,7 +29,7 @@ /// INCLUDES /// //////////////////////////////////////////////////////////////////////// -#include "abc_global.h" +#include "src/misc/util/abc_global.h" #include "hashInt.h" #include "hashFlt.h" @@ -55,7 +55,7 @@ ABC_NAMESPACE_HEADER_START //////////////////////////////////////////////////////////////////////// int Hash_DefaultHashFunc(int key, int nBins) { - return ABC_ABS( ( (key+11)*(key)*7+3 ) % nBins ); + return Abc_AbsInt( ( (key+11)*(key)*7+3 ) % nBins ); } //////////////////////////////////////////////////////////////////////// |