less debug output in GlobalLexicalModel

This commit is contained in:
Christian Buck 2012-02-03 17:40:59 +00:00
parent 312845b73f
commit 01bd615e9d

View File

@ -160,7 +160,7 @@ float GlobalLexicalModel::GetFromCacheOrScorePhrase( const TargetPhrase& targetP
float score = ScorePhrase( targetPhrase );
m_cache.insert( pair<const TargetPhrase*, float>(&targetPhrase, score) );
std::cerr << "add to cache " << targetPhrase << ": " << score << endl;
//VERBOSE(2, "add to cache " << targetPhrase << ": " << score << endl);
return score;
}