Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Junczys-Dowmunt <junczys@amu.edu.pl>2012-08-24 16:04:23 +0400
committerMarcin Junczys-Dowmunt <junczys@amu.edu.pl>2012-08-24 16:04:23 +0400
commit174b5006b2beeb4470c0e4a813cc4cd170b51c74 (patch)
tree702b5bc8168a82a81617183c0eb1877432955a8a /contrib
parent69fc00faf9304a9d2745564579e71ac5db129bbd (diff)
Removed debugging artefact
Diffstat (limited to 'contrib')
-rw-r--r--contrib/sigtest-filter/filter-pt.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/sigtest-filter/filter-pt.cpp b/contrib/sigtest-filter/filter-pt.cpp
index c282c6adb..f06d2b430 100644
--- a/contrib/sigtest-filter/filter-pt.cpp
+++ b/contrib/sigtest-filter/filter-pt.cpp
@@ -364,7 +364,6 @@ void compute_cooc_stats_and_filter(std::vector<PTEntry*>& options)
void prune_cache(PhraseSetMap & psm) {
if(max_cache && psm.size() > max_cache) {
- std::cerr << "Cache: " << psm.size() << std::endl;
std::vector<clock_t> clocks;
for(PhraseSetMap::iterator it = psm.begin(); it != psm.end(); it++)
clocks.push_back(it->second.second);