summaryrefslogtreecommitdiff
path: root/decoder/scfg_translator.cc
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2011-04-28 07:50:40 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2011-04-28 07:50:40 -0400
commit49e4ba3fc4166a29d4cded3cd66d0cca977cc8eb (patch)
tree95753a08bd9ae3136a2741ded596b5865a343f0f /decoder/scfg_translator.cc
parent2baee73b38a5162d42e377fd54aafd5ce67c1f07 (diff)
removing logging
Diffstat (limited to 'decoder/scfg_translator.cc')
-rw-r--r--decoder/scfg_translator.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/decoder/scfg_translator.cc b/decoder/scfg_translator.cc
index d4bec40d..d978d8b9 100644
--- a/decoder/scfg_translator.cc
+++ b/decoder/scfg_translator.cc
@@ -292,7 +292,6 @@ void SCFGTranslator::ProcessMarkupHintsImpl(const map<string, string>& kv) {
return;
}
//Create sentence specific grammar from specified file name and load grammar into list of grammars
- cerr << "Loading sentence grammar from:" << it->second << endl;
usingSentenceGrammar = true;
TextGrammar* sentGrammar = new TextGrammar(it->second);
sentGrammar->SetMaxSpan(pimpl_->max_span_limit);
@@ -309,7 +308,6 @@ void SCFGTranslator::SentenceCompleteImpl() {
if(usingSentenceGrammar) // Drop the last sentence grammar from the list of grammars
{
- cerr << "Clearing grammar" << endl;
pimpl_->grammars.pop_back();
}
}