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/src/StaticData.cpp')
-rw-r--r--[-rwxr-xr-x]moses/src/StaticData.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/moses/src/StaticData.cpp b/moses/src/StaticData.cpp
index 218be7f2b..6ccb8fb34 100755..100644
--- a/moses/src/StaticData.cpp
+++ b/moses/src/StaticData.cpp
@@ -1397,6 +1397,7 @@ bool StaticData::LoadPhraseTables()
, output
, filePath
, weight
+ , currDict
, maxTargetPhrase[index]
, targetPath, alignmentsFile);
@@ -1551,6 +1552,7 @@ bool StaticData::LoadDecodeGraphs()
DecodeGraph *decodeGraph;
if (m_searchAlgorithm == ChartDecoding) {
size_t maxChartSpan = (decodeGraphInd < maxChartSpans.size()) ? maxChartSpans[decodeGraphInd] : DEFAULT_MAX_CHART_SPAN;
+ cerr << "max-chart-span: " << maxChartSpans[decodeGraphInd] << endl;
decodeGraph = new DecodeGraph(m_decodeGraphs.size(), maxChartSpan);
} else {
decodeGraph = new DecodeGraph(m_decodeGraphs.size());