Updated source code from upstream SVN
[svmtool++.git] / include / nodo.h
blob407fc72a859e306e382e029ab3379e2672d9a237
1 /*
2 * Author: Quentin Pradet
3 * Copyright (C) 2011 CEA LIST
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #ifndef NODO_H
21 #define NODO_H
23 #include "weight.h"
24 #include <stack>
26 struct nodo{
27 nodo() :
28 ord(0),
29 weight(0),
30 weightOld(0),
31 next(NULL),
32 previous(NULL) {}
33 ~nodo() {
34 while(!stackScores.empty()) {
35 delete stackScores.top();
36 stackScores.pop();
40 int ord; // word id
41 std::string wrd; // word (or constant like @CARD if cardinal)
42 std::string realWrd; // real word
43 std::string comment;
44 // to be filled by taggerSumWeight
45 std::string pos, posOld;
46 std::string strScores;
47 long double weight, weightOld;
48 std::stack<weight_node_t*> stackScores;
49 // neighbors in the sentence
50 nodo *next;
51 nodo *previous;
54 #endif