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/HypothesisStackNormal.h
parenteeff4fddc85c0edab1b2a3eb4ceecce243f52bc1 (diff)
WordsBitmap -> Bitmap
Diffstat (limited to 'moses/HypothesisStackNormal.h')
-rw-r--r--moses/HypothesisStackNormal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/moses/HypothesisStackNormal.h b/moses/HypothesisStackNormal.h
index 5be07f20e..d360f2310 100644
--- a/moses/HypothesisStackNormal.h
+++ b/moses/HypothesisStackNormal.h
@@ -26,11 +26,11 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include <set>
#include "Hypothesis.h"
#include "HypothesisStack.h"
-#include "WordsBitmap.h"
+#include "Bitmap.h"
namespace Moses
{
-// class WordsBitmap;
+// class Bitmap;
// typedef size_t WordsBitmapID;
/** A stack for standard phrase-based decoding. */
@@ -66,7 +66,7 @@ public:
return -std::numeric_limits<float>::infinity();
return m_diversityWorstScore[ id ];
}
- virtual float GetWorstScoreForBitmap( const WordsBitmap &coverage ) {
+ virtual float GetWorstScoreForBitmap( const Bitmap &coverage ) {
return GetWorstScoreForBitmap( coverage.GetID() );
}