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-12 13:35:03 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-08-12 13:35:03 +0400
commitc07d8cb43ffafbeabada014772f60202910f4c09 (patch)
tree3476358ff2d1af0a7d2450fea29c2ac87aed495d /moses/ChartTranslationOptions.h
parent2a240b59b28dae22ae36fb618a4f2a7b267ed29b (diff)
beautify
Diffstat (limited to 'moses/ChartTranslationOptions.h')
-rw-r--r--moses/ChartTranslationOptions.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/moses/ChartTranslationOptions.h b/moses/ChartTranslationOptions.h
index 38698a2ca..f38020117 100644
--- a/moses/ChartTranslationOptions.h
+++ b/moses/ChartTranslationOptions.h
@@ -34,16 +34,18 @@ namespace Moses
class ChartTranslationOption
{
protected:
- const TargetPhrase &m_targetPhrase;
+ const TargetPhrase &m_targetPhrase;
public:
- ChartTranslationOption(const TargetPhrase &targetPhrase);
+ ChartTranslationOption(const TargetPhrase &targetPhrase);
- const TargetPhrase &GetPhrase() const
- { return m_targetPhrase; }
+ const TargetPhrase &GetPhrase() const {
+ return m_targetPhrase;
+ }
- const ScoreComponentCollection &GetScores() const
- { return m_targetPhrase.GetScoreBreakdown(); }
+ const ScoreComponentCollection &GetScores() const {
+ return m_targetPhrase.GetScoreBreakdown();
+ }
};