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:
authorHieu Hoang <hieu@hoang.co.uk>2013-08-02 21:24:36 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-08-02 21:24:36 +0400
commitd39573763934d8f6bbede0d346ab497b1488cc07 (patch)
tree71e641353c281946e8037be404c6b3f756002e0a /moses/ChartParser.h
parentae2e2c6d834a8d9ec00895bc282b8f6fd886ddde (diff)
minor cleanup
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);