From 3f6de721b089823ac15f3d1ad786e6b479dee4d0 Mon Sep 17 00:00:00 2001 From: redpony Date: Wed, 23 Jun 2010 18:29:55 +0000 Subject: use centralized make git-svn-id: https://ws10smt.googlecode.com/svn/trunk@11 ec762483-ff6d-05da-a07a-a48fb63a330f --- decoder/sampler.h | 2 ++ decoder/tdict.cc | 4 ++++ decoder/tdict.h | 1 + 3 files changed, 7 insertions(+) (limited to 'decoder') diff --git a/decoder/sampler.h b/decoder/sampler.h index e5840f41..4d0b2e64 100644 --- a/decoder/sampler.h +++ b/decoder/sampler.h @@ -88,10 +88,12 @@ typedef RandomNumberGenerator MT19937; class SampleSet { public: const prob_t& operator[](int i) const { return m_scores[i]; } + prob_t& operator[](int i) { return m_scores[i]; } bool empty() const { return m_scores.empty(); } void add(const prob_t& s) { m_scores.push_back(s); } void clear() { m_scores.clear(); } size_t size() const { return m_scores.size(); } + void resize(int size) { m_scores.resize(size); } std::vector m_scores; }; diff --git a/decoder/tdict.cc b/decoder/tdict.cc index c00d20b8..ac590bd8 100644 --- a/decoder/tdict.cc +++ b/decoder/tdict.cc @@ -10,6 +10,10 @@ Vocab* TD::dict_ = new Vocab; static const string empty; static const string space = " "; +unsigned int TD::NumWords() { + return dict_->numWords(); +} + WordID TD::Convert(const std::string& s) { return dict_->addWord((VocabString)s.c_str()); } diff --git a/decoder/tdict.h b/decoder/tdict.h index 31f66367..fd77543d 100644 --- a/decoder/tdict.h +++ b/decoder/tdict.h @@ -23,6 +23,7 @@ struct TD { } return (dest - buffer); } + static unsigned int NumWords(); static WordID Convert(const std::string& s); static const char* Convert(const WordID& w); }; -- cgit v1.2.3