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/RuleCubeQueue.cpp')
-rw-r--r--moses/RuleCubeQueue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/RuleCubeQueue.cpp b/moses/RuleCubeQueue.cpp
index e4a13c528..1942a29f7 100644
--- a/moses/RuleCubeQueue.cpp
+++ b/moses/RuleCubeQueue.cpp
@@ -50,7 +50,7 @@ ChartHypothesis *RuleCubeQueue::Pop()
// pop the most promising item from the cube and get the corresponding
// hypothesis
RuleCubeItem *item = cube->Pop(m_manager);
- if (StaticData::Instance().options().cube.lazy_scoring) {
+ if (StaticData::Instance().options()->cube.lazy_scoring) {
item->CreateHypothesis(cube->GetTranslationOption(), m_manager);
}
ChartHypothesis *hypo = item->ReleaseHypothesis();