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-18 08:23:22 +0400
committerHieu Hoang <hieuhoang@gmail.com>2013-09-18 08:23:22 +0400
commita4f5879fef2d7150b9e17f32937c2d54ff7eda2f (patch)
treeba768449338e97b3cbd813da808774823cf29b5a /moses/ChartManager.h
parent68974c9f20bd0bfe36582f3b5615c24e4bffc489 (diff)
take out -constraint from Parameter. Now handled exclusively in FF
Diffstat (limited to 'moses/ChartManager.h')
-rw-r--r--moses/ChartManager.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/moses/ChartManager.h b/moses/ChartManager.h
index 4fae5d7ee..a7c2174d4 100644
--- a/moses/ChartManager.h
+++ b/moses/ChartManager.h
@@ -59,7 +59,6 @@ private:
std::auto_ptr<SentenceStats> m_sentenceStats;
clock_t m_start; /**< starting time, used for logging */
unsigned m_hypothesisId; /* For handing out hypothesis ids to ChartHypothesis */
- const Phrase *m_constraint;
ChartParser m_parser;
@@ -101,9 +100,6 @@ public:
unsigned GetNextHypoId() {
return m_hypothesisId++;
}
-
- const Phrase *GetConstraint() const
- { return m_constraint; }
};
}