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/Syntax/S2T/RuleTrieCYKPlus.cpp')
-rw-r--r--moses/Syntax/S2T/RuleTrieCYKPlus.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/moses/Syntax/S2T/RuleTrieCYKPlus.cpp b/moses/Syntax/S2T/RuleTrieCYKPlus.cpp
index 7c8d08864..68da5f5b7 100644
--- a/moses/Syntax/S2T/RuleTrieCYKPlus.cpp
+++ b/moses/Syntax/S2T/RuleTrieCYKPlus.cpp
@@ -86,11 +86,11 @@ const RuleTrieCYKPlus::Node *RuleTrieCYKPlus::Node::GetNonTerminalChild(
return (p == m_nonTermMap.end()) ? NULL : &p->second;
}
-TargetPhraseCollection::shared_ptr
+TargetPhraseCollection::shared_ptr
RuleTrieCYKPlus::
-GetOrCreateTargetPhraseCollection(const Phrase &source,
- const TargetPhrase &target,
- const Word *sourceLHS)
+GetOrCreateTargetPhraseCollection(const Phrase &source,
+ const TargetPhrase &target,
+ const Word *sourceLHS)
{
Node &currNode = GetOrCreateNode(source, target, sourceLHS);
return currNode.GetTargetPhraseCollection();