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:37:59 +0300
committerHieu Hoang <hieuhoang@gmail.com>2015-10-25 16:37:59 +0300
commit97b2aa5663e97079145fb494bf97e1b2997b4161 (patch)
treef8a68fa4ea40bb99c21cd26e7f02a27ddcc48187 /moses/ChartCellLabelSet.h
parent84b1c4b4c0c02362cdb35b55e08196d03b993baf (diff)
WordsRange -> Range
Diffstat (limited to 'moses/ChartCellLabelSet.h')
-rw-r--r--moses/ChartCellLabelSet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses/ChartCellLabelSet.h b/moses/ChartCellLabelSet.h
index 4977c941f..b4e071443 100644
--- a/moses/ChartCellLabelSet.h
+++ b/moses/ChartCellLabelSet.h
@@ -44,7 +44,7 @@ public:
typedef MapType::const_iterator const_iterator;
typedef MapType::iterator iterator;
- ChartCellLabelSet(const WordsRange &coverage)
+ ChartCellLabelSet(const Range &coverage)
: m_coverage(coverage)
, m_map(FactorCollection::Instance().GetNumNonTerminals(), NULL)
, m_size(0) { }
@@ -139,7 +139,7 @@ public:
}
private:
- const WordsRange &m_coverage;
+ const Range &m_coverage;
MapType m_map;
size_t m_size;
};