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:
authorJeroen Vermeulen <jtv@precisiontranslationtools.com>2015-04-30 08:05:11 +0300
committerJeroen Vermeulen <jtv@precisiontranslationtools.com>2015-04-30 08:05:11 +0300
commiteca582410006443d0b101a9ae188e302f34f8a03 (patch)
tree35212762fbe666330205e2a9ef09d16a918d077c /moses/StaticData.h
parent85acdc62b1548863a6db18bebb538406cfcfa038 (diff)
Remove trailing whitespace in C++ files.
Diffstat (limited to 'moses/StaticData.h')
-rw-r--r--moses/StaticData.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/moses/StaticData.h b/moses/StaticData.h
index baaeebafa..438ac0633 100644
--- a/moses/StaticData.h
+++ b/moses/StaticData.h
@@ -476,17 +476,17 @@ public:
// m_searchAlgorithm == SyntaxF2S;
// }
- bool IsSyntax(SearchAlgorithm algo = DefaultSearchAlgorithm) const
+ bool IsSyntax(SearchAlgorithm algo = DefaultSearchAlgorithm) const
{
- if (algo == DefaultSearchAlgorithm)
+ if (algo == DefaultSearchAlgorithm)
algo = m_searchAlgorithm;
return (algo == CYKPlus || algo == ChartIncremental ||
algo == SyntaxS2T || algo == SyntaxT2S ||
algo == SyntaxF2S || algo == SyntaxT2S_SCFG);
}
-
- const ScoreComponentCollection&
- GetAllWeights() const
+
+ const ScoreComponentCollection&
+ GetAllWeights() const
{ return m_allWeights; }
void SetAllWeights(const ScoreComponentCollection& weights) {