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 <fishandfrolick@gmail.com>2012-06-30 23:23:45 +0400
committerHieu Hoang <fishandfrolick@gmail.com>2012-06-30 23:23:45 +0400
commite3dd3a8d2c72f5f1d60b4ec12a628f319a1f1906 (patch)
tree46544c1e642100fd4f0367d0b2b9786e9cdac676 /mert/Types.h
parent1cf1c2e51561bac3b3ca0b7e5b63fb93f978a064 (diff)
namespace all classes in mert directory
Diffstat (limited to 'mert/Types.h')
-rw-r--r--mert/Types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/mert/Types.h b/mert/Types.h
index ae452afa6..b4c03a89a 100644
--- a/mert/Types.h
+++ b/mert/Types.h
@@ -6,6 +6,9 @@
#include <string>
#include <utility>
+namespace MosesTuning
+{
+
class FeatureStats;
class FeatureArray;
class FeatureData;
@@ -42,4 +45,6 @@ typedef std::map<std::string, std::size_t> name2idx;
typedef enum { HAMMING_DISTANCE=0, KENDALL_DISTANCE } distanceMetric_t;
typedef enum { REFERENCE_CHOICE_AVERAGE=0, REFERENCE_CHOICE_CLOSEST } distanceMetricReferenceChoice_t;
+}
+
#endif // MERT_TYPE_H_