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:
Diffstat (limited to 'mert/FeatureStats.cpp')
-rw-r--r--mert/FeatureStats.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/mert/FeatureStats.cpp b/mert/FeatureStats.cpp
index 2c6cdb88f..6f80d5f89 100644
--- a/mert/FeatureStats.cpp
+++ b/mert/FeatureStats.cpp
@@ -20,6 +20,10 @@ namespace {
const int kAvailableSize = 8;
} // namespace
+namespace MosesTuning
+{
+
+
SparseVector::name2id_t SparseVector::m_name_to_id;
SparseVector::id2name_t SparseVector::m_id_to_name;
@@ -263,7 +267,6 @@ ostream& operator<<(ostream& o, const FeatureStats& e)
return o;
}
-//ADEED_BY_TS
bool operator==(const FeatureStats& f1, const FeatureStats& f2) {
size_t size = f1.size();
@@ -277,4 +280,5 @@ bool operator==(const FeatureStats& f1, const FeatureStats& f2) {
return true;
}
-//END_ADDED
+
+}