File size: 967 Bytes
158b61b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
//  PhraseDictionaryALSuffixArray.h
//  moses
//
//  Created by Hieu Hoang on 06/11/2011.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#ifndef moses_PhraseDictionaryALSuffixArray_h
#define moses_PhraseDictionaryALSuffixArray_h

#include "moses/TranslationModel/PhraseDictionaryMemory.h"

namespace Moses
{

/** Implementation of in-memory phrase table for use with Adam Lopez's suffix array.
 * Does 2 things that the normal in-memory pt doesn't do:
 *  1. Loads grammar for a sentence to be decoded only when the sentence is being decoded. Unload afterwards
    2. Format of the pt file follows Hiero, rather than Moses
 */
class PhraseDictionaryALSuffixArray : public PhraseDictionaryMemory
{
public:
  PhraseDictionaryALSuffixArray(const std::string &line);
  void Load(AllOptions::ptr const& opts);
  void InitializeForInput(ttasksptr const& ttask);
  void CleanUpAfterSentenceProcessing(const InputType& source);

protected:

};


}

#endif