Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieu@hoang.co.uk>2013-08-06 18:07:03 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-08-06 18:07:03 +0400
commit646cf93c1f8e1e72e0907d1c3c03e644cff51e2f (patch)
treea39f359b18ecfa17d13370b2b84e64d52ca9d34c /moses/DecodeStepTranslation.h
parent1753fdf6b121dbee46210ca1fe85f6a204920f84 (diff)
push InpuutPath down into phrase dictionary for legacy methods
Diffstat (limited to 'moses/DecodeStepTranslation.h')
-rw-r--r--moses/DecodeStepTranslation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/moses/DecodeStepTranslation.h b/moses/DecodeStepTranslation.h
index f09bf7773..c48f236d5 100644
--- a/moses/DecodeStepTranslation.h
+++ b/moses/DecodeStepTranslation.h
@@ -60,15 +60,15 @@ public:
/*! initialize list of partial translation options by applying the first translation step
* Ideally, this function should be in DecodeStepTranslation class
*/
- void ProcessInitialTranslationLegacy(const InputType &source
+ void ProcessInitialTranslation(const InputType &source
, PartialTranslOptColl &outputPartialTranslOptColl
, size_t startPos, size_t endPos, bool adhereTableLimit
- , const InputPathList &inputPathList) const;
+ , const TargetPhraseCollection *phraseColl) const;
- void ProcessInitialTranslation(const InputType &source
+ void ProcessInitialTranslationLegacy(const InputType &source
, PartialTranslOptColl &outputPartialTranslOptColl
, size_t startPos, size_t endPos, bool adhereTableLimit
- , const TargetPhraseCollection *phraseColl) const;
+ , const InputPathList &inputPathList) const;
private: