UtilHash.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef UTIL_HASH_INCLUDED
00015 #define UTIL_HASH_INCLUDED
00016
00017 #include <string>
00018 using namespace std;
00019
00020 string UtilCreateStringHash(const int len,
00021 const double* els,
00022 const int precision = 6);
00023
00024 string UtilCreateStringHash(const int len,
00025 const int* ind,
00026 const double* els,
00027 const int precision = 6);
00028
00029 string UtilCreateStringHash(const int len,
00030 const int* ind,
00031 const double* els,
00032 const char sense,
00033 const double rhs,
00034 const int precision = 6);
00035
00036 #endif