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:
authorUlrich Germann <Ulrich.Germann@gmail.com>2015-12-12 19:23:37 +0300
committerUlrich Germann <Ulrich.Germann@gmail.com>2015-12-14 01:31:43 +0300
commitbb6e0157aac67e72b4aacbb87405014da552e140 (patch)
tree0fddd3da357960f41450378f48f033596ba34999 /moses/InputPath.h
parentb899ab8175d5bb3733aa65a0658633c86aa2e237 (diff)
Code cleanup and refactoring.
Diffstat (limited to 'moses/InputPath.h')
-rw-r--r--moses/InputPath.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/moses/InputPath.h b/moses/InputPath.h
index 3a1f5e435..a2cbe0087 100644
--- a/moses/InputPath.h
+++ b/moses/InputPath.h
@@ -40,7 +40,8 @@ public:
TargetPhrases;
public:
- ttaskwptr const ttask;
+ // ttaskwptr const ttask;
+ TranslationTask const* ttask;
protected:
const InputPath *m_prevPath;
Phrase m_phrase;
@@ -65,7 +66,7 @@ public:
, m_nextNode(NOT_FOUND) {
}
- InputPath(ttaskwptr const ttask,
+ InputPath(TranslationTask const* ttask, // ttaskwptr const ttask,
Phrase const& phrase,
NonTerminalSet const& sourceNonTerms,
Range const& range,