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 'scripts/training/eppex/typedefs.h')
-rw-r--r--scripts/training/eppex/typedefs.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/scripts/training/eppex/typedefs.h b/scripts/training/eppex/typedefs.h
deleted file mode 100644
index 0665c4aa4..000000000
--- a/scripts/training/eppex/typedefs.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/**
- * Basic eppex configuration.
- *
- * $Id$
- */
-
-#ifndef CONFIG_H
-#define CONFIG_H
-
-#include "IndexedPhrasesPair.h"
-#include "LossyCounter.h"
-
-// Type capable of holding all words (tokens) indices:
-typedef unsigned int word_index_t;
-// Type capable of holding all orientation info indices:
-typedef unsigned char orientation_info_index_t;
-// Phrase Pair type.
-typedef IndexedPhrasesPair<orientation_info_index_t, word_index_t> indexed_phrases_pair_t;
-// Lossy Counter type.
-typedef LossyCounter<indexed_phrases_pair_t> PhrasePairsLossyCounter;
-// Shortcut to alignment interface.
-typedef indexed_phrases_pair_t::alignment_t alignment_t;
-
-#endif /* CONFIG_H */