Merge branch 'perf_moses2' of github.com:hieuhoang/mosesdecoder into perf_moses2

This commit is contained in:
Hieu Hoang 2016-01-08 14:44:00 +00:00
commit a3fa3ff82a

View File

@ -68,7 +68,7 @@ void Search::Decode()
//cerr << m_stacks << endl;
}
DebugCounts();
//DebugCounts();
}
// grab the underlying contain of priority queue
@ -243,9 +243,9 @@ void Search::DebugCounts()
std::map<size_t, size_t>::const_iterator iter;
for (iter = counts.begin(); iter != counts.end(); ++iter) {
cerr << iter->first << "=" << iter->second << endl;
cerr << iter->first << "=" << iter->second << " ";
}
cerr << endl;
}