summaryrefslogtreecommitdiff
path: root/klm/search/config.hh
blob: ef8e2354a836707ab4f8f1540774b9c18fd4a94a (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
#ifndef SEARCH_CONFIG__
#define SEARCH_CONFIG__

#include "search/weights.hh"
#include "util/string_piece.hh"

namespace search {

class Config {
  public:
    Config(const Weights &weights, unsigned int pop_limit) :
      weights_(weights), pop_limit_(pop_limit) {}

    const Weights &GetWeights() const { return weights_; }

    unsigned int PopLimit() const { return pop_limit_; }

  private:
    Weights weights_;
    unsigned int pop_limit_;
};

} // namespace search

#endif // SEARCH_CONFIG__