diff options
| author | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2013-04-23 19:35:18 -0400 | 
|---|---|---|
| committer | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2013-04-23 19:35:18 -0400 | 
| commit | c164dc0ed8a32e4095ba1b36495e0f743b8cc1ea (patch) | |
| tree | 78b81e4c63adfa67adb7b8f80c3e6be87b4a2b2a /extractor/matchings_finder.h | |
| parent | 0e46089cafa4e8e2f060e370d7afaceeda6b90a9 (diff) | |
| parent | d467e14b28085809c31431be0478eb3d9322fe96 (diff) | |
merge paul's extractor code
Diffstat (limited to 'extractor/matchings_finder.h')
| -rw-r--r-- | extractor/matchings_finder.h | 37 | 
1 files changed, 37 insertions, 0 deletions
diff --git a/extractor/matchings_finder.h b/extractor/matchings_finder.h new file mode 100644 index 00000000..451f4a4c --- /dev/null +++ b/extractor/matchings_finder.h @@ -0,0 +1,37 @@ +#ifndef _MATCHINGS_FINDER_H_ +#define _MATCHINGS_FINDER_H_ + +#include <memory> +#include <string> + +using namespace std; + +namespace extractor { + +class PhraseLocation; +class SuffixArray; + +/** + * Class wrapping the suffix array lookup for a contiguous phrase. + */ +class MatchingsFinder { + public: +  MatchingsFinder(shared_ptr<SuffixArray> suffix_array); + +  virtual ~MatchingsFinder(); + +  // Uses the suffix array to search only for the last word of the phrase +  // starting from the range in which the prefix of the phrase occurs. +  virtual PhraseLocation Find(PhraseLocation& location, const string& word, +                              int offset); + + protected: +  MatchingsFinder(); + + private: +  shared_ptr<SuffixArray> suffix_array; +}; + +} // namespace extractor + +#endif  | 
