diff options
author | Chris Dyer <redpony@gmail.com> | 2010-02-18 22:34:17 -0500 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2010-02-18 22:34:17 -0500 |
commit | 3a7bca942d838f945c1cd0cbe5977e20c61ebc2d (patch) | |
tree | a713b450318143a1042d47d4ab73943c9931ff90 /decoder/lextrans.h | |
parent | 4d47dbd7da0434de67ac619392d516c678e1f2ca (diff) |
check in modified ones too
Diffstat (limited to 'decoder/lextrans.h')
-rw-r--r-- | decoder/lextrans.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/decoder/lextrans.h b/decoder/lextrans.h index 99362c81..9920f79c 100644 --- a/decoder/lextrans.h +++ b/decoder/lextrans.h @@ -1,18 +1,18 @@ -#ifndef _LEXCRF_H_ -#define _LEXCRF_H_ +#ifndef _LEXTrans_H_ +#define _LEXTrans_H_ #include "translator.h" #include "lattice.h" -struct LexicalCRFImpl; -struct LexicalCRF : public Translator { - LexicalCRF(const boost::program_options::variables_map& conf); +struct LexicalTransImpl; +struct LexicalTrans : public Translator { + LexicalTrans(const boost::program_options::variables_map& conf); bool Translate(const std::string& input, SentenceMetadata* smeta, const std::vector<double>& weights, Hypergraph* forest); private: - boost::shared_ptr<LexicalCRFImpl> pimpl_; + boost::shared_ptr<LexicalTransImpl> pimpl_; }; #endif |