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>2013-09-17 17:06:17 +0400
committerHieu Hoang <hieuhoang@gmail.com>2013-09-17 17:06:17 +0400
commit5ebb81a17af4008768f8fd93d7ad31442325f47c (patch)
treece039914c5be207f06f663d944767e0b0eaf222d /moses/BitmapContainer.cpp
parent764684bb6f7b00bad9c79f0dc6d88bdc8093d20f (diff)
constrained decoding FF works for both pb and hiero
Diffstat (limited to 'moses/BitmapContainer.cpp')
-rw-r--r--moses/BitmapContainer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/BitmapContainer.cpp b/moses/BitmapContainer.cpp
index 422bd3ecc..5a90b8a74 100644
--- a/moses/BitmapContainer.cpp
+++ b/moses/BitmapContainer.cpp
@@ -197,7 +197,7 @@ BackwardsEdge::Initialize()
Hypothesis *BackwardsEdge::CreateHypothesis(const Hypothesis &hypothesis, const TranslationOption &transOpt)
{
// create hypothesis and calculate all its scores
- Hypothesis *newHypo = hypothesis.CreateNext(transOpt, NULL); // TODO FIXME This is absolutely broken - don't pass null here
+ Hypothesis *newHypo = hypothesis.CreateNext(transOpt); // TODO FIXME This is absolutely broken - don't pass null here
newHypo->Evaluate(m_futurescore);
return newHypo;