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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2015-10-25 16:07:25 +0300
committerHieu Hoang <hieuhoang@gmail.com>2015-10-25 16:07:25 +0300
commit84b1c4b4c0c02362cdb35b55e08196d03b993baf (patch)
tree5b8526e6063ce08e0eb5c13bbef8d6e605f46748 /moses/BitmapContainer.h
parenteeff4fddc85c0edab1b2a3eb4ceecce243f52bc1 (diff)
WordsBitmap -> Bitmap
Diffstat (limited to 'moses/BitmapContainer.h')
-rw-r--r--moses/BitmapContainer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/moses/BitmapContainer.h b/moses/BitmapContainer.h
index 6c500ff71..79323eb27 100644
--- a/moses/BitmapContainer.h
+++ b/moses/BitmapContainer.h
@@ -31,7 +31,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include "SquareMatrix.h"
#include "TranslationOption.h"
#include "TypeDef.h"
-#include "WordsBitmap.h"
+#include "Bitmap.h"
#include <boost/unordered_set.hpp>
@@ -202,7 +202,7 @@ public:
class BitmapContainer
{
private:
- const WordsBitmap m_bitmap;
+ const Bitmap m_bitmap;
HypothesisStackCubePruning &m_stack;
HypothesisSet m_hypotheses;
BackwardsEdgeSet m_edges;
@@ -214,7 +214,7 @@ private:
BitmapContainer();
BitmapContainer(const BitmapContainer &);
public:
- BitmapContainer(const WordsBitmap &bitmap
+ BitmapContainer(const Bitmap &bitmap
, HypothesisStackCubePruning &stack
, bool deterministic_sort = false);
@@ -228,7 +228,7 @@ public:
size_t Size();
bool Empty() const;
- const WordsBitmap &GetWordsBitmap() const {
+ const Bitmap &GetWordsBitmap() const {
return m_bitmap;
}