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 'lm/builder/hash_gamma.hh')
-rw-r--r--lm/builder/hash_gamma.hh19
1 files changed, 19 insertions, 0 deletions
diff --git a/lm/builder/hash_gamma.hh b/lm/builder/hash_gamma.hh
new file mode 100644
index 000000000..4bef47e81
--- /dev/null
+++ b/lm/builder/hash_gamma.hh
@@ -0,0 +1,19 @@
+#ifndef LM_BUILDER_HASH_GAMMA__
+#define LM_BUILDER_HASH_GAMMA__
+
+#include <stdint.h>
+
+namespace lm { namespace builder {
+
+#pragma pack(push)
+#pragma pack(4)
+
+struct HashGamma {
+ uint64_t hash_value;
+ float gamma;
+};
+
+#pragma pack(pop)
+
+}} // namespaces
+#endif // LM_BUILDER_HASH_GAMMA__