diff --git a/contrib/other-builds/moses2/Search/CubePruningPerMiniStack/Search.cpp b/contrib/other-builds/moses2/Search/CubePruningPerMiniStack/Search.cpp index 8a9e4bfde..c281b7d7c 100644 --- a/contrib/other-builds/moses2/Search/CubePruningPerMiniStack/Search.cpp +++ b/contrib/other-builds/moses2/Search/CubePruningPerMiniStack/Search.cpp @@ -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::const_iterator iter; for (iter = counts.begin(); iter != counts.end(); ++iter) { - cerr << iter->first << "=" << iter->second << endl; - + cerr << iter->first << "=" << iter->second << " "; } + cerr << endl; }