mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 05:55:02 +03:00
8c3b82e596
This change might be useful to avoid duplicating the names. The reason is that although MERT programs are standalone applications, some header files such as data.h and point.h have common guard macro names like "DATA_H" and "POINT_H", and this is not good naming conventions when you want to include external headers. Some files actually include headers in Moses and KenLM's util.
36 lines
621 B
C++
36 lines
621 B
C++
#include "infosHasher.h"
|
|
// The following class defines a hash function for strings
|
|
|
|
|
|
using namespace std;
|
|
|
|
namespace HashMapSpace
|
|
{
|
|
infosHasher::infosHasher (long cle,string cleTxt, vector<int> valueVecInt )
|
|
{
|
|
m_hashKey=cle;
|
|
m_key=cleTxt;
|
|
m_value=valueVecInt;
|
|
}
|
|
// infosHasher::~infosHasher(){};*/
|
|
long infosHasher::getHashKey()
|
|
{
|
|
return m_hashKey;
|
|
}
|
|
string infosHasher::getKey()
|
|
{
|
|
return m_key;
|
|
}
|
|
vector<int> infosHasher::getValue()
|
|
{
|
|
return m_value;
|
|
}
|
|
void infosHasher::setValue ( vector<int> value )
|
|
{
|
|
m_value=value;
|
|
}
|
|
|
|
|
|
// typedef stdext::hash_map<std::string,string, stringhasher> HASH_S_S;
|
|
}
|