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/Syntax/SVertexStack.h')
-rw-r--r--moses/Syntax/SVertexStack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/Syntax/SVertexStack.h b/moses/Syntax/SVertexStack.h
index b88c055f4..c088270fc 100644
--- a/moses/Syntax/SVertexStack.h
+++ b/moses/Syntax/SVertexStack.h
@@ -18,7 +18,7 @@ struct SVertexStackContentOrderer {
public:
bool operator()(const boost::shared_ptr<SVertex> &x,
const boost::shared_ptr<SVertex> &y) {
- return x->best->label.score > y->best->label.score;
+ return x->best->label.futureScore > y->best->label.futureScore;
}
};