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:
authorUlrich Germann <Ulrich.Germann@gmail.com>2015-11-03 22:36:43 +0300
committerUlrich Germann <Ulrich.Germann@gmail.com>2015-11-03 22:36:43 +0300
commitd773ad428ec65a8496dee51a3f398843fa90cf39 (patch)
treee683cf12e6a5c60fe311e936772d217aeac87caa /moses/XmlOption.cpp
parent9dc31e197be697582cfe724c8292c0e631841570 (diff)
More options cleanup.
Diffstat (limited to 'moses/XmlOption.cpp')
-rw-r--r--moses/XmlOption.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/moses/XmlOption.cpp b/moses/XmlOption.cpp
index 941eb2d24..f79ec32d6 100644
--- a/moses/XmlOption.cpp
+++ b/moses/XmlOption.cpp
@@ -1,6 +1,5 @@
-// $Id$
+// -*- mode: c++; indent-tabs-mode: nil; tab-width:2 -*-
// vim:tabstop=2
-
/***********************************************************************
Moses - factored phrase-based language decoder
Copyright (C) 2006 University of Edinburgh
@@ -159,10 +158,13 @@ vector<string> TokenizeXml(const string& str, const std::string& lbrackStr, cons
* \param lbrackStr xml tag's left bracket string, typically "<"
* \param rbrackStr xml tag's right bracket string, typically ">"
*/
-bool ProcessAndStripXMLTags(string &line, vector<XmlOption*> &res, ReorderingConstraint &reorderingConstraint, vector< size_t > &walls,
- std::vector< std::pair<size_t, std::string> > &placeholders,
- int offset,
- const std::string& lbrackStr, const std::string& rbrackStr)
+bool
+ProcessAndStripXMLTags(AllOptions const& opts, string &line, vector<XmlOption*> &res,
+ ReorderingConstraint &reorderingConstraint,
+ vector< size_t > &walls,
+ std::vector< std::pair<size_t, std::string> > &placeholders,
+ int offset, const std::string& lbrackStr,
+ const std::string& rbrackStr)
{
//parse XML markup in translation line
@@ -440,7 +442,7 @@ bool ProcessAndStripXMLTags(string &line, vector<XmlOption*> &res, ReorderingCon
}
// store translation options into members
- if (staticData.GetXmlInputType() != XmlIgnore) {
+ if (opts.input.xml_policy != XmlIgnore) {
// only store options if we aren't ignoring them
for (size_t i=0; i<altTexts.size(); ++i) {
Phrase sourcePhrase; // TODO don't know what the source phrase is