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:
Diffstat (limited to 'moses/ChartParser.h')
-rw-r--r--moses/ChartParser.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/moses/ChartParser.h b/moses/ChartParser.h
index dde0c1e49..d80296771 100644
--- a/moses/ChartParser.h
+++ b/moses/ChartParser.h
@@ -73,10 +73,8 @@ private:
std::vector<ChartRuleLookupManager*> m_ruleLookupManagers;
InputType const& m_source; /**< source sentence to be translated */
- InputPathList m_phraseDictionaryQueue;
-
- typedef std::vector< std::vector<InputPath*> > TargetPhraseMatrix;
- TargetPhraseMatrix m_targetPhrasesfromPt; /*< contains translation options */
+ typedef std::vector< std::vector<InputPath*> > InputPathMatrix;
+ InputPathMatrix m_inputPathMatrix;
void CreateInputPaths(const InputType &input);
InputPath &GetInputPath(size_t startPos, size_t endPos);