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:
Diffstat (limited to 'experimental/bidirectional/src/types.h')
-rw-r--r--experimental/bidirectional/src/types.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/experimental/bidirectional/src/types.h b/experimental/bidirectional/src/types.h
new file mode 100644
index 0000000..b26db96
--- /dev/null
+++ b/experimental/bidirectional/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)