Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mgiza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoredwardgao <edwardgao@9a26d1b7-1c8f-445c-8fdd-6576f508279d>2010-01-25 14:01:19 +0300
committeredwardgao <edwardgao@9a26d1b7-1c8f-445c-8fdd-6576f508279d>2010-01-25 14:01:19 +0300
commitcbd81f086b89af9bab24716ac4ca69249bd8ab5b (patch)
tree46c7034218246366f962ff6507af14fa448b338d /experimental/alignment-enabled/MGIZA/src/types.h
parent7ae4ac9642196cb33b79ea555a248e4484bc40c4 (diff)
experimental functioanlities
Diffstat (limited to 'experimental/alignment-enabled/MGIZA/src/types.h')
-rw-r--r--experimental/alignment-enabled/MGIZA/src/types.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/experimental/alignment-enabled/MGIZA/src/types.h b/experimental/alignment-enabled/MGIZA/src/types.h
new file mode 100644
index 0000000..b26db96
--- /dev/null
+++ b/experimental/alignment-enabled/MGIZA/src/types.h
@@ -0,0 +1,12 @@
+/*!
+A set of definition of types, when port to X64, something should
+be changed.
+*/
+
+
+typedef int INT32;
+typedef float FLOAT32;
+typedef double FLOAT64;
+
+#define SUCCESS 0
+#define IS_SUCCESS(x) (x==0)