summaryrefslogtreecommitdiff
path: root/extractor/sampler.h
blob: 9cf321fbe0d3a29f28e92cd5ebf5791f21284871 (plain)
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
#ifndef _SAMPLER_H_
#define _SAMPLER_H_

#include <memory>

using namespace std;

class PhraseLocation;
class SuffixArray;

class Sampler {
 public:
  Sampler(shared_ptr<SuffixArray> suffix_array, int max_samples);

  virtual ~Sampler();

  virtual PhraseLocation Sample(const PhraseLocation& location) const;

 protected:
  Sampler();

 private:
  int Round(double x) const;

  shared_ptr<SuffixArray> suffix_array;
  int max_samples;
};

#endif