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 <fishandfrolick@gmail.com>2013-05-11 17:13:26 +0400
committerHieu Hoang <fishandfrolick@gmail.com>2013-05-11 17:13:26 +0400
commit981351758a394ea06ea22cdd810d0735a9af3c9b (patch)
tree5a6f98e9146e11c2b957500626b54ffb2059bf6a /moses/Manager.h
parentb75d19483341828c51a370eeff4ff89f807a6b42 (diff)
delete class TranslationSystem
Diffstat (limited to 'moses/Manager.h')
-rw-r--r--moses/Manager.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/moses/Manager.h b/moses/Manager.h
index 098d138c0..687d8dbeb 100644
--- a/moses/Manager.h
+++ b/moses/Manager.h
@@ -96,7 +96,6 @@ class Manager
Manager();
Manager(Manager const&);
void operator=(Manager const&);
- const TranslationSystem* m_system;
private:
// Helper functions to output search graph in HTK standard lattice format
@@ -132,12 +131,9 @@ protected:
public:
InputType const& m_source; /**< source sentence to be translated */
- Manager(size_t lineNumber, InputType const& source, SearchAlgorithm searchAlgorithm, const TranslationSystem* system);
+ Manager(size_t lineNumber, InputType const& source, SearchAlgorithm searchAlgorithm);
~Manager();
const TranslationOptionCollection* getSntTranslationOptions();
- const TranslationSystem* GetTranslationSystem() {
- return m_system;
- }
void ProcessSentence();
const Hypothesis *GetBestHypothesis() const;