Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PointerState.h « LM « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0e59bb452475a23792f1807061cc24f3dd525fa (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
#pragma once

#include "moses/FF/FFState.h"

namespace Moses
{

struct PointerState : public FFState {
  const void* lmstate;

  explicit PointerState() {
    // uninitialised
  }

  PointerState(const void* lms) {
    lmstate = lms;
  }
  virtual size_t hash() const {
    return (size_t) lmstate;
  }
  virtual bool operator==(const FFState& other) const {
    const PointerState& o = static_cast<const PointerState&>(other);
    return lmstate == o.lmstate;
  }

};

} // namespace