Formatting.

This commit is contained in:
Ulrich Germann 2013-09-25 22:07:59 +01:00
parent 94d10734f9
commit e1882032eb

View File

@ -108,7 +108,11 @@ void SearchNormalBatch::ProcessSentence()
* \param expectedScore base score for early discarding
* (base hypothesis score plus future score estimation)
*/
void SearchNormalBatch::ExpandHypothesis(const Hypothesis &hypothesis, const TranslationOption &transOpt, float expectedScore)
void
SearchNormalBatch::
ExpandHypothesis(const Hypothesis &hypothesis,
const TranslationOption &transOpt, float expectedScore)
{
// Check if the number of partial hypotheses exceeds the batch size.
if (m_partial_hypos.size() >= m_batch_size) {