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

This commit is contained in:
Hieu Hoang 2016-07-07 15:51:14 -04:00
commit 6ccf7e6ddf
3 changed files with 1 additions and 3 deletions

View File

@ -200,7 +200,6 @@ std::string Manager::OutputBest() const
}
//cerr << "NO TRANSLATION " << m_input->GetTranslationId() << endl;
}
out << "\n";
return out.str();
//cerr << endl;

View File

@ -334,7 +334,6 @@ std::string Manager::OutputBest() const
//cerr << "NO TRANSLATION " << m_input->GetTranslationId() << endl;
}
out += "\n";
return out;
}

View File

@ -30,7 +30,7 @@ void TranslationTask::Run()
string out;
out = m_mgr->OutputBest();
out = m_mgr->OutputBest() + "\n";
m_mgr->system.bestCollector->Write(m_mgr->m_translationId, out);
if (m_mgr->system.options.nbest.nbest_size) {