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