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 <hieuhoang@gmail.com>2012-11-14 20:43:06 +0400
committerHieu Hoang <hieuhoang@gmail.com>2012-11-14 20:43:06 +0400
commit4e9d2f3ae12da225b81861b5bbdf73384b0980b3 (patch)
tree8c175b11adbb513539a1813a22d5ca8eb8e427b5 /moses/StaticData.cpp
parent065597dc9fe44cc30a04059db176a9610ae9f6e5 (diff)
delete print-alignment-info arg. Not used anymore
Diffstat (limited to 'moses/StaticData.cpp')
-rw-r--r--moses/StaticData.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/moses/StaticData.cpp b/moses/StaticData.cpp
index 212dd300e..a255b72d8 100644
--- a/moses/StaticData.cpp
+++ b/moses/StaticData.cpp
@@ -175,15 +175,10 @@ bool StaticData::LoadData(Parameter *parameter)
//word-to-word alignment
SetBooleanParameter( &m_UseAlignmentInfo, "use-alignment-info", false );
- SetBooleanParameter( &m_PrintAlignmentInfo, "print-alignment-info", false );
SetBooleanParameter( &m_PrintAlignmentInfoNbest, "print-alignment-info-in-n-best", false );
SetBooleanParameter( &m_outputHypoScore, "output-hypo-score", false );
- if (!m_UseAlignmentInfo && m_PrintAlignmentInfo) {
- TRACE_ERR("--print-alignment-info should only be used together with \"--use-alignment-info true\". Continue forcing to false.\n");
- m_PrintAlignmentInfo=false;
- }
if (!m_UseAlignmentInfo && m_PrintAlignmentInfoNbest) {
TRACE_ERR("--print-alignment-info-in-n-best should only be used together with \"--use-alignment-info true\". Continue forcing to false.\n");
m_PrintAlignmentInfoNbest=false;