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:
authorKenneth Heafield <github@kheafield.com>2013-02-14 17:11:53 +0400
committerKenneth Heafield <github@kheafield.com>2013-02-14 17:11:53 +0400
commit8ef095e8faa81e0c218ecb5229adc1bd5b70fe29 (patch)
treead753593da49eac18bc4ae5c6c96155e040e6a76 /moses/ChartCellLabel.h
parent10012fac15327d564e276a563daf5b12c5d43534 (diff)
Update incremental search, cuts runtime by a third
Diffstat (limited to 'moses/ChartCellLabel.h')
-rw-r--r--moses/ChartCellLabel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/ChartCellLabel.h b/moses/ChartCellLabel.h
index 9fccf71e9..218a512c0 100644
--- a/moses/ChartCellLabel.h
+++ b/moses/ChartCellLabel.h
@@ -40,7 +40,7 @@ class ChartCellLabel
public:
union Stack {
const HypoList *cube; // cube pruning
- const search::Vertex *incr; // incremental search after filling.
+ search::Vertex *incr; // incremental search after filling.
void *incr_generator; // incremental search during filling.
};