mosesdecoder/moses/TranslationOptionCollectionLattice.h

43 lines
1.1 KiB
C
Raw Normal View History

// $Id$
#pragma once
#include "TranslationOptionCollection.h"
#include "InputPath.h"
namespace Moses
{
class WordLattice;
/** Holds all translation options, for all spans, of a lattice input. NOT confusion networks
* No legacy phrase-tables, CANNOT be used with Zen's binary phrase-table.
*/
class TranslationOptionCollectionLattice : public TranslationOptionCollection
{
protected:
2014-01-15 19:42:02 +04:00
/* forcibly create translation option for a 1 word.
* call the base class' ProcessOneUnknownWord() for each possible word in the confusion network
* at a particular source position
*/
void ProcessUnknownWord(size_t sourcePos); // do not implement
public:
2015-12-11 13:12:54 +03:00
TranslationOptionCollectionLattice(ttasksptr const& ttask, const WordLattice &source);
// , size_t maxNoTransOptPerCoverage, float translationOptionThreshold);
void CreateTranslationOptions();
2015-02-19 15:27:23 +03:00
bool
CreateTranslationOptionsForRange
(const DecodeGraph &decodeStepList, size_t startPosition, size_t endPosition,
bool adhereTableLimit, size_t graphInd); // do not implement
protected:
2015-12-07 19:07:11 +03:00
void Extend(const InputPath &prevPath, const WordLattice &input,
2015-12-09 03:00:35 +03:00
size_t const maxPhraseLength);
};
}