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:
authorUlrich Germann <ugermann@inf.ed.ac.uk>2015-02-06 01:48:46 +0300
committerUlrich Germann <ugermann@inf.ed.ac.uk>2015-02-06 01:48:46 +0300
commitdfd3a53e9e7d487d3b9145419e8c4ac502b692be (patch)
tree501297ea525a47b5da1afbb39587186b917d005d /moses/TranslationOptionCollectionLattice.h
parent35673f4274c5166f3b762709fb9b82e4409ad77c (diff)
Changed return type of CreateTranslationOptionsForRange(...) from void to bool.
Diffstat (limited to 'moses/TranslationOptionCollectionLattice.h')
-rw-r--r--moses/TranslationOptionCollectionLattice.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/moses/TranslationOptionCollectionLattice.h b/moses/TranslationOptionCollectionLattice.h
index dd38340f8..f2f02df32 100644
--- a/moses/TranslationOptionCollectionLattice.h
+++ b/moses/TranslationOptionCollectionLattice.h
@@ -26,11 +26,10 @@ public:
void CreateTranslationOptions();
- void CreateTranslationOptionsForRange(const DecodeGraph &decodeStepList
- , size_t startPosition
- , size_t endPosition
- , bool adhereTableLimit
- , size_t graphInd); // do not implement
+ bool
+ CreateTranslationOptionsForRange
+ (const DecodeGraph &decodeStepList, size_t startPosition, size_t endPosition,
+ bool adhereTableLimit, size_t graphInd); // do not implement
protected:
void Extend(const InputPath &prevPath, const WordLattice &input);