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/PDTAimp.h')
-rw-r--r--moses/src/PDTAimp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/moses/src/PDTAimp.h b/moses/src/PDTAimp.h
index 172c4862c..7a1c40cae 100644
--- a/moses/src/PDTAimp.h
+++ b/moses/src/PDTAimp.h
@@ -236,11 +236,11 @@ public:
std::vector<float> scores;
Phrase src;
- State() : range(0,0),scores(0),src(Input, ARRAY_SIZE_INCR) {}
+ State() : range(0,0),scores(0),src(ARRAY_SIZE_INCR) {}
State(Position b,Position e,const PPtr& v,const std::vector<float>& sv=std::vector<float>(0))
- : ptr(v),range(b,e),scores(sv),src(Input, ARRAY_SIZE_INCR) {}
+ : ptr(v),range(b,e),scores(sv),src(ARRAY_SIZE_INCR) {}
State(Range const& r,const PPtr& v,const std::vector<float>& sv=std::vector<float>(0))
- : ptr(v),range(r),scores(sv),src(Input, ARRAY_SIZE_INCR) {}
+ : ptr(v),range(r),scores(sv),src(ARRAY_SIZE_INCR) {}
Position begin() const {
return range.first;