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-05-22 15:03:00 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-05-22 15:03:00 +0400
commit112bcdc925401388466169869bbefcae3a0b78a0 (patch)
tree1aae65820bbe9739f183e76e75db9aa2cefdbc25 /moses/TreeInput.cpp
parentf4a75b30f7d275004c0ac41f10584a0985866e28 (diff)
Make Phrase::CreateFromString() more efficient
Diffstat (limited to 'moses/TreeInput.cpp')
-rw-r--r--moses/TreeInput.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/TreeInput.cpp b/moses/TreeInput.cpp
index 23ab8427e..ba4195ca8 100644
--- a/moses/TreeInput.cpp
+++ b/moses/TreeInput.cpp
@@ -169,7 +169,7 @@ bool TreeInput::ProcessAndStripXMLTags(string &line, std::vector<XMLParseOutput>
for (size_t i=0; i<altTexts.size(); ++i) {
// set target phrase
TargetPhrase targetPhrase;
- targetPhrase.CreateFromString(Output, outputFactorOrder,altTexts[i],factorDelimiter);
+ targetPhrase.CreateFromString(Output, outputFactorOrder,altTexts[i],factorDelimiter, NULL);
// set constituent label
string targetLHSstr;