EncodedInterpretation.hpp
643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* File: interpretation.hpp
* Author: mlenart
*
* Created on November 4, 2013, 3:11 PM
*/
#ifndef INTERPRETATION_HPP
#define INTERPRETATION_HPP
#include <string>
#include <sstream>
#include <iterator>
#include "Tagset.hpp"
using namespace std;
/*
* Lemma in a compressed format (as in an automaton)
*/
struct EncodedLemma {
int suffixToCut;
string suffixToAdd;
};
/*
* Internal representation of an interpretation - with lemma encoded
*/
struct EncodedInterpretation {
EncodedLemma lemma;
int type;
int tag;
int nameClassifier;
int startNode;
int endNode;
};
#endif /* INTERPRETATION_HPP */