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-07-09 19:56:49 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-07-09 19:56:49 +0400
commit958d7ca9b8c44d19f31ed3476fe77b8a31650a2d (patch)
tree0450b28dd4cfe78e9f747ebce336f00cf60ab483 /moses/InputPath.h
parent92163d50913d3d14ae7796e882bf3f6533575b44 (diff)
prefix subphrase optimization for confusion networks
Diffstat (limited to 'moses/InputPath.h')
-rw-r--r--moses/InputPath.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/moses/InputPath.h b/moses/InputPath.h
index 63f09bfa1..934b0fcbe 100644
--- a/moses/InputPath.h
+++ b/moses/InputPath.h
@@ -41,7 +41,7 @@ public:
}
InputPath(const Phrase &phrase, const WordsRange &range, const InputPath *prevNode
- ,const ScoreComponentCollection *inputScore);
+ ,const ScoreComponentCollection *inputScore);
~InputPath();
const Phrase &GetPhrase() const {
@@ -62,8 +62,9 @@ public:
}
const TargetPhraseCollection *GetTargetPhrases(const PhraseDictionary &phraseDictionary) const;
const void *GetPtNode(const PhraseDictionary &phraseDictionary) const;
- const ScoreComponentCollection *GetInputScore() const
- { return m_inputScore; }
+ const ScoreComponentCollection *GetInputScore() const {
+ return m_inputScore;
+ }
};