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:
authorRico Sennrich <rico.sennrich@gmx.ch>2014-04-04 18:54:48 +0400
committerRico Sennrich <rico.sennrich@gmx.ch>2014-04-04 18:54:48 +0400
commit395285d879e63042e29e3ad3a7c71a9bf16aa586 (patch)
tree9d08fc314f0a91fe5e6a9ddaa7d261056f22ed03 /search/applied.hh
parent59098ac66492bd62f40813b72e0aadca3963caf1 (diff)
more logging for incremental chart search
Diffstat (limited to 'search/applied.hh')
-rw-r--r--search/applied.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/search/applied.hh b/search/applied.hh
index bd659e5c0..8130e243d 100644
--- a/search/applied.hh
+++ b/search/applied.hh
@@ -24,9 +24,10 @@ template <class Below> class GenericApplied : public Header {
*child_out = Below(part->End());
}
- GenericApplied(void *location, Score score, Arity arity, Note note) : Header(location, arity) {
+ GenericApplied(void *location, Score score, Arity arity, Note note, Moses::WordsRange range) : Header(location, arity) {
SetScore(score);
SetNote(note);
+ SetRange(range);
}
explicit GenericApplied(History from) : Header(from) {}