mosesdecoder/mert/TER/infosHasher.h

55 lines
1.5 KiB
C
Raw Permalink Normal View History

2014-08-29 16:46:56 +04:00
/*********************************
tercpp: an open-source Translation Edit Rate (TER) scorer tool for Machine Translation.
2014-08-29 16:46:56 +04:00
Copyright 2010-2013, Christophe Servan, LIUM, University of Le Mans, France
Contact: christophe.servan@lium.univ-lemans.fr
The tercpp tool and library are free software: you can redistribute it and/or modify it
2015-02-19 15:27:23 +03:00
under the terms of the GNU Lesser General Public License as published by
2015-09-26 00:20:09 +03:00
the Free Software Foundation, either version 2.1 of the licence, or
2014-08-29 16:46:56 +04:00
(at your option) any later version.
This program and library are distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
**********************************/
#ifndef __INFOSHASHER_H__
#define __INFOSHASHER_H__
#include <string>
2014-08-29 16:46:56 +04:00
// #include <ext/hash_map>
#include <cstdio>
#include <iostream>
2014-08-29 16:46:56 +04:00
#include <sstream>
#include <vector>
2014-08-29 16:46:56 +04:00
#include "tools.h"
using namespace std;
2015-02-16 21:34:41 +03:00
namespace TERCPPNS_HashMapSpace
{
2015-02-19 15:27:23 +03:00
class infosHasher
{
private:
long m_hashKey;
string m_key;
vector<int> m_value;
public:
infosHasher ( long cle, string cleTxt, vector<int> valueVecInt );
long getHashKey();
string getKey();
vector<int> getValue();
void setValue ( vector<int> value );
string toString();
};
2014-08-29 16:46:56 +04:00
}
#endif