Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2012-11-15 22:04:07 +0400
committerKenneth Heafield <github@kheafield.com>2012-11-15 22:04:07 +0400
commit9340f9f465a29e7653f9285963bcad0fe4a60ec6 (patch)
tree19d3503d6e0bf7a3dc2f8db744e1083b4c7d2419 /moses/ChartCellLabel.h
parent877ade5327f7a736345f3b88c4294faa061826d6 (diff)
Update incremental search
Diffstat (limited to 'moses/ChartCellLabel.h')
-rw-r--r--moses/ChartCellLabel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses/ChartCellLabel.h b/moses/ChartCellLabel.h
index c44462fcc..9fccf71e9 100644
--- a/moses/ChartCellLabel.h
+++ b/moses/ChartCellLabel.h
@@ -23,7 +23,7 @@
#include "Word.h"
#include "WordsRange.h"
-namespace search { class Vertex; class VertexGenerator; }
+namespace search { class Vertex; }
namespace Moses
{
@@ -41,7 +41,7 @@ class ChartCellLabel
union Stack {
const HypoList *cube; // cube pruning
const search::Vertex *incr; // incremental search after filling.
- search::VertexGenerator *incr_generator; // incremental search during filling.
+ void *incr_generator; // incremental search during filling.
};