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.cc | |
parent | 4d47dbd7da0434de67ac619392d516c678e1f2ca (diff) |
check in modified ones too
Diffstat (limited to 'decoder/lextrans.cc')
-rw-r--r-- | decoder/lextrans.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/decoder/lextrans.cc b/decoder/lextrans.cc index b0e03c69..e7fa1aa1 100644 --- a/decoder/lextrans.cc +++ b/decoder/lextrans.cc @@ -1,4 +1,4 @@ -#include "lexcrf.h" +#include "lextrans.h" #include <iostream> @@ -10,8 +10,8 @@ using namespace std; -struct LexicalCRFImpl { - LexicalCRFImpl(const boost::program_options::variables_map& conf) : +struct LexicalTransImpl { + LexicalTransImpl(const boost::program_options::variables_map& conf) : use_null(conf.count("lexcrf_use_null") > 0), kXCAT(TD::Convert("X")*-1), kNULL(TD::Convert("<eps>")), @@ -95,10 +95,10 @@ struct LexicalCRFImpl { GrammarPtr grammar; }; -LexicalCRF::LexicalCRF(const boost::program_options::variables_map& conf) : - pimpl_(new LexicalCRFImpl(conf)) {} +LexicalTrans::LexicalTrans(const boost::program_options::variables_map& conf) : + pimpl_(new LexicalTransImpl(conf)) {} -bool LexicalCRF::Translate(const string& input, +bool LexicalTrans::Translate(const string& input, SentenceMetadata* smeta, const vector<double>& weights, Hypergraph* forest) { |