Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- mosesdecoder/contrib/debugging/auto-rollback.sh +10 -0
- mosesdecoder/contrib/eppex/ISS.h +236 -0
- mosesdecoder/contrib/eppex/IndexedPhrasesPair.h +316 -0
- mosesdecoder/contrib/eppex/LossyCounter.h +388 -0
- mosesdecoder/contrib/eppex/Makefile.in +762 -0
- mosesdecoder/contrib/eppex/aclocal.m4 +952 -0
- mosesdecoder/contrib/eppex/configure +0 -0
- mosesdecoder/contrib/eppex/counter.cpp +81 -0
- mosesdecoder/contrib/eppex/m4/ax_boost_base.m4 +223 -0
- mosesdecoder/contrib/eppex/phrase-extract.cpp +805 -0
- mosesdecoder/contrib/eppex/phrase-extract.h +133 -0
- mosesdecoder/contrib/eppex/typedefs.h +24 -0
- mosesdecoder/contrib/iSenWeb/index.html +129 -0
- mosesdecoder/contrib/iSenWeb/jquery-1.7.2.js +0 -0
- mosesdecoder/contrib/iSenWeb/moses.pl +59 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/Logo (1000x300).png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/Logo (250x250).png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/Logo (500x500).png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/Logo.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/Logo_lab.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/header_bg.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/ico_cor10.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/icon_feedback.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/logo_christmas.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/logo_christmas1.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/logo_christmas2.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/logo_christmas3.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/nav_bgn.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/common/sidebar_bg.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/fanyi/fanyi_sprite.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/fanyi/inputTextBg.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/images/search/s.png +0 -0
- mosesdecoder/contrib/iSenWeb/themes/styles/common.css +288 -0
- mosesdecoder/contrib/iSenWeb/themes/styles/fanyi.css +583 -0
- mosesdecoder/contrib/iSenWeb/themes/styles/search.css +31 -0
- mosesdecoder/contrib/iSenWeb/trans_result.php +11 -0
- mosesdecoder/contrib/other-builds/CreateOnDiskPt/.cproject +173 -0
- mosesdecoder/contrib/other-builds/CreateOnDiskPt/.project +44 -0
- mosesdecoder/contrib/other-builds/cmake/boost.example/main.cpp +24 -0
- mosesdecoder/contrib/other-builds/extract-ghkm/.project +140 -0
- mosesdecoder/contrib/other-builds/extract/.cproject +135 -0
- mosesdecoder/contrib/other-builds/extract/.project +109 -0
- mosesdecoder/contrib/other-builds/extract/extract.project +129 -0
- mosesdecoder/contrib/other-builds/lm/.cproject +138 -0
- mosesdecoder/contrib/other-builds/lm/.project +1380 -0
- mosesdecoder/contrib/other-builds/mert_lib/.cproject +134 -0
- mosesdecoder/contrib/other-builds/mert_lib/.project +1350 -0
- mosesdecoder/contrib/other-builds/moses/.cproject +160 -0
- mosesdecoder/contrib/other-builds/moses/.project +0 -0
- mosesdecoder/contrib/other-builds/moses/moses.project +903 -0
mosesdecoder/contrib/debugging/auto-rollback.sh
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
git submodule init
|
| 4 |
+
git submodule update regtest
|
| 5 |
+
while [ true ] ; do
|
| 6 |
+
./bjam -j$(nproc) --with-irstlm=$(pwd)/opt --with-boost=$(pwd)/opt --with-cmph=$(pwd)/opt --with-xmlrpc-c=$(pwd)/opt --with-regtest=$(pwc)/regtest -a -q $@ && break
|
| 7 |
+
commit=$(git log | grep ^commit | head -n2 | tail -n1 | sed 's/commit //')
|
| 8 |
+
echo REVERTING TO COMMIT $commit
|
| 9 |
+
git checkout $commit
|
| 10 |
+
done
|
mosesdecoder/contrib/eppex/ISS.h
ADDED
|
@@ -0,0 +1,236 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* ISS (Indexed Strings Storage) - memory efficient storage for permanent strings.
|
| 3 |
+
*
|
| 4 |
+
* Implementation note: use #define USE_HASHSET to switch between implementation
|
| 5 |
+
* using __gnu_cxx::hash_set and implementation using std::set.
|
| 6 |
+
*
|
| 7 |
+
* (C) Ceslav Przywara, UFAL MFF UK, 2011
|
| 8 |
+
*
|
| 9 |
+
* $Id$
|
| 10 |
+
*/
|
| 11 |
+
|
| 12 |
+
#ifndef _ISS_H
|
| 13 |
+
#define _ISS_H
|
| 14 |
+
|
| 15 |
+
#include <limits>
|
| 16 |
+
#include <vector>
|
| 17 |
+
#include <string.h>
|
| 18 |
+
|
| 19 |
+
// Use hashset instead of std::set for string-to-number indexing?
|
| 20 |
+
#ifdef USE_HASHSET
|
| 21 |
+
#include <ext/hash_set>
|
| 22 |
+
#else
|
| 23 |
+
#include <set>
|
| 24 |
+
#endif
|
| 25 |
+
|
| 26 |
+
#include <boost/pool/pool.hpp>
|
| 27 |
+
|
| 28 |
+
#ifdef USE_HASHSET
|
| 29 |
+
// Forward declaration of comparator functor.
|
| 30 |
+
template<class IndType>
|
| 31 |
+
class StringsEqualComparator;
|
| 32 |
+
|
| 33 |
+
template<class IndType>
|
| 34 |
+
class Hasher;
|
| 35 |
+
#else
|
| 36 |
+
// Forward declaration of comparator functor.
|
| 37 |
+
template<class IndType>
|
| 38 |
+
class StringsLessComparator;
|
| 39 |
+
#endif
|
| 40 |
+
|
| 41 |
+
/**
|
| 42 |
+
*/
|
| 43 |
+
template<class IndType>
|
| 44 |
+
class IndexedStringsStorage {
|
| 45 |
+
|
| 46 |
+
public:
|
| 47 |
+
|
| 48 |
+
typedef IndType index_type;
|
| 49 |
+
|
| 50 |
+
#ifdef USE_HASHSET
|
| 51 |
+
typedef StringsEqualComparator<IndType> equality_comparator_t;
|
| 52 |
+
|
| 53 |
+
typedef Hasher<IndType> hasher_t;
|
| 54 |
+
|
| 55 |
+
/** @typedef Hash set used as lookup table (string -> numeric index). */
|
| 56 |
+
typedef __gnu_cxx::hash_set<IndType, hasher_t, equality_comparator_t> index_t;
|
| 57 |
+
#else
|
| 58 |
+
typedef StringsLessComparator<IndType> less_comparator_t;
|
| 59 |
+
|
| 60 |
+
/** @typedef Set used as lookup table (string -> numeric index). */
|
| 61 |
+
typedef std::set<IndType, less_comparator_t> index_t;
|
| 62 |
+
#endif
|
| 63 |
+
/** @typedef Container of pointers to stored C-strings. Acts as
|
| 64 |
+
* conversion table: numeric index -> string.
|
| 65 |
+
*/
|
| 66 |
+
typedef std::vector<const char*> table_t;
|
| 67 |
+
|
| 68 |
+
private:
|
| 69 |
+
|
| 70 |
+
/** @var memory pool used to store C-strings */
|
| 71 |
+
boost::pool<> _storage;
|
| 72 |
+
|
| 73 |
+
/** @var index-to-string conversion table */
|
| 74 |
+
table_t _table;
|
| 75 |
+
|
| 76 |
+
/** @var index lookup table */
|
| 77 |
+
index_t _index;
|
| 78 |
+
|
| 79 |
+
public:
|
| 80 |
+
/** Default constructor.
|
| 81 |
+
*/
|
| 82 |
+
IndexedStringsStorage(void);
|
| 83 |
+
|
| 84 |
+
/** @return True, if the indices are exhausted (new strings cannot be stored).
|
| 85 |
+
*/
|
| 86 |
+
inline bool is_full(void) const { return _table.size() == std::numeric_limits<IndType>::max(); }
|
| 87 |
+
|
| 88 |
+
/** Retrieves pointer to C-string instance represented by given index.
|
| 89 |
+
* Note: No range checks are performed!
|
| 90 |
+
* @param index Index of C-string to retrieve.
|
| 91 |
+
* @return Pointer to stored C-string instance.
|
| 92 |
+
*/
|
| 93 |
+
inline const char* get(IndType index) const { return _table[index]; }
|
| 94 |
+
|
| 95 |
+
/** Stores the string and returns its numeric index.
|
| 96 |
+
* @param str Pointer to C-string to store.
|
| 97 |
+
* @return Index of stored copy of str.
|
| 98 |
+
* @throw std::bad_alloc When insertion of new string would cause
|
| 99 |
+
* overflow of indices datatype.
|
| 100 |
+
*/
|
| 101 |
+
IndType put(const char* str);
|
| 102 |
+
|
| 103 |
+
/** @return Number of unique strings stored so far.
|
| 104 |
+
*/
|
| 105 |
+
inline table_t::size_type size(void) const { return _table.size(); }
|
| 106 |
+
};
|
| 107 |
+
|
| 108 |
+
|
| 109 |
+
/** Functor designed for less than comparison of C-strings stored within StringStore.
|
| 110 |
+
* @param IndType Type of numerical indices of strings within given StringStore.
|
| 111 |
+
*/
|
| 112 |
+
#ifdef USE_HASHSET
|
| 113 |
+
template<class IndType>
|
| 114 |
+
class StringsEqualComparator: public std::binary_function<IndType, IndType, bool> {
|
| 115 |
+
#else
|
| 116 |
+
template<class IndType>
|
| 117 |
+
class StringsLessComparator: public std::binary_function<IndType, IndType, bool> {
|
| 118 |
+
#endif
|
| 119 |
+
/** @var conversion table: index -> string (necessary for indices comparison) */
|
| 120 |
+
const typename IndexedStringsStorage<IndType>::table_t& _table;
|
| 121 |
+
public:
|
| 122 |
+
#ifdef USE_HASHSET
|
| 123 |
+
StringsEqualComparator<IndType>(const typename IndexedStringsStorage<IndType>::table_t& table): _table(table) {}
|
| 124 |
+
#else
|
| 125 |
+
StringsLessComparator<IndType>(const typename IndexedStringsStorage<IndType>::table_t& table): _table(table) {}
|
| 126 |
+
#endif
|
| 127 |
+
|
| 128 |
+
/** Comparison of two pointers to C-strings.
|
| 129 |
+
* @param lhs Pointer to 1st C-string.
|
| 130 |
+
* @param rhs Pointer to 2nd C-string.
|
| 131 |
+
* @return True, if 1st argument is equal/less than 2nd argument.
|
| 132 |
+
*/
|
| 133 |
+
inline bool operator()(IndType lhs, IndType rhs) const {
|
| 134 |
+
#ifdef USE_HASHSET
|
| 135 |
+
return strcmp(_table[lhs], _table[rhs]) == 0;
|
| 136 |
+
#else
|
| 137 |
+
return strcmp(_table[lhs], _table[rhs]) < 0;
|
| 138 |
+
#endif
|
| 139 |
+
}
|
| 140 |
+
};
|
| 141 |
+
|
| 142 |
+
#ifdef USE_HASHSET
|
| 143 |
+
/** Functor... TODO.
|
| 144 |
+
*/
|
| 145 |
+
template<class IndType>
|
| 146 |
+
class Hasher: public std::unary_function<IndType, size_t> {
|
| 147 |
+
|
| 148 |
+
__gnu_cxx::hash<const char*> _hash;
|
| 149 |
+
|
| 150 |
+
/** @var conversion table: index -> string (necessary for indices comparison) */
|
| 151 |
+
const typename IndexedStringsStorage<IndType>::table_t& _table;
|
| 152 |
+
|
| 153 |
+
public:
|
| 154 |
+
/** */
|
| 155 |
+
Hasher<IndType>(const typename IndexedStringsStorage<IndType>::table_t& table): _hash(), _table(table) {}
|
| 156 |
+
|
| 157 |
+
/** Hashing function.
|
| 158 |
+
* @param index
|
| 159 |
+
* @return Counted hash.
|
| 160 |
+
*/
|
| 161 |
+
inline size_t operator()(const IndType index) const {
|
| 162 |
+
return _hash(_table[index]);
|
| 163 |
+
}
|
| 164 |
+
};
|
| 165 |
+
#endif
|
| 166 |
+
|
| 167 |
+
template <class IndType>
|
| 168 |
+
#ifdef USE_HASHSET
|
| 169 |
+
IndexedStringsStorage<IndType>::IndexedStringsStorage(void): _storage(sizeof(char)), _table(), _index(100, hasher_t(_table), equality_comparator_t(_table)) {}
|
| 170 |
+
#else
|
| 171 |
+
IndexedStringsStorage<IndType>::IndexedStringsStorage(void): _storage(sizeof(char)), _table(), _index(less_comparator_t(_table)) {}
|
| 172 |
+
#endif
|
| 173 |
+
|
| 174 |
+
template <class IndType>
|
| 175 |
+
IndType IndexedStringsStorage<IndType>::put(const char* str) {
|
| 176 |
+
|
| 177 |
+
if ( this->is_full() ) {
|
| 178 |
+
// What a pity, not a single index left to spend.
|
| 179 |
+
throw std::bad_alloc();
|
| 180 |
+
}
|
| 181 |
+
|
| 182 |
+
// To use the index for lookup we first have to store passed string
|
| 183 |
+
// in conversion table (cause during lookup we compare the strings indirectly
|
| 184 |
+
// by using their indices).
|
| 185 |
+
// Note: thread unsafe! TODO: Redesing.
|
| 186 |
+
IndType index = static_cast<IndType>(_table.size());
|
| 187 |
+
_table.push_back(str);
|
| 188 |
+
|
| 189 |
+
#ifdef USE_HASHSET
|
| 190 |
+
//
|
| 191 |
+
typename index_t::iterator iIndex = _index.find(index);
|
| 192 |
+
#else
|
| 193 |
+
// A lower_bound() search enables us to use "found" iterator as a hint for
|
| 194 |
+
// eventual insertion.
|
| 195 |
+
typename index_t::iterator iIndex = _index.lower_bound(index);
|
| 196 |
+
#endif
|
| 197 |
+
|
| 198 |
+
if ( (iIndex != _index.end())
|
| 199 |
+
#ifndef USE_HASHSET
|
| 200 |
+
// In case of lower_bound() search we have to also compare found item
|
| 201 |
+
// with passed string.
|
| 202 |
+
&& (strcmp(_table[*iIndex], str) == 0)
|
| 203 |
+
#endif
|
| 204 |
+
) {
|
| 205 |
+
// String is already present in storage!
|
| 206 |
+
// Pop back temporary stored pointer...
|
| 207 |
+
_table.pop_back();
|
| 208 |
+
// ...and return numeric index to already stored copy of `str`.
|
| 209 |
+
return static_cast<IndType>(*iIndex);
|
| 210 |
+
}
|
| 211 |
+
|
| 212 |
+
// String not found within storage.
|
| 213 |
+
|
| 214 |
+
// Allocate memory required for string storage...
|
| 215 |
+
char* mem = static_cast<char*>(_storage.ordered_malloc(strlen(str) + 1));
|
| 216 |
+
// ...and fill it with copy of passed string.
|
| 217 |
+
strcpy(mem, str);
|
| 218 |
+
|
| 219 |
+
// Overwrite temporary stored pointer to `str` with pointer to freshly
|
| 220 |
+
// saved copy.
|
| 221 |
+
_table[index] = mem;
|
| 222 |
+
|
| 223 |
+
#ifdef USE_HASHSET
|
| 224 |
+
// Insert the index into lookup table.
|
| 225 |
+
_index.insert(index);
|
| 226 |
+
#else
|
| 227 |
+
// Insert the index into lookup table (use previously retrieved iterator
|
| 228 |
+
// as a hint).
|
| 229 |
+
_index.insert(iIndex, index);
|
| 230 |
+
#endif
|
| 231 |
+
|
| 232 |
+
// Finally.
|
| 233 |
+
return index;
|
| 234 |
+
}
|
| 235 |
+
|
| 236 |
+
#endif
|
mosesdecoder/contrib/eppex/IndexedPhrasesPair.h
ADDED
|
@@ -0,0 +1,316 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* IndexedPhrasesPair - implementation of a single phrase pair source and target
|
| 3 |
+
* phrases represented by numeric indices.
|
| 4 |
+
*
|
| 5 |
+
* (C) Ceslav Przywara, UFAL MFF UK, 2011
|
| 6 |
+
*
|
| 7 |
+
* $Id$
|
| 8 |
+
*
|
| 9 |
+
* TODO:
|
| 10 |
+
* - current unordered_map implementation is terribly slow. More sophisticated
|
| 11 |
+
* design of hash function should help.
|
| 12 |
+
*/
|
| 13 |
+
|
| 14 |
+
#ifndef INDEXEDPHRASESPAIR_H
|
| 15 |
+
#define INDEXEDPHRASESPAIR_H
|
| 16 |
+
|
| 17 |
+
#include <vector>
|
| 18 |
+
#include <new>
|
| 19 |
+
#include <algorithm>
|
| 20 |
+
#include <string.h>
|
| 21 |
+
#ifdef USE_UNORDERED_MAP
|
| 22 |
+
#include <tr1/functional_hash.h>
|
| 23 |
+
#endif
|
| 24 |
+
|
| 25 |
+
// Forward declaration because of friend comparison operator declaration below.
|
| 26 |
+
template<class OrientationIndexType, class TokenIndexType> class IndexedPhrasesPair;
|
| 27 |
+
|
| 28 |
+
#ifdef USE_UNORDERED_MAP
|
| 29 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 30 |
+
class IndexedPhrasePairHasher;
|
| 31 |
+
|
| 32 |
+
// Comparison operator (is going to be declared as friend).
|
| 33 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 34 |
+
bool operator== (const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& lhs, const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& rhs);
|
| 35 |
+
#else
|
| 36 |
+
// Comparison operator (is going to be declared as friend).
|
| 37 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 38 |
+
bool operator< (const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& lhs, const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& rhs);
|
| 39 |
+
#endif
|
| 40 |
+
|
| 41 |
+
/**
|
| 42 |
+
* Structure capable of holding a phrase pair consisting of:
|
| 43 |
+
* a) source phrase
|
| 44 |
+
* b) target phrase
|
| 45 |
+
* c) word alignment
|
| 46 |
+
* d) orientation info
|
| 47 |
+
* @param OrientationIndexType
|
| 48 |
+
* @param TokenIndexType - datatype for token indices.
|
| 49 |
+
*/
|
| 50 |
+
template<class OrientationIndexType = unsigned char, class TokenIndexType = unsigned int>
|
| 51 |
+
class IndexedPhrasesPair {
|
| 52 |
+
public:
|
| 53 |
+
|
| 54 |
+
typedef TokenIndexType token_index_t;
|
| 55 |
+
|
| 56 |
+
typedef OrientationIndexType orientation_info_index_t;
|
| 57 |
+
|
| 58 |
+
typedef std::vector<TokenIndexType> phrase_t;
|
| 59 |
+
|
| 60 |
+
// A single alignment point.
|
| 61 |
+
typedef unsigned char alignment_point_t;
|
| 62 |
+
|
| 63 |
+
// A single pair of alignments points.
|
| 64 |
+
typedef std::pair<alignment_point_t, alignment_point_t> alignment_pair_t;
|
| 65 |
+
|
| 66 |
+
// A single phrase alignment (eg. 0-0 0-1 1-2)
|
| 67 |
+
typedef std::vector<alignment_pair_t> alignment_t;
|
| 68 |
+
|
| 69 |
+
#ifdef USE_UNORDERED_MAP
|
| 70 |
+
// Unordered map requires hashing functor object.
|
| 71 |
+
typedef IndexedPhrasePairHasher<OrientationIndexType, TokenIndexType> Hash;
|
| 72 |
+
#endif
|
| 73 |
+
|
| 74 |
+
private:
|
| 75 |
+
|
| 76 |
+
/** @var Source and target phrase as array of respective token indices */
|
| 77 |
+
token_index_t* _data;
|
| 78 |
+
|
| 79 |
+
/** @var A single phrase alignment stored in array */
|
| 80 |
+
alignment_point_t* _alignment;
|
| 81 |
+
|
| 82 |
+
/** @var Index of orientation info string */
|
| 83 |
+
orientation_info_index_t _orientationInfoIndex;
|
| 84 |
+
|
| 85 |
+
alignment_point_t _srcPhraseLength;
|
| 86 |
+
|
| 87 |
+
alignment_point_t _tgtPhraseLength;
|
| 88 |
+
|
| 89 |
+
alignment_point_t _alignmentLength;
|
| 90 |
+
|
| 91 |
+
public:
|
| 92 |
+
|
| 93 |
+
IndexedPhrasesPair(void): _data(NULL), _alignment(NULL), _orientationInfoIndex(0), _srcPhraseLength(0), _tgtPhraseLength(0), _alignmentLength(0) {}
|
| 94 |
+
|
| 95 |
+
IndexedPhrasesPair(const phrase_t& srcPhrase, const phrase_t& tgtPhrase, orientation_info_index_t orientationInfo, const alignment_t& alignment);
|
| 96 |
+
|
| 97 |
+
IndexedPhrasesPair(const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& copy);
|
| 98 |
+
|
| 99 |
+
~IndexedPhrasesPair(void);
|
| 100 |
+
|
| 101 |
+
IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& operator=(const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& other);
|
| 102 |
+
|
| 103 |
+
phrase_t srcPhrase(void) const { return phrase_t(_data, _data + _srcPhraseLength); }
|
| 104 |
+
|
| 105 |
+
phrase_t tgtPhrase(void) const { return phrase_t(_data + _srcPhraseLength, _data + _srcPhraseLength + _tgtPhraseLength); }
|
| 106 |
+
|
| 107 |
+
orientation_info_index_t orientationInfo(void) const { return _orientationInfoIndex; }
|
| 108 |
+
|
| 109 |
+
alignment_t alignment(void) const;
|
| 110 |
+
|
| 111 |
+
const alignment_point_t * alignmentData(void) const { return _alignment; }
|
| 112 |
+
|
| 113 |
+
alignment_point_t alignmentLength(void) const { return _alignmentLength; }
|
| 114 |
+
|
| 115 |
+
#ifdef USE_UNORDERED_MAP
|
| 116 |
+
friend class IndexedPhrasePairHasher<OrientationIndexType, TokenIndexType>;
|
| 117 |
+
friend bool operator== <> (const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& lhs, const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& rhs);
|
| 118 |
+
#else
|
| 119 |
+
friend bool operator< <> (const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& lhs, const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& rhs);
|
| 120 |
+
#endif
|
| 121 |
+
};
|
| 122 |
+
|
| 123 |
+
|
| 124 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 125 |
+
//// IndexedPhrasesPair IMPLEMENTATION /////////////////////////////////////////
|
| 126 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 127 |
+
|
| 128 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 129 |
+
IndexedPhrasesPair<OrientationIndexType, TokenIndexType>::IndexedPhrasesPair(const phrase_t& srcPhrase, const phrase_t& tgtPhrase, orientation_info_index_t orientationInfo, const alignment_t& alignment):
|
| 130 |
+
_data(NULL), _alignment(NULL), _orientationInfoIndex(orientationInfo), _srcPhraseLength(static_cast<alignment_point_t>(srcPhrase.size())), _tgtPhraseLength(static_cast<alignment_point_t>(tgtPhrase.size())), _alignmentLength(alignment.size()) {
|
| 131 |
+
|
| 132 |
+
// Save alignment.
|
| 133 |
+
_alignment = new alignment_point_t[2 * _alignmentLength]; // Note: *2 for each pair.
|
| 134 |
+
for ( size_t i = 0; i < alignment.size(); ++i ) {
|
| 135 |
+
_alignment[i*2] = alignment[i].first;
|
| 136 |
+
_alignment[i*2 + 1] = alignment[i].second;
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
// Save data.
|
| 140 |
+
_data = new token_index_t[_srcPhraseLength + _tgtPhraseLength];
|
| 141 |
+
std::copy(srcPhrase.begin(), srcPhrase.end(), _data);
|
| 142 |
+
std::copy(tgtPhrase.begin(), tgtPhrase.end(), _data + _srcPhraseLength);
|
| 143 |
+
|
| 144 |
+
}
|
| 145 |
+
|
| 146 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 147 |
+
IndexedPhrasesPair<OrientationIndexType, TokenIndexType>::IndexedPhrasesPair(const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& copy):
|
| 148 |
+
_data(NULL), _alignment(NULL), _orientationInfoIndex(copy._orientationInfoIndex), _srcPhraseLength(copy._srcPhraseLength), _tgtPhraseLength(copy._tgtPhraseLength), _alignmentLength(copy._alignmentLength) {
|
| 149 |
+
|
| 150 |
+
// Copy alignment.
|
| 151 |
+
// alignment_point_t alignmentLength = std::max(_srcPhraseLength, _tgtPhraseLength);
|
| 152 |
+
_alignment = new alignment_point_t[2 * _alignmentLength]; // Note: *2 for each pair.
|
| 153 |
+
memcpy(_alignment, copy._alignment, _alignmentLength * 2 * sizeof(alignment_point_t));
|
| 154 |
+
|
| 155 |
+
// Copy data.
|
| 156 |
+
_data = new token_index_t[_srcPhraseLength + _tgtPhraseLength];
|
| 157 |
+
std::copy(copy._data, copy._data + _srcPhraseLength + _tgtPhraseLength, _data);
|
| 158 |
+
}
|
| 159 |
+
|
| 160 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 161 |
+
IndexedPhrasesPair<OrientationIndexType, TokenIndexType>::~IndexedPhrasesPair(void) {
|
| 162 |
+
delete[] _alignment;
|
| 163 |
+
delete[] _data;
|
| 164 |
+
}
|
| 165 |
+
|
| 166 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 167 |
+
IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& IndexedPhrasesPair<OrientationIndexType, TokenIndexType>::operator=(const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& other) {
|
| 168 |
+
|
| 169 |
+
if ( this != &other ) {
|
| 170 |
+
|
| 171 |
+
// Copy alignment.
|
| 172 |
+
_alignmentLength = other._alignmentLength;
|
| 173 |
+
// alignment_point_t alignmentLength = std::max(_srcPhraseLength, _tgtPhraseLength);
|
| 174 |
+
alignment_point_t * alignment = new alignment_point_t[2 * _alignmentLength]; // Note: *2 for each pair.
|
| 175 |
+
memcpy(alignment, other._alignment, _alignmentLength * 2 * sizeof(alignment_point_t));
|
| 176 |
+
if ( _alignment != NULL ) {
|
| 177 |
+
delete[] _alignment; // !
|
| 178 |
+
}
|
| 179 |
+
_alignment = alignment; // !
|
| 180 |
+
|
| 181 |
+
// Copy data.
|
| 182 |
+
_srcPhraseLength = other._srcPhraseLength;
|
| 183 |
+
_tgtPhraseLength = other._tgtPhraseLength;
|
| 184 |
+
token_index_t * data = new token_index_t[_srcPhraseLength + _tgtPhraseLength];
|
| 185 |
+
std::copy(other._data, other._data + _srcPhraseLength + _tgtPhraseLength, data);
|
| 186 |
+
if ( _data != NULL ) {
|
| 187 |
+
delete[] _data; // !
|
| 188 |
+
}
|
| 189 |
+
_data = data; // !
|
| 190 |
+
|
| 191 |
+
//
|
| 192 |
+
_orientationInfoIndex = other._orientationInfoIndex;
|
| 193 |
+
|
| 194 |
+
}
|
| 195 |
+
|
| 196 |
+
return *this;
|
| 197 |
+
}
|
| 198 |
+
|
| 199 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 200 |
+
typename IndexedPhrasesPair<OrientationIndexType, TokenIndexType>::alignment_t IndexedPhrasesPair<OrientationIndexType, TokenIndexType>::alignment(void) const {
|
| 201 |
+
alignment_t a;
|
| 202 |
+
|
| 203 |
+
//alignment_point_t alignmentLength = std::max(_srcPhraseLength, _tgtPhraseLength);
|
| 204 |
+
for ( size_t i = 0; i < _alignmentLength; ++i ) {
|
| 205 |
+
a.push_back(alignment_pair_t(_alignment[2*i], _alignment[2*i + 1]));
|
| 206 |
+
}
|
| 207 |
+
|
| 208 |
+
return a;
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
#ifdef USE_UNORDERED_MAP
|
| 212 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 213 |
+
class IndexedPhrasePairHasher: public std::unary_function<IndexedPhrasesPair<OrientationIndexType, TokenIndexType>, size_t> {
|
| 214 |
+
|
| 215 |
+
typedef typename IndexedPhrasesPair<OrientationIndexType, TokenIndexType>::alignment_point_t alignment_point_t;
|
| 216 |
+
|
| 217 |
+
std::tr1::hash<TokenIndexType> _hash;
|
| 218 |
+
|
| 219 |
+
public:
|
| 220 |
+
size_t operator()(const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& phrasePair) const {
|
| 221 |
+
size_t hash = 0;
|
| 222 |
+
for ( alignment_point_t i = 0; i < phrasePair._srcPhraseLength + phrasePair._tgtPhraseLength; ++i ) {
|
| 223 |
+
hash ^= _hash(phrasePair._data[i]);
|
| 224 |
+
}
|
| 225 |
+
return hash;
|
| 226 |
+
}
|
| 227 |
+
};
|
| 228 |
+
|
| 229 |
+
template<class OrientationIndexType, class TokenIndexType>
|
| 230 |
+
bool operator== (const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& lhs, const IndexedPhrasesPair<OrientationIndexType, TokenIndexType>& rhs) {
|
| 231 |
+
|
| 232 |
+
typedef typename IndexedPhrasesPair<OrientationIndexType, TokenIndexType>::alignment_point_t alignment_point_t;
|
| 233 |
+
typedef typename IndexedPhrasesPair<OrientationIndexType, TokenIndexType>::token_index_t string_index_t;
|
| 234 |
+
|
| 235 |
+
// Alignments comparable?
|
| 236 |
+
if ( lhs._alignmentLength != rhs._alignmentLength ) {
|
| 237 |
+
return false;
|
| 238 |
+
}
|
| 239 |
+
|
| 240 |
+
// Same alignment length -> compare alignments.
|
| 241 |
+
int cmp = memcmp(lhs._alignment, rhs._alignment, lhs._alignmentLength * 2 * sizeof(alignment_point_t));
|
| 242 |
+
|
| 243 |
+
if ( cmp != 0 ) {
|
| 244 |
+
// Alignments differ.
|
| 245 |
+
return false;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
// Alignments are equal, compare phrases (data).
|
| 249 |
+
|
| 250 |
+
if ( lhs._srcPhraseLength != rhs._srcPhraseLength ) {
|
| 251 |
+
// Source phrase lengths differs.
|
| 252 |
+
return false;
|
| 253 |
+
}
|
| 254 |
+
|
| 255 |
+
if ( lhs._tgtPhraseLength != rhs._tgtPhraseLength ) {
|
| 256 |
+
// Target phrase lengths differs.
|
| 257 |
+
return false;
|
| 258 |
+
}
|
| 259 |
+
|
| 260 |
+
// Phrases have matching lengths, compare the data in the end:
|
| 261 |
+
cmp = memcmp(lhs._data, rhs._data, (lhs._srcPhraseLength + lhs._tgtPhraseLength) * sizeof(string_index_t));
|
| 262 |
+
|
| 263 |
+
if ( cmp != 0 ) {
|
| 264 |
+
// Data differ.
|
| 265 |
+
return false;
|
| 266 |
+
}
|
| 267 |
+
|
| 268 |
+
// Compare orientation info in the end.
|
| 269 |
+
return lhs._orientationInfoIndex == rhs._orientationInfoIndex;
|
| 270 |
+
}
|
| 271 |
+
#else
|
| 272 |
+
template<class OrientationIndexType, class StringIndexType>
|
| 273 |
+
bool operator< (const IndexedPhrasesPair<OrientationIndexType, StringIndexType>& lhs, const IndexedPhrasesPair<OrientationIndexType, StringIndexType>& rhs) {
|
| 274 |
+
|
| 275 |
+
typedef typename IndexedPhrasesPair<OrientationIndexType, StringIndexType>::alignment_point_t alignment_point_t;
|
| 276 |
+
typedef typename IndexedPhrasesPair<OrientationIndexType, StringIndexType>::token_index_t string_index_t;
|
| 277 |
+
|
| 278 |
+
// Alignments comparable?
|
| 279 |
+
if ( lhs._alignmentLength != rhs._alignmentLength ) {
|
| 280 |
+
// Shorter alignment length => lesser item.
|
| 281 |
+
return lhs._alignmentLength < rhs._alignmentLength;
|
| 282 |
+
}
|
| 283 |
+
|
| 284 |
+
// Same alignment length -> compare alignments.
|
| 285 |
+
int cmp = memcmp(lhs._alignment, rhs._alignment, lhs._alignmentLength * 2 * sizeof(alignment_point_t));
|
| 286 |
+
|
| 287 |
+
if ( cmp != 0 ) {
|
| 288 |
+
// Alignments differ.
|
| 289 |
+
return cmp < 0;
|
| 290 |
+
}
|
| 291 |
+
|
| 292 |
+
// Alignments are equal, compare phrases (data).
|
| 293 |
+
|
| 294 |
+
if ( lhs._srcPhraseLength != rhs._srcPhraseLength ) {
|
| 295 |
+
// Source phrase lengths differs.
|
| 296 |
+
return lhs._srcPhraseLength < rhs._srcPhraseLength;
|
| 297 |
+
}
|
| 298 |
+
|
| 299 |
+
if ( lhs._tgtPhraseLength != rhs._tgtPhraseLength ) {
|
| 300 |
+
// Target phrase lengths differs.
|
| 301 |
+
return lhs._tgtPhraseLength < rhs._tgtPhraseLength;
|
| 302 |
+
}
|
| 303 |
+
|
| 304 |
+
// Phrases have matching lengths, compare the data in the end:
|
| 305 |
+
cmp = memcmp(lhs._data, rhs._data, (lhs._srcPhraseLength + lhs._tgtPhraseLength) * sizeof(string_index_t));
|
| 306 |
+
if ( cmp != 0 ) {
|
| 307 |
+
// Data differ.
|
| 308 |
+
return cmp < 0;
|
| 309 |
+
}
|
| 310 |
+
|
| 311 |
+
// Compare orientation info in the end.
|
| 312 |
+
return lhs._orientationInfoIndex < rhs._orientationInfoIndex;
|
| 313 |
+
}
|
| 314 |
+
#endif
|
| 315 |
+
|
| 316 |
+
#endif /* INDEXEDPHRASESPAIR_H */
|
mosesdecoder/contrib/eppex/LossyCounter.h
ADDED
|
@@ -0,0 +1,388 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* LossyCounter - implementation of Lossy Counting algorithm as described in:
|
| 3 |
+
* Approximate Frequency Counts over Data Streams, G.S.Manku & R.Motwani, (2002)
|
| 4 |
+
*
|
| 5 |
+
* (C) Ceslav Przywara, UFAL MFF UK, 2011
|
| 6 |
+
*
|
| 7 |
+
* Implementation note: define USE_UNORDERED_MAP to use std::tr1::unordered_map
|
| 8 |
+
* instead std::map for storage of lossy counted items.
|
| 9 |
+
*
|
| 10 |
+
* $Id$
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
#ifndef LOSSYCOUNTER_H
|
| 14 |
+
#define LOSSYCOUNTER_H
|
| 15 |
+
|
| 16 |
+
#include <cstddef>
|
| 17 |
+
#include <cmath>
|
| 18 |
+
#ifdef USE_UNORDERED_MAP
|
| 19 |
+
#include <tr1/unordered_map>
|
| 20 |
+
#else
|
| 21 |
+
#include <map>
|
| 22 |
+
#endif
|
| 23 |
+
#include <iterator>
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
// Iterators:
|
| 27 |
+
template<class T>
|
| 28 |
+
class LossyCounterIterator;
|
| 29 |
+
|
| 30 |
+
template<class T>
|
| 31 |
+
class LossyCounterErasingIterator;
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 35 |
+
/////////////////////////// Lossy Counter Interface ////////////////////////////
|
| 36 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 37 |
+
|
| 38 |
+
/**
|
| 39 |
+
* Implementation of Lossy Counting algorithm as described in:
|
| 40 |
+
* Approximate Frequency Counts over Data Streams, G.S.Manku & R.Motwani, (2002)
|
| 41 |
+
*/
|
| 42 |
+
template<class T>
|
| 43 |
+
class LossyCounter {
|
| 44 |
+
|
| 45 |
+
public:
|
| 46 |
+
|
| 47 |
+
// Error parameter type definition.
|
| 48 |
+
typedef double error_t;
|
| 49 |
+
|
| 50 |
+
// Support parameter type definition.
|
| 51 |
+
typedef double support_t;
|
| 52 |
+
|
| 53 |
+
// Counters type definition.
|
| 54 |
+
typedef size_t counter_t;
|
| 55 |
+
|
| 56 |
+
// Frequency counter type definition (f).
|
| 57 |
+
typedef counter_t frequency_t;
|
| 58 |
+
|
| 59 |
+
// Maximum error counter type definition (Δ).
|
| 60 |
+
typedef counter_t maximum_error_t;
|
| 61 |
+
|
| 62 |
+
// Pair: frequency (f) and possible maximum error (Δ).
|
| 63 |
+
typedef std::pair<frequency_t, maximum_error_t> item_counts_t;
|
| 64 |
+
#ifdef USE_UNORDERED_MAP
|
| 65 |
+
typedef std::tr1::unordered_map<T, item_counts_t, typename T::Hash> storage_t;
|
| 66 |
+
#else
|
| 67 |
+
// Mapping: counted item and its frequency and max. error counts.
|
| 68 |
+
typedef std::map<T, item_counts_t> storage_t;
|
| 69 |
+
#endif
|
| 70 |
+
// We provide own version of const iterator.
|
| 71 |
+
typedef LossyCounterIterator<T> const_iterator;
|
| 72 |
+
|
| 73 |
+
// Special type of iterator: leaves no item behind!
|
| 74 |
+
typedef LossyCounterErasingIterator<T> erasing_iterator;
|
| 75 |
+
|
| 76 |
+
/** @var Error parameter value (ε) */
|
| 77 |
+
const error_t error;
|
| 78 |
+
|
| 79 |
+
/** @var Supprort parameter value (s) */
|
| 80 |
+
const support_t support;
|
| 81 |
+
|
| 82 |
+
/** @var Width of single bucket (w) */
|
| 83 |
+
const counter_t bucketWidth; // ceil(1/error)
|
| 84 |
+
|
| 85 |
+
private:
|
| 86 |
+
|
| 87 |
+
/** @var Current epoch bucket ID (b-current) */
|
| 88 |
+
counter_t _bucketId;
|
| 89 |
+
|
| 90 |
+
/** @var Count of items read in so far (N) */
|
| 91 |
+
counter_t _count;
|
| 92 |
+
|
| 93 |
+
/** @var Items storage (Ɗ) */
|
| 94 |
+
storage_t _storage;
|
| 95 |
+
|
| 96 |
+
public:
|
| 97 |
+
|
| 98 |
+
/**
|
| 99 |
+
* Set error to 0 to disable lossy-pruning.
|
| 100 |
+
* @param _error Value from interval [0.0, 1.0).
|
| 101 |
+
* @param _support Value from interval [0.0, 1.0).
|
| 102 |
+
*/
|
| 103 |
+
LossyCounter<T>(error_t _error, support_t _support):
|
| 104 |
+
error(_error), support(_support), bucketWidth(_error > 0.0 ? ceil(1/_error) : 0), _bucketId(1), _count(0), _storage() {}
|
| 105 |
+
|
| 106 |
+
/**
|
| 107 |
+
* @param item Item to be added to storage.
|
| 108 |
+
*/
|
| 109 |
+
void add(const T& item);
|
| 110 |
+
|
| 111 |
+
/**
|
| 112 |
+
* @return Constant iterator pointing to the beginning of storage.
|
| 113 |
+
*/
|
| 114 |
+
const_iterator begin(void) const { return LossyCounterIterator<T>(threshold(), _storage.begin(), _storage.end()); }
|
| 115 |
+
|
| 116 |
+
/**
|
| 117 |
+
* @return Constant iterator pointing to the end of storage.
|
| 118 |
+
*/
|
| 119 |
+
const_iterator end(void) const { return LossyCounterIterator<T>(_storage.end()); }
|
| 120 |
+
|
| 121 |
+
/**
|
| 122 |
+
* @return Erasing iterator pointing to the beginning of storage.
|
| 123 |
+
*/
|
| 124 |
+
erasing_iterator beginErase(void) { return LossyCounterErasingIterator<T>(threshold(), _storage); }
|
| 125 |
+
|
| 126 |
+
/**
|
| 127 |
+
* @return Erasing iterator pointing to the end of storage.
|
| 128 |
+
*/
|
| 129 |
+
erasing_iterator endErase(void) { return LossyCounterErasingIterator<T>(_storage); }
|
| 130 |
+
|
| 131 |
+
/**
|
| 132 |
+
* @return Current bucket ID.
|
| 133 |
+
*/
|
| 134 |
+
counter_t bucketId(void) const { return _bucketId; }
|
| 135 |
+
|
| 136 |
+
/**
|
| 137 |
+
* @return Number of items added to storage so far (N).
|
| 138 |
+
*/
|
| 139 |
+
counter_t count(void) const { return _count; }
|
| 140 |
+
|
| 141 |
+
/**
|
| 142 |
+
* @return Number of items currently in storage.
|
| 143 |
+
*/
|
| 144 |
+
size_t size(void) const { return _storage.size(); }
|
| 145 |
+
|
| 146 |
+
/**
|
| 147 |
+
* @param positive Return sN value instead of (s-ε)N?
|
| 148 |
+
* @return Threshold (either positive or negative) value.
|
| 149 |
+
*/
|
| 150 |
+
double threshold(bool positive = false) const { return positive ? support * _count : (support - error) * _count; }
|
| 151 |
+
|
| 152 |
+
/**
|
| 153 |
+
* @return The maximum value of which estimated frequencies are less than the true frequencies.
|
| 154 |
+
*/
|
| 155 |
+
double maxError(void) const { return error * _count; }
|
| 156 |
+
|
| 157 |
+
/**
|
| 158 |
+
* @return True, if it's prunning time right now!
|
| 159 |
+
*/
|
| 160 |
+
bool aboutToPrune(void) const { return (bucketWidth != 0) && ((_count % bucketWidth) == 0); }
|
| 161 |
+
|
| 162 |
+
private:
|
| 163 |
+
|
| 164 |
+
/**
|
| 165 |
+
* Prunes counts table.
|
| 166 |
+
*/
|
| 167 |
+
void prune(void);
|
| 168 |
+
|
| 169 |
+
};
|
| 170 |
+
|
| 171 |
+
|
| 172 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 173 |
+
/////////////////////// Lossy Counter Iterator Interface ///////////////////////
|
| 174 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 175 |
+
|
| 176 |
+
/**
|
| 177 |
+
* Lossy counter iterator is designed to iterate over items passing the current
|
| 178 |
+
* threshold.
|
| 179 |
+
*/
|
| 180 |
+
template<class T>
|
| 181 |
+
class LossyCounterIterator: public std::iterator<std::forward_iterator_tag, typename LossyCounter<T>::storage_t::value_type> {
|
| 182 |
+
public:
|
| 183 |
+
|
| 184 |
+
typedef LossyCounterIterator<T> self_type;
|
| 185 |
+
|
| 186 |
+
typedef typename LossyCounter<T>::storage_t::const_iterator const_iterator;
|
| 187 |
+
|
| 188 |
+
protected:
|
| 189 |
+
|
| 190 |
+
/** @var Minimum frequency threshold */
|
| 191 |
+
const double _threshold;
|
| 192 |
+
|
| 193 |
+
/** @var Current position of iterator (based on underlying container) */
|
| 194 |
+
const_iterator _current;
|
| 195 |
+
|
| 196 |
+
/** @var End position in underlying container */
|
| 197 |
+
const const_iterator _end;
|
| 198 |
+
|
| 199 |
+
public:
|
| 200 |
+
|
| 201 |
+
// Constructors.
|
| 202 |
+
|
| 203 |
+
LossyCounterIterator<T>(const_iterator end):
|
| 204 |
+
_threshold(0), _current(_end), _end(end) {}
|
| 205 |
+
|
| 206 |
+
LossyCounterIterator<T>(double threshold, const_iterator begin, const_iterator end):
|
| 207 |
+
_threshold(threshold), _current(begin), _end(end) {
|
| 208 |
+
// Forward the iterator to the first valid item (with frequency above threshold)!
|
| 209 |
+
this->forward(true);
|
| 210 |
+
}
|
| 211 |
+
|
| 212 |
+
// Operators.
|
| 213 |
+
|
| 214 |
+
/**
|
| 215 |
+
* Only items passing the threshold are included in iteration.
|
| 216 |
+
*/
|
| 217 |
+
LossyCounterIterator<T> operator++(void); // ++this
|
| 218 |
+
|
| 219 |
+
/**
|
| 220 |
+
* Only items passing the threshold are included in iteration.
|
| 221 |
+
*/
|
| 222 |
+
LossyCounterIterator<T> operator++(int junk); // this++
|
| 223 |
+
|
| 224 |
+
bool operator==(const self_type& rhs) const { return _current == rhs._current; }
|
| 225 |
+
|
| 226 |
+
bool operator!=(const self_type& rhs) const { return _current != rhs._current; }
|
| 227 |
+
|
| 228 |
+
// Interface.
|
| 229 |
+
|
| 230 |
+
/**
|
| 231 |
+
* @return Current item.
|
| 232 |
+
*/
|
| 233 |
+
const T& item(void) const { return _current->first; }
|
| 234 |
+
|
| 235 |
+
/**
|
| 236 |
+
* @return Current item's frequency.
|
| 237 |
+
*/
|
| 238 |
+
typename LossyCounter<T>::frequency_t frequency(void) const { return _current->second.first; }
|
| 239 |
+
|
| 240 |
+
/**
|
| 241 |
+
* @return Current item's maximum error.
|
| 242 |
+
*/
|
| 243 |
+
typename LossyCounter<T>::error_t max_error(void) const { return _current->second.second; }
|
| 244 |
+
|
| 245 |
+
protected:
|
| 246 |
+
|
| 247 |
+
/**
|
| 248 |
+
* @param init Check also the item that iterator _current points to? Useful when initializing.
|
| 249 |
+
*/
|
| 250 |
+
void forward(bool init);
|
| 251 |
+
|
| 252 |
+
};
|
| 253 |
+
|
| 254 |
+
/**
|
| 255 |
+
* Lossy counter iterator erasing all items passed by.
|
| 256 |
+
*/
|
| 257 |
+
template<class T>
|
| 258 |
+
class LossyCounterErasingIterator: public LossyCounterIterator<T> {
|
| 259 |
+
public:
|
| 260 |
+
|
| 261 |
+
typedef typename LossyCounter<T>::storage_t storage_t;
|
| 262 |
+
|
| 263 |
+
private:
|
| 264 |
+
|
| 265 |
+
storage_t& _storage;
|
| 266 |
+
|
| 267 |
+
public:
|
| 268 |
+
|
| 269 |
+
// Constructors - have to be aware of the "mother" container.
|
| 270 |
+
|
| 271 |
+
LossyCounterErasingIterator<T>(storage_t& storage): LossyCounterIterator<T>(storage.end()), _storage(storage) {}
|
| 272 |
+
|
| 273 |
+
LossyCounterErasingIterator<T>(double threshold, storage_t& storage): LossyCounterIterator<T>(threshold, storage.begin(), storage.end()), _storage(storage) {}
|
| 274 |
+
|
| 275 |
+
protected:
|
| 276 |
+
|
| 277 |
+
/**
|
| 278 |
+
* @param init Check also the item that iterator _current points to? Useful when initializing.
|
| 279 |
+
*/
|
| 280 |
+
void forward(bool init);
|
| 281 |
+
|
| 282 |
+
};
|
| 283 |
+
|
| 284 |
+
|
| 285 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 286 |
+
//////////////////////// Lossy Counter Implementation //////////////////////////
|
| 287 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 288 |
+
|
| 289 |
+
template<class T>
|
| 290 |
+
void LossyCounter<T>::add(const T& item) {
|
| 291 |
+
|
| 292 |
+
typename storage_t::iterator iter = _storage.find(item);
|
| 293 |
+
|
| 294 |
+
if ( iter == _storage.end() ) {
|
| 295 |
+
// Insert new item with appropriate frequency and maximum-possible-error.
|
| 296 |
+
_storage.insert(std::make_pair(item, item_counts_t(1, _bucketId - 1)));
|
| 297 |
+
}
|
| 298 |
+
else {
|
| 299 |
+
// Update frequency of existing.
|
| 300 |
+
iter->second.first += 1;
|
| 301 |
+
}
|
| 302 |
+
|
| 303 |
+
// Finally increment the counter and check if the table shall be pruned.
|
| 304 |
+
++_count;
|
| 305 |
+
if ( this->aboutToPrune() ) {
|
| 306 |
+
this->prune();
|
| 307 |
+
++_bucketId;
|
| 308 |
+
}
|
| 309 |
+
}
|
| 310 |
+
|
| 311 |
+
|
| 312 |
+
template<class T>
|
| 313 |
+
void LossyCounter<T>::prune(void) {
|
| 314 |
+
|
| 315 |
+
for ( typename storage_t::iterator iter = _storage.begin(); iter != _storage.end(); /* Incrementation step missing intentionally! */ ) {
|
| 316 |
+
// Prune, if: maximum possible error + frequency <= ID of current bucket
|
| 317 |
+
if ( (iter->second.first + iter->second.second) <= _bucketId ) {
|
| 318 |
+
_storage.erase(iter++); // Post increment!
|
| 319 |
+
}
|
| 320 |
+
else {
|
| 321 |
+
++iter;
|
| 322 |
+
}
|
| 323 |
+
}
|
| 324 |
+
|
| 325 |
+
}
|
| 326 |
+
|
| 327 |
+
|
| 328 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 329 |
+
//////////////////// Lossy Counter Iterator Implementation /////////////////////
|
| 330 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 331 |
+
|
| 332 |
+
template<class T>
|
| 333 |
+
LossyCounterIterator<T> LossyCounterIterator<T>::operator++(void) {
|
| 334 |
+
this->forward();
|
| 335 |
+
return *this;
|
| 336 |
+
}
|
| 337 |
+
|
| 338 |
+
|
| 339 |
+
template<class T>
|
| 340 |
+
LossyCounterIterator<T> LossyCounterIterator<T>::operator++(int junk) {
|
| 341 |
+
self_type iter = *this;
|
| 342 |
+
this->forward();
|
| 343 |
+
return iter;
|
| 344 |
+
}
|
| 345 |
+
|
| 346 |
+
template<class T>
|
| 347 |
+
void LossyCounterIterator<T>::forward(bool init = false) {
|
| 348 |
+
if ( _current == _end ) {
|
| 349 |
+
return; // Nowhere to go, we're at the end already.
|
| 350 |
+
}
|
| 351 |
+
if ( init && (this->frequency() >= _threshold) ) {
|
| 352 |
+
// Ok, we're initing and we're already at the item passing the threshold.
|
| 353 |
+
return;
|
| 354 |
+
}
|
| 355 |
+
// Keep going until we reach the end or the next item with frequency NOT below the threshold.
|
| 356 |
+
while ( (++_current != _end) && (this->frequency() < _threshold) );
|
| 357 |
+
}
|
| 358 |
+
|
| 359 |
+
|
| 360 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 361 |
+
//////////////// Lossy Counter Erasing Iterator Implementation /////////////////
|
| 362 |
+
////////////////////////////////////////////////////////////////////////////////
|
| 363 |
+
|
| 364 |
+
template<class T>
|
| 365 |
+
void LossyCounterErasingIterator<T>::forward(bool init = false) {
|
| 366 |
+
if (this->_current == this->_end ) {
|
| 367 |
+
return; // Nowhere to go, we're at the end already.
|
| 368 |
+
}
|
| 369 |
+
if ( init && (this->frequency() >= this->_threshold) ) {
|
| 370 |
+
// Ok, we're initing and we're already at the item passing the threshold.
|
| 371 |
+
return;
|
| 372 |
+
}
|
| 373 |
+
// This is where erasing forward() and std forward() differ:
|
| 374 |
+
typename LossyCounterIterator<T>::const_iterator previous = this->_current;
|
| 375 |
+
// Keep going...
|
| 376 |
+
while ( ++this->_current != this->_end ) {
|
| 377 |
+
if ( this->frequency() < this->_threshold ) {
|
| 378 |
+
// Get rid of previous, cause we'll go on.
|
| 379 |
+
_storage.erase(previous);
|
| 380 |
+
previous = this->_current;
|
| 381 |
+
} else {
|
| 382 |
+
break;
|
| 383 |
+
}
|
| 384 |
+
}
|
| 385 |
+
_storage.erase(previous); // !
|
| 386 |
+
}
|
| 387 |
+
|
| 388 |
+
#endif /* LOSSYCOUNTER_H */
|
mosesdecoder/contrib/eppex/Makefile.in
ADDED
|
@@ -0,0 +1,762 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
| 2 |
+
# @configure_input@
|
| 3 |
+
|
| 4 |
+
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
| 5 |
+
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
| 6 |
+
# Inc.
|
| 7 |
+
# This Makefile.in is free software; the Free Software Foundation
|
| 8 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 9 |
+
# with or without modifications, as long as this notice is preserved.
|
| 10 |
+
|
| 11 |
+
# This program is distributed in the hope that it will be useful,
|
| 12 |
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
| 13 |
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
| 14 |
+
# PARTICULAR PURPOSE.
|
| 15 |
+
|
| 16 |
+
@SET_MAKE@
|
| 17 |
+
|
| 18 |
+
# eppex - epochal phrase table extraction for Statistical Machine Translation
|
| 19 |
+
# Ceslav Przywara, UFAL MFF UK, Prague, 2011
|
| 20 |
+
# $Id: $
|
| 21 |
+
|
| 22 |
+
# Process this file with automake to produce Makefile.in
|
| 23 |
+
|
| 24 |
+
VPATH = @srcdir@
|
| 25 |
+
pkgdatadir = $(datadir)/@PACKAGE@
|
| 26 |
+
pkgincludedir = $(includedir)/@PACKAGE@
|
| 27 |
+
pkglibdir = $(libdir)/@PACKAGE@
|
| 28 |
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
| 29 |
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
| 30 |
+
install_sh_DATA = $(install_sh) -c -m 644
|
| 31 |
+
install_sh_PROGRAM = $(install_sh) -c
|
| 32 |
+
install_sh_SCRIPT = $(install_sh) -c
|
| 33 |
+
INSTALL_HEADER = $(INSTALL_DATA)
|
| 34 |
+
transform = $(program_transform_name)
|
| 35 |
+
NORMAL_INSTALL = :
|
| 36 |
+
PRE_INSTALL = :
|
| 37 |
+
POST_INSTALL = :
|
| 38 |
+
NORMAL_UNINSTALL = :
|
| 39 |
+
PRE_UNINSTALL = :
|
| 40 |
+
POST_UNINSTALL = :
|
| 41 |
+
bin_PROGRAMS = counter$(EXEEXT) eppex$(EXEEXT)
|
| 42 |
+
subdir = .
|
| 43 |
+
DIST_COMMON = $(am__configure_deps) $(srcdir)/Makefile.am \
|
| 44 |
+
$(srcdir)/Makefile.in $(srcdir)/config.h.in \
|
| 45 |
+
$(top_srcdir)/configure depcomp install-sh missing
|
| 46 |
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
| 47 |
+
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_boost_base.m4 \
|
| 48 |
+
$(top_srcdir)/configure.ac
|
| 49 |
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
| 50 |
+
$(ACLOCAL_M4)
|
| 51 |
+
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
| 52 |
+
configure.lineno config.status.lineno
|
| 53 |
+
mkinstalldirs = $(install_sh) -d
|
| 54 |
+
CONFIG_HEADER = config.h
|
| 55 |
+
CONFIG_CLEAN_FILES =
|
| 56 |
+
CONFIG_CLEAN_VPATH_FILES =
|
| 57 |
+
am__installdirs = "$(DESTDIR)$(bindir)"
|
| 58 |
+
PROGRAMS = $(bin_PROGRAMS)
|
| 59 |
+
am_counter_OBJECTS = counter-tables-core.$(OBJEXT) \
|
| 60 |
+
counter-SentenceAlignment.$(OBJEXT) \
|
| 61 |
+
counter-phrase-extract.$(OBJEXT) counter-shared.$(OBJEXT) \
|
| 62 |
+
counter-counter.$(OBJEXT)
|
| 63 |
+
counter_OBJECTS = $(am_counter_OBJECTS)
|
| 64 |
+
counter_LDADD = $(LDADD)
|
| 65 |
+
counter_LINK = $(CXXLD) $(counter_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
| 66 |
+
$(LDFLAGS) -o $@
|
| 67 |
+
am_eppex_OBJECTS = tables-core.$(OBJEXT) SentenceAlignment.$(OBJEXT) \
|
| 68 |
+
phrase-extract.$(OBJEXT) shared.$(OBJEXT) eppex.$(OBJEXT)
|
| 69 |
+
eppex_OBJECTS = $(am_eppex_OBJECTS)
|
| 70 |
+
eppex_LDADD = $(LDADD)
|
| 71 |
+
DEFAULT_INCLUDES = -I.@am__isrc@
|
| 72 |
+
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
| 73 |
+
am__depfiles_maybe = depfiles
|
| 74 |
+
am__mv = mv -f
|
| 75 |
+
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
| 76 |
+
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
| 77 |
+
CXXLD = $(CXX)
|
| 78 |
+
CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
|
| 79 |
+
-o $@
|
| 80 |
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
| 81 |
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
| 82 |
+
CCLD = $(CC)
|
| 83 |
+
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
| 84 |
+
SOURCES = $(counter_SOURCES) $(eppex_SOURCES)
|
| 85 |
+
DIST_SOURCES = $(counter_SOURCES) $(eppex_SOURCES)
|
| 86 |
+
ETAGS = etags
|
| 87 |
+
CTAGS = ctags
|
| 88 |
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
| 89 |
+
distdir = $(PACKAGE)-$(VERSION)
|
| 90 |
+
top_distdir = $(distdir)
|
| 91 |
+
am__remove_distdir = \
|
| 92 |
+
{ test ! -d "$(distdir)" \
|
| 93 |
+
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
| 94 |
+
&& rm -fr "$(distdir)"; }; }
|
| 95 |
+
DIST_ARCHIVES = $(distdir).tar.gz
|
| 96 |
+
GZIP_ENV = --best
|
| 97 |
+
distuninstallcheck_listfiles = find . -type f -print
|
| 98 |
+
distcleancheck_listfiles = find . -type f -print
|
| 99 |
+
ACLOCAL = @ACLOCAL@
|
| 100 |
+
AMTAR = @AMTAR@
|
| 101 |
+
AUTOCONF = @AUTOCONF@
|
| 102 |
+
AUTOHEADER = @AUTOHEADER@
|
| 103 |
+
AUTOMAKE = @AUTOMAKE@
|
| 104 |
+
AWK = @AWK@
|
| 105 |
+
BOOST_CPPFLAGS = @BOOST_CPPFLAGS@
|
| 106 |
+
BOOST_LDFLAGS = @BOOST_LDFLAGS@
|
| 107 |
+
CC = @CC@
|
| 108 |
+
CCDEPMODE = @CCDEPMODE@
|
| 109 |
+
CFLAGS = @CFLAGS@
|
| 110 |
+
CPPFLAGS = @CPPFLAGS@
|
| 111 |
+
CXX = @CXX@
|
| 112 |
+
CXXCPP = @CXXCPP@
|
| 113 |
+
CXXDEPMODE = @CXXDEPMODE@
|
| 114 |
+
CXXFLAGS = @CXXFLAGS@
|
| 115 |
+
CYGPATH_W = @CYGPATH_W@
|
| 116 |
+
DEFS = @DEFS@
|
| 117 |
+
DEPDIR = @DEPDIR@
|
| 118 |
+
ECHO_C = @ECHO_C@
|
| 119 |
+
ECHO_N = @ECHO_N@
|
| 120 |
+
ECHO_T = @ECHO_T@
|
| 121 |
+
EGREP = @EGREP@
|
| 122 |
+
EXEEXT = @EXEEXT@
|
| 123 |
+
GREP = @GREP@
|
| 124 |
+
INSTALL = @INSTALL@
|
| 125 |
+
INSTALL_DATA = @INSTALL_DATA@
|
| 126 |
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
| 127 |
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
| 128 |
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
| 129 |
+
LDFLAGS = @LDFLAGS@
|
| 130 |
+
LIBOBJS = @LIBOBJS@
|
| 131 |
+
LIBS = @LIBS@
|
| 132 |
+
LTLIBOBJS = @LTLIBOBJS@
|
| 133 |
+
MAKEINFO = @MAKEINFO@
|
| 134 |
+
MKDIR_P = @MKDIR_P@
|
| 135 |
+
OBJEXT = @OBJEXT@
|
| 136 |
+
PACKAGE = @PACKAGE@
|
| 137 |
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
| 138 |
+
PACKAGE_NAME = @PACKAGE_NAME@
|
| 139 |
+
PACKAGE_STRING = @PACKAGE_STRING@
|
| 140 |
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
| 141 |
+
PACKAGE_URL = @PACKAGE_URL@
|
| 142 |
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
| 143 |
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
| 144 |
+
SET_MAKE = @SET_MAKE@
|
| 145 |
+
SHELL = @SHELL@
|
| 146 |
+
STRIP = @STRIP@
|
| 147 |
+
VERSION = @VERSION@
|
| 148 |
+
abs_builddir = @abs_builddir@
|
| 149 |
+
abs_srcdir = @abs_srcdir@
|
| 150 |
+
abs_top_builddir = @abs_top_builddir@
|
| 151 |
+
abs_top_srcdir = @abs_top_srcdir@
|
| 152 |
+
ac_ct_CC = @ac_ct_CC@
|
| 153 |
+
ac_ct_CXX = @ac_ct_CXX@
|
| 154 |
+
am__include = @am__include@
|
| 155 |
+
am__leading_dot = @am__leading_dot@
|
| 156 |
+
am__quote = @am__quote@
|
| 157 |
+
am__tar = @am__tar@
|
| 158 |
+
am__untar = @am__untar@
|
| 159 |
+
bindir = @bindir@
|
| 160 |
+
build_alias = @build_alias@
|
| 161 |
+
builddir = @builddir@
|
| 162 |
+
datadir = @datadir@
|
| 163 |
+
datarootdir = @datarootdir@
|
| 164 |
+
docdir = @docdir@
|
| 165 |
+
dvidir = @dvidir@
|
| 166 |
+
exec_prefix = @exec_prefix@
|
| 167 |
+
host_alias = @host_alias@
|
| 168 |
+
htmldir = @htmldir@
|
| 169 |
+
includedir = @includedir@
|
| 170 |
+
infodir = @infodir@
|
| 171 |
+
install_sh = @install_sh@
|
| 172 |
+
libdir = @libdir@
|
| 173 |
+
libexecdir = @libexecdir@
|
| 174 |
+
localedir = @localedir@
|
| 175 |
+
localstatedir = @localstatedir@
|
| 176 |
+
mandir = @mandir@
|
| 177 |
+
mkdir_p = @mkdir_p@
|
| 178 |
+
oldincludedir = @oldincludedir@
|
| 179 |
+
pdfdir = @pdfdir@
|
| 180 |
+
prefix = @prefix@
|
| 181 |
+
program_transform_name = @program_transform_name@
|
| 182 |
+
psdir = @psdir@
|
| 183 |
+
sbindir = @sbindir@
|
| 184 |
+
sharedstatedir = @sharedstatedir@
|
| 185 |
+
srcdir = @srcdir@
|
| 186 |
+
sysconfdir = @sysconfdir@
|
| 187 |
+
target_alias = @target_alias@
|
| 188 |
+
top_build_prefix = @top_build_prefix@
|
| 189 |
+
top_builddir = @top_builddir@
|
| 190 |
+
top_srcdir = @top_srcdir@
|
| 191 |
+
ACLOCAL_AMFLAGS = -I m4
|
| 192 |
+
AUTOMAKE_OPTIONS = foreign
|
| 193 |
+
# Note: during development eppex has been compiled with -O6, but this flag
|
| 194 |
+
# gets overwritten by -O2 set by automake.
|
| 195 |
+
AM_CXXFLAGS = $(BOOST_CPPFLAGS) -Wall
|
| 196 |
+
|
| 197 |
+
# Counter shares only some functionality of phrase-extract module.
|
| 198 |
+
counter_CXXFLAGS = -DGET_COUNTS_ONLY
|
| 199 |
+
|
| 200 |
+
# Uncomment to use std::tr1::unordered_map insteap of std::map in Lossy Counter implementation.
|
| 201 |
+
# This is NOT recommended in the moment (hashing function needs to be optimized).
|
| 202 |
+
#eppex_CXXFLAGS = -DUSE_UNORDERED_MAP
|
| 203 |
+
counter_SOURCES = ../phrase-extract/tables-core.h ../phrase-extract/SentenceAlignment.h config.h phrase-extract.h shared.h IndexedPhrasesPair.h LossyCounter.h \
|
| 204 |
+
../phrase-extract/tables-core.cpp ../phrase-extract/SentenceAlignment.cpp phrase-extract.cpp shared.cpp counter.cpp
|
| 205 |
+
|
| 206 |
+
eppex_SOURCES = ../phrase-extract/tables-core.h ../phrase-extract/SentenceAlignment.h config.h phrase-extract.h shared.h IndexedPhrasesPair.h LossyCounter.h \
|
| 207 |
+
../phrase-extract/tables-core.cpp ../phrase-extract/SentenceAlignment.cpp phrase-extract.cpp shared.cpp eppex.cpp
|
| 208 |
+
|
| 209 |
+
all: config.h
|
| 210 |
+
$(MAKE) $(AM_MAKEFLAGS) all-am
|
| 211 |
+
|
| 212 |
+
.SUFFIXES:
|
| 213 |
+
.SUFFIXES: .cpp .o .obj
|
| 214 |
+
am--refresh:
|
| 215 |
+
@:
|
| 216 |
+
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
| 217 |
+
@for dep in $?; do \
|
| 218 |
+
case '$(am__configure_deps)' in \
|
| 219 |
+
*$$dep*) \
|
| 220 |
+
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
|
| 221 |
+
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
|
| 222 |
+
&& exit 0; \
|
| 223 |
+
exit 1;; \
|
| 224 |
+
esac; \
|
| 225 |
+
done; \
|
| 226 |
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
| 227 |
+
$(am__cd) $(top_srcdir) && \
|
| 228 |
+
$(AUTOMAKE) --foreign Makefile
|
| 229 |
+
.PRECIOUS: Makefile
|
| 230 |
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
| 231 |
+
@case '$?' in \
|
| 232 |
+
*config.status*) \
|
| 233 |
+
echo ' $(SHELL) ./config.status'; \
|
| 234 |
+
$(SHELL) ./config.status;; \
|
| 235 |
+
*) \
|
| 236 |
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
| 237 |
+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
| 238 |
+
esac;
|
| 239 |
+
|
| 240 |
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
| 241 |
+
$(SHELL) ./config.status --recheck
|
| 242 |
+
|
| 243 |
+
$(top_srcdir)/configure: $(am__configure_deps)
|
| 244 |
+
$(am__cd) $(srcdir) && $(AUTOCONF)
|
| 245 |
+
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
| 246 |
+
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
| 247 |
+
$(am__aclocal_m4_deps):
|
| 248 |
+
|
| 249 |
+
config.h: stamp-h1
|
| 250 |
+
@if test ! -f $@; then \
|
| 251 |
+
rm -f stamp-h1; \
|
| 252 |
+
$(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
|
| 253 |
+
else :; fi
|
| 254 |
+
|
| 255 |
+
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
| 256 |
+
@rm -f stamp-h1
|
| 257 |
+
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
| 258 |
+
$(srcdir)/config.h.in: $(am__configure_deps)
|
| 259 |
+
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
| 260 |
+
rm -f stamp-h1
|
| 261 |
+
touch $@
|
| 262 |
+
|
| 263 |
+
distclean-hdr:
|
| 264 |
+
-rm -f config.h stamp-h1
|
| 265 |
+
install-binPROGRAMS: $(bin_PROGRAMS)
|
| 266 |
+
@$(NORMAL_INSTALL)
|
| 267 |
+
test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
|
| 268 |
+
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
| 269 |
+
for p in $$list; do echo "$$p $$p"; done | \
|
| 270 |
+
sed 's/$(EXEEXT)$$//' | \
|
| 271 |
+
while read p p1; do if test -f $$p; \
|
| 272 |
+
then echo "$$p"; echo "$$p"; else :; fi; \
|
| 273 |
+
done | \
|
| 274 |
+
sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
|
| 275 |
+
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
|
| 276 |
+
sed 'N;N;N;s,\n, ,g' | \
|
| 277 |
+
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
|
| 278 |
+
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
|
| 279 |
+
if ($$2 == $$4) files[d] = files[d] " " $$1; \
|
| 280 |
+
else { print "f", $$3 "/" $$4, $$1; } } \
|
| 281 |
+
END { for (d in files) print "f", d, files[d] }' | \
|
| 282 |
+
while read type dir files; do \
|
| 283 |
+
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
|
| 284 |
+
test -z "$$files" || { \
|
| 285 |
+
echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
|
| 286 |
+
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
|
| 287 |
+
} \
|
| 288 |
+
; done
|
| 289 |
+
|
| 290 |
+
uninstall-binPROGRAMS:
|
| 291 |
+
@$(NORMAL_UNINSTALL)
|
| 292 |
+
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
| 293 |
+
files=`for p in $$list; do echo "$$p"; done | \
|
| 294 |
+
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
|
| 295 |
+
-e 's/$$/$(EXEEXT)/' `; \
|
| 296 |
+
test -n "$$list" || exit 0; \
|
| 297 |
+
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
|
| 298 |
+
cd "$(DESTDIR)$(bindir)" && rm -f $$files
|
| 299 |
+
|
| 300 |
+
clean-binPROGRAMS:
|
| 301 |
+
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
|
| 302 |
+
counter$(EXEEXT): $(counter_OBJECTS) $(counter_DEPENDENCIES)
|
| 303 |
+
@rm -f counter$(EXEEXT)
|
| 304 |
+
$(counter_LINK) $(counter_OBJECTS) $(counter_LDADD) $(LIBS)
|
| 305 |
+
eppex$(EXEEXT): $(eppex_OBJECTS) $(eppex_DEPENDENCIES)
|
| 306 |
+
@rm -f eppex$(EXEEXT)
|
| 307 |
+
$(CXXLINK) $(eppex_OBJECTS) $(eppex_LDADD) $(LIBS)
|
| 308 |
+
|
| 309 |
+
mostlyclean-compile:
|
| 310 |
+
-rm -f *.$(OBJEXT)
|
| 311 |
+
|
| 312 |
+
distclean-compile:
|
| 313 |
+
-rm -f *.tab.c
|
| 314 |
+
|
| 315 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SentenceAlignment.Po@am__quote@
|
| 316 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/counter-SentenceAlignment.Po@am__quote@
|
| 317 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/counter-counter.Po@am__quote@
|
| 318 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/counter-phrase-extract.Po@am__quote@
|
| 319 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/counter-shared.Po@am__quote@
|
| 320 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/counter-tables-core.Po@am__quote@
|
| 321 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eppex.Po@am__quote@
|
| 322 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/phrase-extract.Po@am__quote@
|
| 323 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shared.Po@am__quote@
|
| 324 |
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tables-core.Po@am__quote@
|
| 325 |
+
|
| 326 |
+
.cpp.o:
|
| 327 |
+
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
| 328 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
| 329 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
| 330 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 331 |
+
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
|
| 332 |
+
|
| 333 |
+
.cpp.obj:
|
| 334 |
+
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
| 335 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
| 336 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
| 337 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 338 |
+
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
| 339 |
+
|
| 340 |
+
counter-tables-core.o: ../phrase-extract/tables-core.cpp
|
| 341 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-tables-core.o -MD -MP -MF $(DEPDIR)/counter-tables-core.Tpo -c -o counter-tables-core.o `test -f '../phrase-extract/tables-core.cpp' || echo '$(srcdir)/'`../phrase-extract/tables-core.cpp
|
| 342 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-tables-core.Tpo $(DEPDIR)/counter-tables-core.Po
|
| 343 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../phrase-extract/tables-core.cpp' object='counter-tables-core.o' libtool=no @AMDEPBACKSLASH@
|
| 344 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 345 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-tables-core.o `test -f '../phrase-extract/tables-core.cpp' || echo '$(srcdir)/'`../phrase-extract/tables-core.cpp
|
| 346 |
+
|
| 347 |
+
counter-tables-core.obj: ../phrase-extract/tables-core.cpp
|
| 348 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-tables-core.obj -MD -MP -MF $(DEPDIR)/counter-tables-core.Tpo -c -o counter-tables-core.obj `if test -f '../phrase-extract/tables-core.cpp'; then $(CYGPATH_W) '../phrase-extract/tables-core.cpp'; else $(CYGPATH_W) '$(srcdir)/../phrase-extract/tables-core.cpp'; fi`
|
| 349 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-tables-core.Tpo $(DEPDIR)/counter-tables-core.Po
|
| 350 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../phrase-extract/tables-core.cpp' object='counter-tables-core.obj' libtool=no @AMDEPBACKSLASH@
|
| 351 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 352 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-tables-core.obj `if test -f '../phrase-extract/tables-core.cpp'; then $(CYGPATH_W) '../phrase-extract/tables-core.cpp'; else $(CYGPATH_W) '$(srcdir)/../phrase-extract/tables-core.cpp'; fi`
|
| 353 |
+
|
| 354 |
+
counter-SentenceAlignment.o: ../phrase-extract/SentenceAlignment.cpp
|
| 355 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-SentenceAlignment.o -MD -MP -MF $(DEPDIR)/counter-SentenceAlignment.Tpo -c -o counter-SentenceAlignment.o `test -f '../phrase-extract/SentenceAlignment.cpp' || echo '$(srcdir)/'`../phrase-extract/SentenceAlignment.cpp
|
| 356 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-SentenceAlignment.Tpo $(DEPDIR)/counter-SentenceAlignment.Po
|
| 357 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../phrase-extract/SentenceAlignment.cpp' object='counter-SentenceAlignment.o' libtool=no @AMDEPBACKSLASH@
|
| 358 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 359 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-SentenceAlignment.o `test -f '../phrase-extract/SentenceAlignment.cpp' || echo '$(srcdir)/'`../phrase-extract/SentenceAlignment.cpp
|
| 360 |
+
|
| 361 |
+
counter-SentenceAlignment.obj: ../phrase-extract/SentenceAlignment.cpp
|
| 362 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-SentenceAlignment.obj -MD -MP -MF $(DEPDIR)/counter-SentenceAlignment.Tpo -c -o counter-SentenceAlignment.obj `if test -f '../phrase-extract/SentenceAlignment.cpp'; then $(CYGPATH_W) '../phrase-extract/SentenceAlignment.cpp'; else $(CYGPATH_W) '$(srcdir)/../phrase-extract/SentenceAlignment.cpp'; fi`
|
| 363 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-SentenceAlignment.Tpo $(DEPDIR)/counter-SentenceAlignment.Po
|
| 364 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../phrase-extract/SentenceAlignment.cpp' object='counter-SentenceAlignment.obj' libtool=no @AMDEPBACKSLASH@
|
| 365 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 366 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-SentenceAlignment.obj `if test -f '../phrase-extract/SentenceAlignment.cpp'; then $(CYGPATH_W) '../phrase-extract/SentenceAlignment.cpp'; else $(CYGPATH_W) '$(srcdir)/../phrase-extract/SentenceAlignment.cpp'; fi`
|
| 367 |
+
|
| 368 |
+
counter-phrase-extract.o: phrase-extract.cpp
|
| 369 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-phrase-extract.o -MD -MP -MF $(DEPDIR)/counter-phrase-extract.Tpo -c -o counter-phrase-extract.o `test -f 'phrase-extract.cpp' || echo '$(srcdir)/'`phrase-extract.cpp
|
| 370 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-phrase-extract.Tpo $(DEPDIR)/counter-phrase-extract.Po
|
| 371 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='phrase-extract.cpp' object='counter-phrase-extract.o' libtool=no @AMDEPBACKSLASH@
|
| 372 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 373 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-phrase-extract.o `test -f 'phrase-extract.cpp' || echo '$(srcdir)/'`phrase-extract.cpp
|
| 374 |
+
|
| 375 |
+
counter-phrase-extract.obj: phrase-extract.cpp
|
| 376 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-phrase-extract.obj -MD -MP -MF $(DEPDIR)/counter-phrase-extract.Tpo -c -o counter-phrase-extract.obj `if test -f 'phrase-extract.cpp'; then $(CYGPATH_W) 'phrase-extract.cpp'; else $(CYGPATH_W) '$(srcdir)/phrase-extract.cpp'; fi`
|
| 377 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-phrase-extract.Tpo $(DEPDIR)/counter-phrase-extract.Po
|
| 378 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='phrase-extract.cpp' object='counter-phrase-extract.obj' libtool=no @AMDEPBACKSLASH@
|
| 379 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 380 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-phrase-extract.obj `if test -f 'phrase-extract.cpp'; then $(CYGPATH_W) 'phrase-extract.cpp'; else $(CYGPATH_W) '$(srcdir)/phrase-extract.cpp'; fi`
|
| 381 |
+
|
| 382 |
+
counter-shared.o: shared.cpp
|
| 383 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-shared.o -MD -MP -MF $(DEPDIR)/counter-shared.Tpo -c -o counter-shared.o `test -f 'shared.cpp' || echo '$(srcdir)/'`shared.cpp
|
| 384 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-shared.Tpo $(DEPDIR)/counter-shared.Po
|
| 385 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='shared.cpp' object='counter-shared.o' libtool=no @AMDEPBACKSLASH@
|
| 386 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 387 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-shared.o `test -f 'shared.cpp' || echo '$(srcdir)/'`shared.cpp
|
| 388 |
+
|
| 389 |
+
counter-shared.obj: shared.cpp
|
| 390 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-shared.obj -MD -MP -MF $(DEPDIR)/counter-shared.Tpo -c -o counter-shared.obj `if test -f 'shared.cpp'; then $(CYGPATH_W) 'shared.cpp'; else $(CYGPATH_W) '$(srcdir)/shared.cpp'; fi`
|
| 391 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-shared.Tpo $(DEPDIR)/counter-shared.Po
|
| 392 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='shared.cpp' object='counter-shared.obj' libtool=no @AMDEPBACKSLASH@
|
| 393 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 394 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-shared.obj `if test -f 'shared.cpp'; then $(CYGPATH_W) 'shared.cpp'; else $(CYGPATH_W) '$(srcdir)/shared.cpp'; fi`
|
| 395 |
+
|
| 396 |
+
counter-counter.o: counter.cpp
|
| 397 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-counter.o -MD -MP -MF $(DEPDIR)/counter-counter.Tpo -c -o counter-counter.o `test -f 'counter.cpp' || echo '$(srcdir)/'`counter.cpp
|
| 398 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-counter.Tpo $(DEPDIR)/counter-counter.Po
|
| 399 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='counter.cpp' object='counter-counter.o' libtool=no @AMDEPBACKSLASH@
|
| 400 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 401 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-counter.o `test -f 'counter.cpp' || echo '$(srcdir)/'`counter.cpp
|
| 402 |
+
|
| 403 |
+
counter-counter.obj: counter.cpp
|
| 404 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -MT counter-counter.obj -MD -MP -MF $(DEPDIR)/counter-counter.Tpo -c -o counter-counter.obj `if test -f 'counter.cpp'; then $(CYGPATH_W) 'counter.cpp'; else $(CYGPATH_W) '$(srcdir)/counter.cpp'; fi`
|
| 405 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/counter-counter.Tpo $(DEPDIR)/counter-counter.Po
|
| 406 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='counter.cpp' object='counter-counter.obj' libtool=no @AMDEPBACKSLASH@
|
| 407 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 408 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(counter_CXXFLAGS) $(CXXFLAGS) -c -o counter-counter.obj `if test -f 'counter.cpp'; then $(CYGPATH_W) 'counter.cpp'; else $(CYGPATH_W) '$(srcdir)/counter.cpp'; fi`
|
| 409 |
+
|
| 410 |
+
tables-core.o: ../phrase-extract/tables-core.cpp
|
| 411 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT tables-core.o -MD -MP -MF $(DEPDIR)/tables-core.Tpo -c -o tables-core.o `test -f '../phrase-extract/tables-core.cpp' || echo '$(srcdir)/'`../phrase-extract/tables-core.cpp
|
| 412 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/tables-core.Tpo $(DEPDIR)/tables-core.Po
|
| 413 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../phrase-extract/tables-core.cpp' object='tables-core.o' libtool=no @AMDEPBACKSLASH@
|
| 414 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 415 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o tables-core.o `test -f '../phrase-extract/tables-core.cpp' || echo '$(srcdir)/'`../phrase-extract/tables-core.cpp
|
| 416 |
+
|
| 417 |
+
tables-core.obj: ../phrase-extract/tables-core.cpp
|
| 418 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT tables-core.obj -MD -MP -MF $(DEPDIR)/tables-core.Tpo -c -o tables-core.obj `if test -f '../phrase-extract/tables-core.cpp'; then $(CYGPATH_W) '../phrase-extract/tables-core.cpp'; else $(CYGPATH_W) '$(srcdir)/../phrase-extract/tables-core.cpp'; fi`
|
| 419 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/tables-core.Tpo $(DEPDIR)/tables-core.Po
|
| 420 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../phrase-extract/tables-core.cpp' object='tables-core.obj' libtool=no @AMDEPBACKSLASH@
|
| 421 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 422 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o tables-core.obj `if test -f '../phrase-extract/tables-core.cpp'; then $(CYGPATH_W) '../phrase-extract/tables-core.cpp'; else $(CYGPATH_W) '$(srcdir)/../phrase-extract/tables-core.cpp'; fi`
|
| 423 |
+
|
| 424 |
+
SentenceAlignment.o: ../phrase-extract/SentenceAlignment.cpp
|
| 425 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SentenceAlignment.o -MD -MP -MF $(DEPDIR)/SentenceAlignment.Tpo -c -o SentenceAlignment.o `test -f '../phrase-extract/SentenceAlignment.cpp' || echo '$(srcdir)/'`../phrase-extract/SentenceAlignment.cpp
|
| 426 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/SentenceAlignment.Tpo $(DEPDIR)/SentenceAlignment.Po
|
| 427 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../phrase-extract/SentenceAlignment.cpp' object='SentenceAlignment.o' libtool=no @AMDEPBACKSLASH@
|
| 428 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 429 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SentenceAlignment.o `test -f '../phrase-extract/SentenceAlignment.cpp' || echo '$(srcdir)/'`../phrase-extract/SentenceAlignment.cpp
|
| 430 |
+
|
| 431 |
+
SentenceAlignment.obj: ../phrase-extract/SentenceAlignment.cpp
|
| 432 |
+
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SentenceAlignment.obj -MD -MP -MF $(DEPDIR)/SentenceAlignment.Tpo -c -o SentenceAlignment.obj `if test -f '../phrase-extract/SentenceAlignment.cpp'; then $(CYGPATH_W) '../phrase-extract/SentenceAlignment.cpp'; else $(CYGPATH_W) '$(srcdir)/../phrase-extract/SentenceAlignment.cpp'; fi`
|
| 433 |
+
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/SentenceAlignment.Tpo $(DEPDIR)/SentenceAlignment.Po
|
| 434 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../phrase-extract/SentenceAlignment.cpp' object='SentenceAlignment.obj' libtool=no @AMDEPBACKSLASH@
|
| 435 |
+
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
| 436 |
+
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SentenceAlignment.obj `if test -f '../phrase-extract/SentenceAlignment.cpp'; then $(CYGPATH_W) '../phrase-extract/SentenceAlignment.cpp'; else $(CYGPATH_W) '$(srcdir)/../phrase-extract/SentenceAlignment.cpp'; fi`
|
| 437 |
+
|
| 438 |
+
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
| 439 |
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
| 440 |
+
unique=`for i in $$list; do \
|
| 441 |
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
| 442 |
+
done | \
|
| 443 |
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
| 444 |
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
| 445 |
+
mkid -fID $$unique
|
| 446 |
+
tags: TAGS
|
| 447 |
+
|
| 448 |
+
TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
| 449 |
+
$(TAGS_FILES) $(LISP)
|
| 450 |
+
set x; \
|
| 451 |
+
here=`pwd`; \
|
| 452 |
+
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
| 453 |
+
unique=`for i in $$list; do \
|
| 454 |
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
| 455 |
+
done | \
|
| 456 |
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
| 457 |
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
| 458 |
+
shift; \
|
| 459 |
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
| 460 |
+
test -n "$$unique" || unique=$$empty_fix; \
|
| 461 |
+
if test $$# -gt 0; then \
|
| 462 |
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
| 463 |
+
"$$@" $$unique; \
|
| 464 |
+
else \
|
| 465 |
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
| 466 |
+
$$unique; \
|
| 467 |
+
fi; \
|
| 468 |
+
fi
|
| 469 |
+
ctags: CTAGS
|
| 470 |
+
CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
| 471 |
+
$(TAGS_FILES) $(LISP)
|
| 472 |
+
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
| 473 |
+
unique=`for i in $$list; do \
|
| 474 |
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
| 475 |
+
done | \
|
| 476 |
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
| 477 |
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
| 478 |
+
test -z "$(CTAGS_ARGS)$$unique" \
|
| 479 |
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
| 480 |
+
$$unique
|
| 481 |
+
|
| 482 |
+
GTAGS:
|
| 483 |
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
| 484 |
+
&& $(am__cd) $(top_srcdir) \
|
| 485 |
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
| 486 |
+
|
| 487 |
+
distclean-tags:
|
| 488 |
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
| 489 |
+
|
| 490 |
+
distdir: $(DISTFILES)
|
| 491 |
+
$(am__remove_distdir)
|
| 492 |
+
test -d "$(distdir)" || mkdir "$(distdir)"
|
| 493 |
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
| 494 |
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
| 495 |
+
list='$(DISTFILES)'; \
|
| 496 |
+
dist_files=`for file in $$list; do echo $$file; done | \
|
| 497 |
+
sed -e "s|^$$srcdirstrip/||;t" \
|
| 498 |
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
| 499 |
+
case $$dist_files in \
|
| 500 |
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
| 501 |
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
| 502 |
+
sort -u` ;; \
|
| 503 |
+
esac; \
|
| 504 |
+
for file in $$dist_files; do \
|
| 505 |
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
| 506 |
+
if test -d $$d/$$file; then \
|
| 507 |
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
| 508 |
+
if test -d "$(distdir)/$$file"; then \
|
| 509 |
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
| 510 |
+
fi; \
|
| 511 |
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
| 512 |
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
| 513 |
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
| 514 |
+
fi; \
|
| 515 |
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
| 516 |
+
else \
|
| 517 |
+
test -f "$(distdir)/$$file" \
|
| 518 |
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
| 519 |
+
|| exit 1; \
|
| 520 |
+
fi; \
|
| 521 |
+
done
|
| 522 |
+
-test -n "$(am__skip_mode_fix)" \
|
| 523 |
+
|| find "$(distdir)" -type d ! -perm -755 \
|
| 524 |
+
-exec chmod u+rwx,go+rx {} \; -o \
|
| 525 |
+
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
| 526 |
+
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
| 527 |
+
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
| 528 |
+
|| chmod -R a+r "$(distdir)"
|
| 529 |
+
dist-gzip: distdir
|
| 530 |
+
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
| 531 |
+
$(am__remove_distdir)
|
| 532 |
+
|
| 533 |
+
dist-bzip2: distdir
|
| 534 |
+
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
| 535 |
+
$(am__remove_distdir)
|
| 536 |
+
|
| 537 |
+
dist-lzma: distdir
|
| 538 |
+
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
|
| 539 |
+
$(am__remove_distdir)
|
| 540 |
+
|
| 541 |
+
dist-xz: distdir
|
| 542 |
+
tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
|
| 543 |
+
$(am__remove_distdir)
|
| 544 |
+
|
| 545 |
+
dist-tarZ: distdir
|
| 546 |
+
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
| 547 |
+
$(am__remove_distdir)
|
| 548 |
+
|
| 549 |
+
dist-shar: distdir
|
| 550 |
+
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
| 551 |
+
$(am__remove_distdir)
|
| 552 |
+
|
| 553 |
+
dist-zip: distdir
|
| 554 |
+
-rm -f $(distdir).zip
|
| 555 |
+
zip -rq $(distdir).zip $(distdir)
|
| 556 |
+
$(am__remove_distdir)
|
| 557 |
+
|
| 558 |
+
dist dist-all: distdir
|
| 559 |
+
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
| 560 |
+
$(am__remove_distdir)
|
| 561 |
+
|
| 562 |
+
# This target untars the dist file and tries a VPATH configuration. Then
|
| 563 |
+
# it guarantees that the distribution is self-contained by making another
|
| 564 |
+
# tarfile.
|
| 565 |
+
distcheck: dist
|
| 566 |
+
case '$(DIST_ARCHIVES)' in \
|
| 567 |
+
*.tar.gz*) \
|
| 568 |
+
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
| 569 |
+
*.tar.bz2*) \
|
| 570 |
+
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
| 571 |
+
*.tar.lzma*) \
|
| 572 |
+
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
|
| 573 |
+
*.tar.xz*) \
|
| 574 |
+
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
| 575 |
+
*.tar.Z*) \
|
| 576 |
+
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
| 577 |
+
*.shar.gz*) \
|
| 578 |
+
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
| 579 |
+
*.zip*) \
|
| 580 |
+
unzip $(distdir).zip ;;\
|
| 581 |
+
esac
|
| 582 |
+
chmod -R a-w $(distdir); chmod a+w $(distdir)
|
| 583 |
+
mkdir $(distdir)/_build
|
| 584 |
+
mkdir $(distdir)/_inst
|
| 585 |
+
chmod a-w $(distdir)
|
| 586 |
+
test -d $(distdir)/_build || exit 0; \
|
| 587 |
+
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
| 588 |
+
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
| 589 |
+
&& am__cwd=`pwd` \
|
| 590 |
+
&& $(am__cd) $(distdir)/_build \
|
| 591 |
+
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
| 592 |
+
$(DISTCHECK_CONFIGURE_FLAGS) \
|
| 593 |
+
&& $(MAKE) $(AM_MAKEFLAGS) \
|
| 594 |
+
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
| 595 |
+
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
| 596 |
+
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
| 597 |
+
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
| 598 |
+
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
| 599 |
+
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
| 600 |
+
distuninstallcheck \
|
| 601 |
+
&& chmod -R a-w "$$dc_install_base" \
|
| 602 |
+
&& ({ \
|
| 603 |
+
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
| 604 |
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
| 605 |
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
| 606 |
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
| 607 |
+
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
| 608 |
+
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
| 609 |
+
&& rm -rf "$$dc_destdir" \
|
| 610 |
+
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
| 611 |
+
&& rm -rf $(DIST_ARCHIVES) \
|
| 612 |
+
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
| 613 |
+
&& cd "$$am__cwd" \
|
| 614 |
+
|| exit 1
|
| 615 |
+
$(am__remove_distdir)
|
| 616 |
+
@(echo "$(distdir) archives ready for distribution: "; \
|
| 617 |
+
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
| 618 |
+
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
| 619 |
+
distuninstallcheck:
|
| 620 |
+
@$(am__cd) '$(distuninstallcheck_dir)' \
|
| 621 |
+
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
| 622 |
+
|| { echo "ERROR: files left after uninstall:" ; \
|
| 623 |
+
if test -n "$(DESTDIR)"; then \
|
| 624 |
+
echo " (check DESTDIR support)"; \
|
| 625 |
+
fi ; \
|
| 626 |
+
$(distuninstallcheck_listfiles) ; \
|
| 627 |
+
exit 1; } >&2
|
| 628 |
+
distcleancheck: distclean
|
| 629 |
+
@if test '$(srcdir)' = . ; then \
|
| 630 |
+
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
| 631 |
+
exit 1 ; \
|
| 632 |
+
fi
|
| 633 |
+
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
| 634 |
+
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
| 635 |
+
$(distcleancheck_listfiles) ; \
|
| 636 |
+
exit 1; } >&2
|
| 637 |
+
check-am: all-am
|
| 638 |
+
check: check-am
|
| 639 |
+
all-am: Makefile $(PROGRAMS) config.h
|
| 640 |
+
installdirs:
|
| 641 |
+
for dir in "$(DESTDIR)$(bindir)"; do \
|
| 642 |
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
| 643 |
+
done
|
| 644 |
+
install: install-am
|
| 645 |
+
install-exec: install-exec-am
|
| 646 |
+
install-data: install-data-am
|
| 647 |
+
uninstall: uninstall-am
|
| 648 |
+
|
| 649 |
+
install-am: all-am
|
| 650 |
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
| 651 |
+
|
| 652 |
+
installcheck: installcheck-am
|
| 653 |
+
install-strip:
|
| 654 |
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
| 655 |
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
| 656 |
+
`test -z '$(STRIP)' || \
|
| 657 |
+
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
| 658 |
+
mostlyclean-generic:
|
| 659 |
+
|
| 660 |
+
clean-generic:
|
| 661 |
+
|
| 662 |
+
distclean-generic:
|
| 663 |
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
| 664 |
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
| 665 |
+
|
| 666 |
+
maintainer-clean-generic:
|
| 667 |
+
@echo "This command is intended for maintainers to use"
|
| 668 |
+
@echo "it deletes files that may require special tools to rebuild."
|
| 669 |
+
clean: clean-am
|
| 670 |
+
|
| 671 |
+
clean-am: clean-binPROGRAMS clean-generic mostlyclean-am
|
| 672 |
+
|
| 673 |
+
distclean: distclean-am
|
| 674 |
+
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
| 675 |
+
-rm -rf ./$(DEPDIR)
|
| 676 |
+
-rm -f Makefile
|
| 677 |
+
distclean-am: clean-am distclean-compile distclean-generic \
|
| 678 |
+
distclean-hdr distclean-tags
|
| 679 |
+
|
| 680 |
+
dvi: dvi-am
|
| 681 |
+
|
| 682 |
+
dvi-am:
|
| 683 |
+
|
| 684 |
+
html: html-am
|
| 685 |
+
|
| 686 |
+
html-am:
|
| 687 |
+
|
| 688 |
+
info: info-am
|
| 689 |
+
|
| 690 |
+
info-am:
|
| 691 |
+
|
| 692 |
+
install-data-am:
|
| 693 |
+
|
| 694 |
+
install-dvi: install-dvi-am
|
| 695 |
+
|
| 696 |
+
install-dvi-am:
|
| 697 |
+
|
| 698 |
+
install-exec-am: install-binPROGRAMS
|
| 699 |
+
|
| 700 |
+
install-html: install-html-am
|
| 701 |
+
|
| 702 |
+
install-html-am:
|
| 703 |
+
|
| 704 |
+
install-info: install-info-am
|
| 705 |
+
|
| 706 |
+
install-info-am:
|
| 707 |
+
|
| 708 |
+
install-man:
|
| 709 |
+
|
| 710 |
+
install-pdf: install-pdf-am
|
| 711 |
+
|
| 712 |
+
install-pdf-am:
|
| 713 |
+
|
| 714 |
+
install-ps: install-ps-am
|
| 715 |
+
|
| 716 |
+
install-ps-am:
|
| 717 |
+
|
| 718 |
+
installcheck-am:
|
| 719 |
+
|
| 720 |
+
maintainer-clean: maintainer-clean-am
|
| 721 |
+
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
| 722 |
+
-rm -rf $(top_srcdir)/autom4te.cache
|
| 723 |
+
-rm -rf ./$(DEPDIR)
|
| 724 |
+
-rm -f Makefile
|
| 725 |
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
| 726 |
+
|
| 727 |
+
mostlyclean: mostlyclean-am
|
| 728 |
+
|
| 729 |
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
| 730 |
+
|
| 731 |
+
pdf: pdf-am
|
| 732 |
+
|
| 733 |
+
pdf-am:
|
| 734 |
+
|
| 735 |
+
ps: ps-am
|
| 736 |
+
|
| 737 |
+
ps-am:
|
| 738 |
+
|
| 739 |
+
uninstall-am: uninstall-binPROGRAMS
|
| 740 |
+
|
| 741 |
+
.MAKE: all install-am install-strip
|
| 742 |
+
|
| 743 |
+
.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
|
| 744 |
+
clean-binPROGRAMS clean-generic ctags dist dist-all dist-bzip2 \
|
| 745 |
+
dist-gzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
|
| 746 |
+
distcheck distclean distclean-compile distclean-generic \
|
| 747 |
+
distclean-hdr distclean-tags distcleancheck distdir \
|
| 748 |
+
distuninstallcheck dvi dvi-am html html-am info info-am \
|
| 749 |
+
install install-am install-binPROGRAMS install-data \
|
| 750 |
+
install-data-am install-dvi install-dvi-am install-exec \
|
| 751 |
+
install-exec-am install-html install-html-am install-info \
|
| 752 |
+
install-info-am install-man install-pdf install-pdf-am \
|
| 753 |
+
install-ps install-ps-am install-strip installcheck \
|
| 754 |
+
installcheck-am installdirs maintainer-clean \
|
| 755 |
+
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
| 756 |
+
mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
|
| 757 |
+
uninstall-am uninstall-binPROGRAMS
|
| 758 |
+
|
| 759 |
+
|
| 760 |
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
| 761 |
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
| 762 |
+
.NOEXPORT:
|
mosesdecoder/contrib/eppex/aclocal.m4
ADDED
|
@@ -0,0 +1,952 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
|
| 2 |
+
|
| 3 |
+
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
| 4 |
+
# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
|
| 5 |
+
# This file is free software; the Free Software Foundation
|
| 6 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 7 |
+
# with or without modifications, as long as this notice is preserved.
|
| 8 |
+
|
| 9 |
+
# This program is distributed in the hope that it will be useful,
|
| 10 |
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
| 11 |
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
| 12 |
+
# PARTICULAR PURPOSE.
|
| 13 |
+
|
| 14 |
+
m4_ifndef([AC_AUTOCONF_VERSION],
|
| 15 |
+
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
| 16 |
+
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],,
|
| 17 |
+
[m4_warning([this file was generated for autoconf 2.67.
|
| 18 |
+
You have another version of autoconf. It may work, but is not guaranteed to.
|
| 19 |
+
If you have problems, you may need to regenerate the build system entirely.
|
| 20 |
+
To do so, use the procedure documented by the package, typically `autoreconf'.])])
|
| 21 |
+
|
| 22 |
+
# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
| 23 |
+
#
|
| 24 |
+
# This file is free software; the Free Software Foundation
|
| 25 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 26 |
+
# with or without modifications, as long as this notice is preserved.
|
| 27 |
+
|
| 28 |
+
# AM_AUTOMAKE_VERSION(VERSION)
|
| 29 |
+
# ----------------------------
|
| 30 |
+
# Automake X.Y traces this macro to ensure aclocal.m4 has been
|
| 31 |
+
# generated from the m4 files accompanying Automake X.Y.
|
| 32 |
+
# (This private macro should not be called outside this file.)
|
| 33 |
+
AC_DEFUN([AM_AUTOMAKE_VERSION],
|
| 34 |
+
[am__api_version='1.11'
|
| 35 |
+
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
|
| 36 |
+
dnl require some minimum version. Point them to the right macro.
|
| 37 |
+
m4_if([$1], [1.11.1], [],
|
| 38 |
+
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
| 39 |
+
])
|
| 40 |
+
|
| 41 |
+
# _AM_AUTOCONF_VERSION(VERSION)
|
| 42 |
+
# -----------------------------
|
| 43 |
+
# aclocal traces this macro to find the Autoconf version.
|
| 44 |
+
# This is a private macro too. Using m4_define simplifies
|
| 45 |
+
# the logic in aclocal, which can simply ignore this definition.
|
| 46 |
+
m4_define([_AM_AUTOCONF_VERSION], [])
|
| 47 |
+
|
| 48 |
+
# AM_SET_CURRENT_AUTOMAKE_VERSION
|
| 49 |
+
# -------------------------------
|
| 50 |
+
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
|
| 51 |
+
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
|
| 52 |
+
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
|
| 53 |
+
[AM_AUTOMAKE_VERSION([1.11.1])dnl
|
| 54 |
+
m4_ifndef([AC_AUTOCONF_VERSION],
|
| 55 |
+
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
| 56 |
+
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
|
| 57 |
+
|
| 58 |
+
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
|
| 59 |
+
|
| 60 |
+
# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
|
| 61 |
+
#
|
| 62 |
+
# This file is free software; the Free Software Foundation
|
| 63 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 64 |
+
# with or without modifications, as long as this notice is preserved.
|
| 65 |
+
|
| 66 |
+
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
|
| 67 |
+
# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
|
| 68 |
+
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
|
| 69 |
+
#
|
| 70 |
+
# Of course, Automake must honor this variable whenever it calls a
|
| 71 |
+
# tool from the auxiliary directory. The problem is that $srcdir (and
|
| 72 |
+
# therefore $ac_aux_dir as well) can be either absolute or relative,
|
| 73 |
+
# depending on how configure is run. This is pretty annoying, since
|
| 74 |
+
# it makes $ac_aux_dir quite unusable in subdirectories: in the top
|
| 75 |
+
# source directory, any form will work fine, but in subdirectories a
|
| 76 |
+
# relative path needs to be adjusted first.
|
| 77 |
+
#
|
| 78 |
+
# $ac_aux_dir/missing
|
| 79 |
+
# fails when called from a subdirectory if $ac_aux_dir is relative
|
| 80 |
+
# $top_srcdir/$ac_aux_dir/missing
|
| 81 |
+
# fails if $ac_aux_dir is absolute,
|
| 82 |
+
# fails when called from a subdirectory in a VPATH build with
|
| 83 |
+
# a relative $ac_aux_dir
|
| 84 |
+
#
|
| 85 |
+
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
|
| 86 |
+
# are both prefixed by $srcdir. In an in-source build this is usually
|
| 87 |
+
# harmless because $srcdir is `.', but things will broke when you
|
| 88 |
+
# start a VPATH build or use an absolute $srcdir.
|
| 89 |
+
#
|
| 90 |
+
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
|
| 91 |
+
# iff we strip the leading $srcdir from $ac_aux_dir. That would be:
|
| 92 |
+
# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
|
| 93 |
+
# and then we would define $MISSING as
|
| 94 |
+
# MISSING="\${SHELL} $am_aux_dir/missing"
|
| 95 |
+
# This will work as long as MISSING is not called from configure, because
|
| 96 |
+
# unfortunately $(top_srcdir) has no meaning in configure.
|
| 97 |
+
# However there are other variables, like CC, which are often used in
|
| 98 |
+
# configure, and could therefore not use this "fixed" $ac_aux_dir.
|
| 99 |
+
#
|
| 100 |
+
# Another solution, used here, is to always expand $ac_aux_dir to an
|
| 101 |
+
# absolute PATH. The drawback is that using absolute paths prevent a
|
| 102 |
+
# configured tree to be moved without reconfiguration.
|
| 103 |
+
|
| 104 |
+
AC_DEFUN([AM_AUX_DIR_EXPAND],
|
| 105 |
+
[dnl Rely on autoconf to set up CDPATH properly.
|
| 106 |
+
AC_PREREQ([2.50])dnl
|
| 107 |
+
# expand $ac_aux_dir to an absolute path
|
| 108 |
+
am_aux_dir=`cd $ac_aux_dir && pwd`
|
| 109 |
+
])
|
| 110 |
+
|
| 111 |
+
# AM_CONDITIONAL -*- Autoconf -*-
|
| 112 |
+
|
| 113 |
+
# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
|
| 114 |
+
# Free Software Foundation, Inc.
|
| 115 |
+
#
|
| 116 |
+
# This file is free software; the Free Software Foundation
|
| 117 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 118 |
+
# with or without modifications, as long as this notice is preserved.
|
| 119 |
+
|
| 120 |
+
# serial 9
|
| 121 |
+
|
| 122 |
+
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
|
| 123 |
+
# -------------------------------------
|
| 124 |
+
# Define a conditional.
|
| 125 |
+
AC_DEFUN([AM_CONDITIONAL],
|
| 126 |
+
[AC_PREREQ(2.52)dnl
|
| 127 |
+
ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
|
| 128 |
+
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
|
| 129 |
+
AC_SUBST([$1_TRUE])dnl
|
| 130 |
+
AC_SUBST([$1_FALSE])dnl
|
| 131 |
+
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
|
| 132 |
+
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
|
| 133 |
+
m4_define([_AM_COND_VALUE_$1], [$2])dnl
|
| 134 |
+
if $2; then
|
| 135 |
+
$1_TRUE=
|
| 136 |
+
$1_FALSE='#'
|
| 137 |
+
else
|
| 138 |
+
$1_TRUE='#'
|
| 139 |
+
$1_FALSE=
|
| 140 |
+
fi
|
| 141 |
+
AC_CONFIG_COMMANDS_PRE(
|
| 142 |
+
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
|
| 143 |
+
AC_MSG_ERROR([[conditional "$1" was never defined.
|
| 144 |
+
Usually this means the macro was only invoked conditionally.]])
|
| 145 |
+
fi])])
|
| 146 |
+
|
| 147 |
+
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
|
| 148 |
+
# Free Software Foundation, Inc.
|
| 149 |
+
#
|
| 150 |
+
# This file is free software; the Free Software Foundation
|
| 151 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 152 |
+
# with or without modifications, as long as this notice is preserved.
|
| 153 |
+
|
| 154 |
+
# serial 10
|
| 155 |
+
|
| 156 |
+
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
|
| 157 |
+
# written in clear, in which case automake, when reading aclocal.m4,
|
| 158 |
+
# will think it sees a *use*, and therefore will trigger all it's
|
| 159 |
+
# C support machinery. Also note that it means that autoscan, seeing
|
| 160 |
+
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
|
| 161 |
+
|
| 162 |
+
|
| 163 |
+
# _AM_DEPENDENCIES(NAME)
|
| 164 |
+
# ----------------------
|
| 165 |
+
# See how the compiler implements dependency checking.
|
| 166 |
+
# NAME is "CC", "CXX", "GCJ", or "OBJC".
|
| 167 |
+
# We try a few techniques and use that to set a single cache variable.
|
| 168 |
+
#
|
| 169 |
+
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
|
| 170 |
+
# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
|
| 171 |
+
# dependency, and given that the user is not expected to run this macro,
|
| 172 |
+
# just rely on AC_PROG_CC.
|
| 173 |
+
AC_DEFUN([_AM_DEPENDENCIES],
|
| 174 |
+
[AC_REQUIRE([AM_SET_DEPDIR])dnl
|
| 175 |
+
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
|
| 176 |
+
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
|
| 177 |
+
AC_REQUIRE([AM_DEP_TRACK])dnl
|
| 178 |
+
|
| 179 |
+
ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
|
| 180 |
+
[$1], CXX, [depcc="$CXX" am_compiler_list=],
|
| 181 |
+
[$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
|
| 182 |
+
[$1], UPC, [depcc="$UPC" am_compiler_list=],
|
| 183 |
+
[$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
|
| 184 |
+
[depcc="$$1" am_compiler_list=])
|
| 185 |
+
|
| 186 |
+
AC_CACHE_CHECK([dependency style of $depcc],
|
| 187 |
+
[am_cv_$1_dependencies_compiler_type],
|
| 188 |
+
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
|
| 189 |
+
# We make a subdir and do the tests there. Otherwise we can end up
|
| 190 |
+
# making bogus files that we don't know about and never remove. For
|
| 191 |
+
# instance it was reported that on HP-UX the gcc test will end up
|
| 192 |
+
# making a dummy file named `D' -- because `-MD' means `put the output
|
| 193 |
+
# in D'.
|
| 194 |
+
mkdir conftest.dir
|
| 195 |
+
# Copy depcomp to subdir because otherwise we won't find it if we're
|
| 196 |
+
# using a relative directory.
|
| 197 |
+
cp "$am_depcomp" conftest.dir
|
| 198 |
+
cd conftest.dir
|
| 199 |
+
# We will build objects and dependencies in a subdirectory because
|
| 200 |
+
# it helps to detect inapplicable dependency modes. For instance
|
| 201 |
+
# both Tru64's cc and ICC support -MD to output dependencies as a
|
| 202 |
+
# side effect of compilation, but ICC will put the dependencies in
|
| 203 |
+
# the current directory while Tru64 will put them in the object
|
| 204 |
+
# directory.
|
| 205 |
+
mkdir sub
|
| 206 |
+
|
| 207 |
+
am_cv_$1_dependencies_compiler_type=none
|
| 208 |
+
if test "$am_compiler_list" = ""; then
|
| 209 |
+
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
|
| 210 |
+
fi
|
| 211 |
+
am__universal=false
|
| 212 |
+
m4_case([$1], [CC],
|
| 213 |
+
[case " $depcc " in #(
|
| 214 |
+
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
| 215 |
+
esac],
|
| 216 |
+
[CXX],
|
| 217 |
+
[case " $depcc " in #(
|
| 218 |
+
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
| 219 |
+
esac])
|
| 220 |
+
|
| 221 |
+
for depmode in $am_compiler_list; do
|
| 222 |
+
# Setup a source with many dependencies, because some compilers
|
| 223 |
+
# like to wrap large dependency lists on column 80 (with \), and
|
| 224 |
+
# we should not choose a depcomp mode which is confused by this.
|
| 225 |
+
#
|
| 226 |
+
# We need to recreate these files for each test, as the compiler may
|
| 227 |
+
# overwrite some of them when testing with obscure command lines.
|
| 228 |
+
# This happens at least with the AIX C compiler.
|
| 229 |
+
: > sub/conftest.c
|
| 230 |
+
for i in 1 2 3 4 5 6; do
|
| 231 |
+
echo '#include "conftst'$i'.h"' >> sub/conftest.c
|
| 232 |
+
# Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
|
| 233 |
+
# Solaris 8's {/usr,}/bin/sh.
|
| 234 |
+
touch sub/conftst$i.h
|
| 235 |
+
done
|
| 236 |
+
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
| 237 |
+
|
| 238 |
+
# We check with `-c' and `-o' for the sake of the "dashmstdout"
|
| 239 |
+
# mode. It turns out that the SunPro C++ compiler does not properly
|
| 240 |
+
# handle `-M -o', and we need to detect this. Also, some Intel
|
| 241 |
+
# versions had trouble with output in subdirs
|
| 242 |
+
am__obj=sub/conftest.${OBJEXT-o}
|
| 243 |
+
am__minus_obj="-o $am__obj"
|
| 244 |
+
case $depmode in
|
| 245 |
+
gcc)
|
| 246 |
+
# This depmode causes a compiler race in universal mode.
|
| 247 |
+
test "$am__universal" = false || continue
|
| 248 |
+
;;
|
| 249 |
+
nosideeffect)
|
| 250 |
+
# after this tag, mechanisms are not by side-effect, so they'll
|
| 251 |
+
# only be used when explicitly requested
|
| 252 |
+
if test "x$enable_dependency_tracking" = xyes; then
|
| 253 |
+
continue
|
| 254 |
+
else
|
| 255 |
+
break
|
| 256 |
+
fi
|
| 257 |
+
;;
|
| 258 |
+
msvisualcpp | msvcmsys)
|
| 259 |
+
# This compiler won't grok `-c -o', but also, the minuso test has
|
| 260 |
+
# not run yet. These depmodes are late enough in the game, and
|
| 261 |
+
# so weak that their functioning should not be impacted.
|
| 262 |
+
am__obj=conftest.${OBJEXT-o}
|
| 263 |
+
am__minus_obj=
|
| 264 |
+
;;
|
| 265 |
+
none) break ;;
|
| 266 |
+
esac
|
| 267 |
+
if depmode=$depmode \
|
| 268 |
+
source=sub/conftest.c object=$am__obj \
|
| 269 |
+
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
| 270 |
+
$SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
|
| 271 |
+
>/dev/null 2>conftest.err &&
|
| 272 |
+
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
|
| 273 |
+
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
|
| 274 |
+
grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
|
| 275 |
+
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
| 276 |
+
# icc doesn't choke on unknown options, it will just issue warnings
|
| 277 |
+
# or remarks (even with -Werror). So we grep stderr for any message
|
| 278 |
+
# that says an option was ignored or not supported.
|
| 279 |
+
# When given -MP, icc 7.0 and 7.1 complain thusly:
|
| 280 |
+
# icc: Command line warning: ignoring option '-M'; no argument required
|
| 281 |
+
# The diagnosis changed in icc 8.0:
|
| 282 |
+
# icc: Command line remark: option '-MP' not supported
|
| 283 |
+
if (grep 'ignoring option' conftest.err ||
|
| 284 |
+
grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
|
| 285 |
+
am_cv_$1_dependencies_compiler_type=$depmode
|
| 286 |
+
break
|
| 287 |
+
fi
|
| 288 |
+
fi
|
| 289 |
+
done
|
| 290 |
+
|
| 291 |
+
cd ..
|
| 292 |
+
rm -rf conftest.dir
|
| 293 |
+
else
|
| 294 |
+
am_cv_$1_dependencies_compiler_type=none
|
| 295 |
+
fi
|
| 296 |
+
])
|
| 297 |
+
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
|
| 298 |
+
AM_CONDITIONAL([am__fastdep$1], [
|
| 299 |
+
test "x$enable_dependency_tracking" != xno \
|
| 300 |
+
&& test "$am_cv_$1_dependencies_compiler_type" = gcc3])
|
| 301 |
+
])
|
| 302 |
+
|
| 303 |
+
|
| 304 |
+
# AM_SET_DEPDIR
|
| 305 |
+
# -------------
|
| 306 |
+
# Choose a directory name for dependency files.
|
| 307 |
+
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
|
| 308 |
+
AC_DEFUN([AM_SET_DEPDIR],
|
| 309 |
+
[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
| 310 |
+
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
|
| 311 |
+
])
|
| 312 |
+
|
| 313 |
+
|
| 314 |
+
# AM_DEP_TRACK
|
| 315 |
+
# ------------
|
| 316 |
+
AC_DEFUN([AM_DEP_TRACK],
|
| 317 |
+
[AC_ARG_ENABLE(dependency-tracking,
|
| 318 |
+
[ --disable-dependency-tracking speeds up one-time build
|
| 319 |
+
--enable-dependency-tracking do not reject slow dependency extractors])
|
| 320 |
+
if test "x$enable_dependency_tracking" != xno; then
|
| 321 |
+
am_depcomp="$ac_aux_dir/depcomp"
|
| 322 |
+
AMDEPBACKSLASH='\'
|
| 323 |
+
fi
|
| 324 |
+
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
| 325 |
+
AC_SUBST([AMDEPBACKSLASH])dnl
|
| 326 |
+
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
|
| 327 |
+
])
|
| 328 |
+
|
| 329 |
+
# Generate code to set up dependency tracking. -*- Autoconf -*-
|
| 330 |
+
|
| 331 |
+
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
|
| 332 |
+
# Free Software Foundation, Inc.
|
| 333 |
+
#
|
| 334 |
+
# This file is free software; the Free Software Foundation
|
| 335 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 336 |
+
# with or without modifications, as long as this notice is preserved.
|
| 337 |
+
|
| 338 |
+
#serial 5
|
| 339 |
+
|
| 340 |
+
# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
| 341 |
+
# ------------------------------
|
| 342 |
+
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
|
| 343 |
+
[{
|
| 344 |
+
# Autoconf 2.62 quotes --file arguments for eval, but not when files
|
| 345 |
+
# are listed without --file. Let's play safe and only enable the eval
|
| 346 |
+
# if we detect the quoting.
|
| 347 |
+
case $CONFIG_FILES in
|
| 348 |
+
*\'*) eval set x "$CONFIG_FILES" ;;
|
| 349 |
+
*) set x $CONFIG_FILES ;;
|
| 350 |
+
esac
|
| 351 |
+
shift
|
| 352 |
+
for mf
|
| 353 |
+
do
|
| 354 |
+
# Strip MF so we end up with the name of the file.
|
| 355 |
+
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
| 356 |
+
# Check whether this is an Automake generated Makefile or not.
|
| 357 |
+
# We used to match only the files named `Makefile.in', but
|
| 358 |
+
# some people rename them; so instead we look at the file content.
|
| 359 |
+
# Grep'ing the first line is not enough: some people post-process
|
| 360 |
+
# each Makefile.in and add a new line on top of each file to say so.
|
| 361 |
+
# Grep'ing the whole file is not good either: AIX grep has a line
|
| 362 |
+
# limit of 2048, but all sed's we know have understand at least 4000.
|
| 363 |
+
if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
|
| 364 |
+
dirpart=`AS_DIRNAME("$mf")`
|
| 365 |
+
else
|
| 366 |
+
continue
|
| 367 |
+
fi
|
| 368 |
+
# Extract the definition of DEPDIR, am__include, and am__quote
|
| 369 |
+
# from the Makefile without running `make'.
|
| 370 |
+
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
| 371 |
+
test -z "$DEPDIR" && continue
|
| 372 |
+
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
| 373 |
+
test -z "am__include" && continue
|
| 374 |
+
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
| 375 |
+
# When using ansi2knr, U may be empty or an underscore; expand it
|
| 376 |
+
U=`sed -n 's/^U = //p' < "$mf"`
|
| 377 |
+
# Find all dependency output files, they are included files with
|
| 378 |
+
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
| 379 |
+
# simplest approach to changing $(DEPDIR) to its actual value in the
|
| 380 |
+
# expansion.
|
| 381 |
+
for file in `sed -n "
|
| 382 |
+
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
| 383 |
+
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
|
| 384 |
+
# Make sure the directory exists.
|
| 385 |
+
test -f "$dirpart/$file" && continue
|
| 386 |
+
fdir=`AS_DIRNAME(["$file"])`
|
| 387 |
+
AS_MKDIR_P([$dirpart/$fdir])
|
| 388 |
+
# echo "creating $dirpart/$file"
|
| 389 |
+
echo '# dummy' > "$dirpart/$file"
|
| 390 |
+
done
|
| 391 |
+
done
|
| 392 |
+
}
|
| 393 |
+
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
| 394 |
+
|
| 395 |
+
|
| 396 |
+
# AM_OUTPUT_DEPENDENCY_COMMANDS
|
| 397 |
+
# -----------------------------
|
| 398 |
+
# This macro should only be invoked once -- use via AC_REQUIRE.
|
| 399 |
+
#
|
| 400 |
+
# This code is only required when automatic dependency tracking
|
| 401 |
+
# is enabled. FIXME. This creates each `.P' file that we will
|
| 402 |
+
# need in order to bootstrap the dependency handling code.
|
| 403 |
+
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
|
| 404 |
+
[AC_CONFIG_COMMANDS([depfiles],
|
| 405 |
+
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
|
| 406 |
+
[AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
|
| 407 |
+
])
|
| 408 |
+
|
| 409 |
+
# Do all the work for Automake. -*- Autoconf -*-
|
| 410 |
+
|
| 411 |
+
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
| 412 |
+
# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
|
| 413 |
+
#
|
| 414 |
+
# This file is free software; the Free Software Foundation
|
| 415 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 416 |
+
# with or without modifications, as long as this notice is preserved.
|
| 417 |
+
|
| 418 |
+
# serial 16
|
| 419 |
+
|
| 420 |
+
# This macro actually does too much. Some checks are only needed if
|
| 421 |
+
# your package does certain things. But this isn't really a big deal.
|
| 422 |
+
|
| 423 |
+
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
|
| 424 |
+
# AM_INIT_AUTOMAKE([OPTIONS])
|
| 425 |
+
# -----------------------------------------------
|
| 426 |
+
# The call with PACKAGE and VERSION arguments is the old style
|
| 427 |
+
# call (pre autoconf-2.50), which is being phased out. PACKAGE
|
| 428 |
+
# and VERSION should now be passed to AC_INIT and removed from
|
| 429 |
+
# the call to AM_INIT_AUTOMAKE.
|
| 430 |
+
# We support both call styles for the transition. After
|
| 431 |
+
# the next Automake release, Autoconf can make the AC_INIT
|
| 432 |
+
# arguments mandatory, and then we can depend on a new Autoconf
|
| 433 |
+
# release and drop the old call support.
|
| 434 |
+
AC_DEFUN([AM_INIT_AUTOMAKE],
|
| 435 |
+
[AC_PREREQ([2.62])dnl
|
| 436 |
+
dnl Autoconf wants to disallow AM_ names. We explicitly allow
|
| 437 |
+
dnl the ones we care about.
|
| 438 |
+
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
|
| 439 |
+
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
|
| 440 |
+
AC_REQUIRE([AC_PROG_INSTALL])dnl
|
| 441 |
+
if test "`cd $srcdir && pwd`" != "`pwd`"; then
|
| 442 |
+
# Use -I$(srcdir) only when $(srcdir) != ., so that make's output
|
| 443 |
+
# is not polluted with repeated "-I."
|
| 444 |
+
AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
|
| 445 |
+
# test to see if srcdir already configured
|
| 446 |
+
if test -f $srcdir/config.status; then
|
| 447 |
+
AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
|
| 448 |
+
fi
|
| 449 |
+
fi
|
| 450 |
+
|
| 451 |
+
# test whether we have cygpath
|
| 452 |
+
if test -z "$CYGPATH_W"; then
|
| 453 |
+
if (cygpath --version) >/dev/null 2>/dev/null; then
|
| 454 |
+
CYGPATH_W='cygpath -w'
|
| 455 |
+
else
|
| 456 |
+
CYGPATH_W=echo
|
| 457 |
+
fi
|
| 458 |
+
fi
|
| 459 |
+
AC_SUBST([CYGPATH_W])
|
| 460 |
+
|
| 461 |
+
# Define the identity of the package.
|
| 462 |
+
dnl Distinguish between old-style and new-style calls.
|
| 463 |
+
m4_ifval([$2],
|
| 464 |
+
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
|
| 465 |
+
AC_SUBST([PACKAGE], [$1])dnl
|
| 466 |
+
AC_SUBST([VERSION], [$2])],
|
| 467 |
+
[_AM_SET_OPTIONS([$1])dnl
|
| 468 |
+
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
|
| 469 |
+
m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
|
| 470 |
+
[m4_fatal([AC_INIT should be called with package and version arguments])])dnl
|
| 471 |
+
AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
|
| 472 |
+
AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
|
| 473 |
+
|
| 474 |
+
_AM_IF_OPTION([no-define],,
|
| 475 |
+
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
|
| 476 |
+
AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
|
| 477 |
+
|
| 478 |
+
# Some tools Automake needs.
|
| 479 |
+
AC_REQUIRE([AM_SANITY_CHECK])dnl
|
| 480 |
+
AC_REQUIRE([AC_ARG_PROGRAM])dnl
|
| 481 |
+
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
|
| 482 |
+
AM_MISSING_PROG(AUTOCONF, autoconf)
|
| 483 |
+
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
|
| 484 |
+
AM_MISSING_PROG(AUTOHEADER, autoheader)
|
| 485 |
+
AM_MISSING_PROG(MAKEINFO, makeinfo)
|
| 486 |
+
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
| 487 |
+
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
|
| 488 |
+
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
|
| 489 |
+
# We need awk for the "check" target. The system "awk" is bad on
|
| 490 |
+
# some platforms.
|
| 491 |
+
AC_REQUIRE([AC_PROG_AWK])dnl
|
| 492 |
+
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
| 493 |
+
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
| 494 |
+
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
|
| 495 |
+
[_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
| 496 |
+
[_AM_PROG_TAR([v7])])])
|
| 497 |
+
_AM_IF_OPTION([no-dependencies],,
|
| 498 |
+
[AC_PROVIDE_IFELSE([AC_PROG_CC],
|
| 499 |
+
[_AM_DEPENDENCIES(CC)],
|
| 500 |
+
[define([AC_PROG_CC],
|
| 501 |
+
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
|
| 502 |
+
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
| 503 |
+
[_AM_DEPENDENCIES(CXX)],
|
| 504 |
+
[define([AC_PROG_CXX],
|
| 505 |
+
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
|
| 506 |
+
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
| 507 |
+
[_AM_DEPENDENCIES(OBJC)],
|
| 508 |
+
[define([AC_PROG_OBJC],
|
| 509 |
+
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
|
| 510 |
+
])
|
| 511 |
+
_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
|
| 512 |
+
dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
|
| 513 |
+
dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
|
| 514 |
+
dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
|
| 515 |
+
AC_CONFIG_COMMANDS_PRE(dnl
|
| 516 |
+
[m4_provide_if([_AM_COMPILER_EXEEXT],
|
| 517 |
+
[AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
|
| 518 |
+
])
|
| 519 |
+
|
| 520 |
+
dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
|
| 521 |
+
dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
|
| 522 |
+
dnl mangled by Autoconf and run in a shell conditional statement.
|
| 523 |
+
m4_define([_AC_COMPILER_EXEEXT],
|
| 524 |
+
m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
|
| 525 |
+
|
| 526 |
+
|
| 527 |
+
# When config.status generates a header, we must update the stamp-h file.
|
| 528 |
+
# This file resides in the same directory as the config header
|
| 529 |
+
# that is generated. The stamp files are numbered to have different names.
|
| 530 |
+
|
| 531 |
+
# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
|
| 532 |
+
# loop where config.status creates the headers, so we can generate
|
| 533 |
+
# our stamp files there.
|
| 534 |
+
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
|
| 535 |
+
[# Compute $1's index in $config_headers.
|
| 536 |
+
_am_arg=$1
|
| 537 |
+
_am_stamp_count=1
|
| 538 |
+
for _am_header in $config_headers :; do
|
| 539 |
+
case $_am_header in
|
| 540 |
+
$_am_arg | $_am_arg:* )
|
| 541 |
+
break ;;
|
| 542 |
+
* )
|
| 543 |
+
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
|
| 544 |
+
esac
|
| 545 |
+
done
|
| 546 |
+
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
|
| 547 |
+
|
| 548 |
+
# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
|
| 549 |
+
#
|
| 550 |
+
# This file is free software; the Free Software Foundation
|
| 551 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 552 |
+
# with or without modifications, as long as this notice is preserved.
|
| 553 |
+
|
| 554 |
+
# AM_PROG_INSTALL_SH
|
| 555 |
+
# ------------------
|
| 556 |
+
# Define $install_sh.
|
| 557 |
+
AC_DEFUN([AM_PROG_INSTALL_SH],
|
| 558 |
+
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
| 559 |
+
if test x"${install_sh}" != xset; then
|
| 560 |
+
case $am_aux_dir in
|
| 561 |
+
*\ * | *\ *)
|
| 562 |
+
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
|
| 563 |
+
*)
|
| 564 |
+
install_sh="\${SHELL} $am_aux_dir/install-sh"
|
| 565 |
+
esac
|
| 566 |
+
fi
|
| 567 |
+
AC_SUBST(install_sh)])
|
| 568 |
+
|
| 569 |
+
# Copyright (C) 2003, 2005 Free Software Foundation, Inc.
|
| 570 |
+
#
|
| 571 |
+
# This file is free software; the Free Software Foundation
|
| 572 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 573 |
+
# with or without modifications, as long as this notice is preserved.
|
| 574 |
+
|
| 575 |
+
# serial 2
|
| 576 |
+
|
| 577 |
+
# Check whether the underlying file-system supports filenames
|
| 578 |
+
# with a leading dot. For instance MS-DOS doesn't.
|
| 579 |
+
AC_DEFUN([AM_SET_LEADING_DOT],
|
| 580 |
+
[rm -rf .tst 2>/dev/null
|
| 581 |
+
mkdir .tst 2>/dev/null
|
| 582 |
+
if test -d .tst; then
|
| 583 |
+
am__leading_dot=.
|
| 584 |
+
else
|
| 585 |
+
am__leading_dot=_
|
| 586 |
+
fi
|
| 587 |
+
rmdir .tst 2>/dev/null
|
| 588 |
+
AC_SUBST([am__leading_dot])])
|
| 589 |
+
|
| 590 |
+
# Check to see how 'make' treats includes. -*- Autoconf -*-
|
| 591 |
+
|
| 592 |
+
# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc.
|
| 593 |
+
#
|
| 594 |
+
# This file is free software; the Free Software Foundation
|
| 595 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 596 |
+
# with or without modifications, as long as this notice is preserved.
|
| 597 |
+
|
| 598 |
+
# serial 4
|
| 599 |
+
|
| 600 |
+
# AM_MAKE_INCLUDE()
|
| 601 |
+
# -----------------
|
| 602 |
+
# Check to see how make treats includes.
|
| 603 |
+
AC_DEFUN([AM_MAKE_INCLUDE],
|
| 604 |
+
[am_make=${MAKE-make}
|
| 605 |
+
cat > confinc << 'END'
|
| 606 |
+
am__doit:
|
| 607 |
+
@echo this is the am__doit target
|
| 608 |
+
.PHONY: am__doit
|
| 609 |
+
END
|
| 610 |
+
# If we don't find an include directive, just comment out the code.
|
| 611 |
+
AC_MSG_CHECKING([for style of include used by $am_make])
|
| 612 |
+
am__include="#"
|
| 613 |
+
am__quote=
|
| 614 |
+
_am_result=none
|
| 615 |
+
# First try GNU make style include.
|
| 616 |
+
echo "include confinc" > confmf
|
| 617 |
+
# Ignore all kinds of additional output from `make'.
|
| 618 |
+
case `$am_make -s -f confmf 2> /dev/null` in #(
|
| 619 |
+
*the\ am__doit\ target*)
|
| 620 |
+
am__include=include
|
| 621 |
+
am__quote=
|
| 622 |
+
_am_result=GNU
|
| 623 |
+
;;
|
| 624 |
+
esac
|
| 625 |
+
# Now try BSD make style include.
|
| 626 |
+
if test "$am__include" = "#"; then
|
| 627 |
+
echo '.include "confinc"' > confmf
|
| 628 |
+
case `$am_make -s -f confmf 2> /dev/null` in #(
|
| 629 |
+
*the\ am__doit\ target*)
|
| 630 |
+
am__include=.include
|
| 631 |
+
am__quote="\""
|
| 632 |
+
_am_result=BSD
|
| 633 |
+
;;
|
| 634 |
+
esac
|
| 635 |
+
fi
|
| 636 |
+
AC_SUBST([am__include])
|
| 637 |
+
AC_SUBST([am__quote])
|
| 638 |
+
AC_MSG_RESULT([$_am_result])
|
| 639 |
+
rm -f confinc confmf
|
| 640 |
+
])
|
| 641 |
+
|
| 642 |
+
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
|
| 643 |
+
|
| 644 |
+
# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
|
| 645 |
+
# Free Software Foundation, Inc.
|
| 646 |
+
#
|
| 647 |
+
# This file is free software; the Free Software Foundation
|
| 648 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 649 |
+
# with or without modifications, as long as this notice is preserved.
|
| 650 |
+
|
| 651 |
+
# serial 6
|
| 652 |
+
|
| 653 |
+
# AM_MISSING_PROG(NAME, PROGRAM)
|
| 654 |
+
# ------------------------------
|
| 655 |
+
AC_DEFUN([AM_MISSING_PROG],
|
| 656 |
+
[AC_REQUIRE([AM_MISSING_HAS_RUN])
|
| 657 |
+
$1=${$1-"${am_missing_run}$2"}
|
| 658 |
+
AC_SUBST($1)])
|
| 659 |
+
|
| 660 |
+
|
| 661 |
+
# AM_MISSING_HAS_RUN
|
| 662 |
+
# ------------------
|
| 663 |
+
# Define MISSING if not defined so far and test if it supports --run.
|
| 664 |
+
# If it does, set am_missing_run to use it, otherwise, to nothing.
|
| 665 |
+
AC_DEFUN([AM_MISSING_HAS_RUN],
|
| 666 |
+
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
| 667 |
+
AC_REQUIRE_AUX_FILE([missing])dnl
|
| 668 |
+
if test x"${MISSING+set}" != xset; then
|
| 669 |
+
case $am_aux_dir in
|
| 670 |
+
*\ * | *\ *)
|
| 671 |
+
MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
|
| 672 |
+
*)
|
| 673 |
+
MISSING="\${SHELL} $am_aux_dir/missing" ;;
|
| 674 |
+
esac
|
| 675 |
+
fi
|
| 676 |
+
# Use eval to expand $SHELL
|
| 677 |
+
if eval "$MISSING --run true"; then
|
| 678 |
+
am_missing_run="$MISSING --run "
|
| 679 |
+
else
|
| 680 |
+
am_missing_run=
|
| 681 |
+
AC_MSG_WARN([`missing' script is too old or missing])
|
| 682 |
+
fi
|
| 683 |
+
])
|
| 684 |
+
|
| 685 |
+
# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
| 686 |
+
#
|
| 687 |
+
# This file is free software; the Free Software Foundation
|
| 688 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 689 |
+
# with or without modifications, as long as this notice is preserved.
|
| 690 |
+
|
| 691 |
+
# AM_PROG_MKDIR_P
|
| 692 |
+
# ---------------
|
| 693 |
+
# Check for `mkdir -p'.
|
| 694 |
+
AC_DEFUN([AM_PROG_MKDIR_P],
|
| 695 |
+
[AC_PREREQ([2.60])dnl
|
| 696 |
+
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
|
| 697 |
+
dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
|
| 698 |
+
dnl while keeping a definition of mkdir_p for backward compatibility.
|
| 699 |
+
dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
|
| 700 |
+
dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
|
| 701 |
+
dnl Makefile.ins that do not define MKDIR_P, so we do our own
|
| 702 |
+
dnl adjustment using top_builddir (which is defined more often than
|
| 703 |
+
dnl MKDIR_P).
|
| 704 |
+
AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
|
| 705 |
+
case $mkdir_p in
|
| 706 |
+
[[\\/$]]* | ?:[[\\/]]*) ;;
|
| 707 |
+
*/*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
|
| 708 |
+
esac
|
| 709 |
+
])
|
| 710 |
+
|
| 711 |
+
# Helper functions for option handling. -*- Autoconf -*-
|
| 712 |
+
|
| 713 |
+
# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc.
|
| 714 |
+
#
|
| 715 |
+
# This file is free software; the Free Software Foundation
|
| 716 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 717 |
+
# with or without modifications, as long as this notice is preserved.
|
| 718 |
+
|
| 719 |
+
# serial 4
|
| 720 |
+
|
| 721 |
+
# _AM_MANGLE_OPTION(NAME)
|
| 722 |
+
# -----------------------
|
| 723 |
+
AC_DEFUN([_AM_MANGLE_OPTION],
|
| 724 |
+
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
|
| 725 |
+
|
| 726 |
+
# _AM_SET_OPTION(NAME)
|
| 727 |
+
# ------------------------------
|
| 728 |
+
# Set option NAME. Presently that only means defining a flag for this option.
|
| 729 |
+
AC_DEFUN([_AM_SET_OPTION],
|
| 730 |
+
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
|
| 731 |
+
|
| 732 |
+
# _AM_SET_OPTIONS(OPTIONS)
|
| 733 |
+
# ----------------------------------
|
| 734 |
+
# OPTIONS is a space-separated list of Automake options.
|
| 735 |
+
AC_DEFUN([_AM_SET_OPTIONS],
|
| 736 |
+
[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
|
| 737 |
+
|
| 738 |
+
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
|
| 739 |
+
# -------------------------------------------
|
| 740 |
+
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
|
| 741 |
+
AC_DEFUN([_AM_IF_OPTION],
|
| 742 |
+
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
|
| 743 |
+
|
| 744 |
+
# Check to make sure that the build environment is sane. -*- Autoconf -*-
|
| 745 |
+
|
| 746 |
+
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
|
| 747 |
+
# Free Software Foundation, Inc.
|
| 748 |
+
#
|
| 749 |
+
# This file is free software; the Free Software Foundation
|
| 750 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 751 |
+
# with or without modifications, as long as this notice is preserved.
|
| 752 |
+
|
| 753 |
+
# serial 5
|
| 754 |
+
|
| 755 |
+
# AM_SANITY_CHECK
|
| 756 |
+
# ---------------
|
| 757 |
+
AC_DEFUN([AM_SANITY_CHECK],
|
| 758 |
+
[AC_MSG_CHECKING([whether build environment is sane])
|
| 759 |
+
# Just in case
|
| 760 |
+
sleep 1
|
| 761 |
+
echo timestamp > conftest.file
|
| 762 |
+
# Reject unsafe characters in $srcdir or the absolute working directory
|
| 763 |
+
# name. Accept space and tab only in the latter.
|
| 764 |
+
am_lf='
|
| 765 |
+
'
|
| 766 |
+
case `pwd` in
|
| 767 |
+
*[[\\\"\#\$\&\'\`$am_lf]]*)
|
| 768 |
+
AC_MSG_ERROR([unsafe absolute working directory name]);;
|
| 769 |
+
esac
|
| 770 |
+
case $srcdir in
|
| 771 |
+
*[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
|
| 772 |
+
AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
|
| 773 |
+
esac
|
| 774 |
+
|
| 775 |
+
# Do `set' in a subshell so we don't clobber the current shell's
|
| 776 |
+
# arguments. Must try -L first in case configure is actually a
|
| 777 |
+
# symlink; some systems play weird games with the mod time of symlinks
|
| 778 |
+
# (eg FreeBSD returns the mod time of the symlink's containing
|
| 779 |
+
# directory).
|
| 780 |
+
if (
|
| 781 |
+
set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
|
| 782 |
+
if test "$[*]" = "X"; then
|
| 783 |
+
# -L didn't work.
|
| 784 |
+
set X `ls -t "$srcdir/configure" conftest.file`
|
| 785 |
+
fi
|
| 786 |
+
rm -f conftest.file
|
| 787 |
+
if test "$[*]" != "X $srcdir/configure conftest.file" \
|
| 788 |
+
&& test "$[*]" != "X conftest.file $srcdir/configure"; then
|
| 789 |
+
|
| 790 |
+
# If neither matched, then we have a broken ls. This can happen
|
| 791 |
+
# if, for instance, CONFIG_SHELL is bash and it inherits a
|
| 792 |
+
# broken ls alias from the environment. This has actually
|
| 793 |
+
# happened. Such a system could not be considered "sane".
|
| 794 |
+
AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
|
| 795 |
+
alias in your environment])
|
| 796 |
+
fi
|
| 797 |
+
|
| 798 |
+
test "$[2]" = conftest.file
|
| 799 |
+
)
|
| 800 |
+
then
|
| 801 |
+
# Ok.
|
| 802 |
+
:
|
| 803 |
+
else
|
| 804 |
+
AC_MSG_ERROR([newly created file is older than distributed files!
|
| 805 |
+
Check your system clock])
|
| 806 |
+
fi
|
| 807 |
+
AC_MSG_RESULT(yes)])
|
| 808 |
+
|
| 809 |
+
# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
|
| 810 |
+
#
|
| 811 |
+
# This file is free software; the Free Software Foundation
|
| 812 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 813 |
+
# with or without modifications, as long as this notice is preserved.
|
| 814 |
+
|
| 815 |
+
# AM_PROG_INSTALL_STRIP
|
| 816 |
+
# ---------------------
|
| 817 |
+
# One issue with vendor `install' (even GNU) is that you can't
|
| 818 |
+
# specify the program used to strip binaries. This is especially
|
| 819 |
+
# annoying in cross-compiling environments, where the build's strip
|
| 820 |
+
# is unlikely to handle the host's binaries.
|
| 821 |
+
# Fortunately install-sh will honor a STRIPPROG variable, so we
|
| 822 |
+
# always use install-sh in `make install-strip', and initialize
|
| 823 |
+
# STRIPPROG with the value of the STRIP variable (set by the user).
|
| 824 |
+
AC_DEFUN([AM_PROG_INSTALL_STRIP],
|
| 825 |
+
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
| 826 |
+
# Installed binaries are usually stripped using `strip' when the user
|
| 827 |
+
# run `make install-strip'. However `strip' might not be the right
|
| 828 |
+
# tool to use in cross-compilation environments, therefore Automake
|
| 829 |
+
# will honor the `STRIP' environment variable to overrule this program.
|
| 830 |
+
dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
|
| 831 |
+
if test "$cross_compiling" != no; then
|
| 832 |
+
AC_CHECK_TOOL([STRIP], [strip], :)
|
| 833 |
+
fi
|
| 834 |
+
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
| 835 |
+
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
| 836 |
+
|
| 837 |
+
# Copyright (C) 2006, 2008 Free Software Foundation, Inc.
|
| 838 |
+
#
|
| 839 |
+
# This file is free software; the Free Software Foundation
|
| 840 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 841 |
+
# with or without modifications, as long as this notice is preserved.
|
| 842 |
+
|
| 843 |
+
# serial 2
|
| 844 |
+
|
| 845 |
+
# _AM_SUBST_NOTMAKE(VARIABLE)
|
| 846 |
+
# ---------------------------
|
| 847 |
+
# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
|
| 848 |
+
# This macro is traced by Automake.
|
| 849 |
+
AC_DEFUN([_AM_SUBST_NOTMAKE])
|
| 850 |
+
|
| 851 |
+
# AM_SUBST_NOTMAKE(VARIABLE)
|
| 852 |
+
# ---------------------------
|
| 853 |
+
# Public sister of _AM_SUBST_NOTMAKE.
|
| 854 |
+
AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
|
| 855 |
+
|
| 856 |
+
# Check how to create a tarball. -*- Autoconf -*-
|
| 857 |
+
|
| 858 |
+
# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
|
| 859 |
+
#
|
| 860 |
+
# This file is free software; the Free Software Foundation
|
| 861 |
+
# gives unlimited permission to copy and/or distribute it,
|
| 862 |
+
# with or without modifications, as long as this notice is preserved.
|
| 863 |
+
|
| 864 |
+
# serial 2
|
| 865 |
+
|
| 866 |
+
# _AM_PROG_TAR(FORMAT)
|
| 867 |
+
# --------------------
|
| 868 |
+
# Check how to create a tarball in format FORMAT.
|
| 869 |
+
# FORMAT should be one of `v7', `ustar', or `pax'.
|
| 870 |
+
#
|
| 871 |
+
# Substitute a variable $(am__tar) that is a command
|
| 872 |
+
# writing to stdout a FORMAT-tarball containing the directory
|
| 873 |
+
# $tardir.
|
| 874 |
+
# tardir=directory && $(am__tar) > result.tar
|
| 875 |
+
#
|
| 876 |
+
# Substitute a variable $(am__untar) that extract such
|
| 877 |
+
# a tarball read from stdin.
|
| 878 |
+
# $(am__untar) < result.tar
|
| 879 |
+
AC_DEFUN([_AM_PROG_TAR],
|
| 880 |
+
[# Always define AMTAR for backward compatibility.
|
| 881 |
+
AM_MISSING_PROG([AMTAR], [tar])
|
| 882 |
+
m4_if([$1], [v7],
|
| 883 |
+
[am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
|
| 884 |
+
[m4_case([$1], [ustar],, [pax],,
|
| 885 |
+
[m4_fatal([Unknown tar format])])
|
| 886 |
+
AC_MSG_CHECKING([how to create a $1 tar archive])
|
| 887 |
+
# Loop over all known methods to create a tar archive until one works.
|
| 888 |
+
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
|
| 889 |
+
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
|
| 890 |
+
# Do not fold the above two line into one, because Tru64 sh and
|
| 891 |
+
# Solaris sh will not grok spaces in the rhs of `-'.
|
| 892 |
+
for _am_tool in $_am_tools
|
| 893 |
+
do
|
| 894 |
+
case $_am_tool in
|
| 895 |
+
gnutar)
|
| 896 |
+
for _am_tar in tar gnutar gtar;
|
| 897 |
+
do
|
| 898 |
+
AM_RUN_LOG([$_am_tar --version]) && break
|
| 899 |
+
done
|
| 900 |
+
am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
|
| 901 |
+
am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
|
| 902 |
+
am__untar="$_am_tar -xf -"
|
| 903 |
+
;;
|
| 904 |
+
plaintar)
|
| 905 |
+
# Must skip GNU tar: if it does not support --format= it doesn't create
|
| 906 |
+
# ustar tarball either.
|
| 907 |
+
(tar --version) >/dev/null 2>&1 && continue
|
| 908 |
+
am__tar='tar chf - "$$tardir"'
|
| 909 |
+
am__tar_='tar chf - "$tardir"'
|
| 910 |
+
am__untar='tar xf -'
|
| 911 |
+
;;
|
| 912 |
+
pax)
|
| 913 |
+
am__tar='pax -L -x $1 -w "$$tardir"'
|
| 914 |
+
am__tar_='pax -L -x $1 -w "$tardir"'
|
| 915 |
+
am__untar='pax -r'
|
| 916 |
+
;;
|
| 917 |
+
cpio)
|
| 918 |
+
am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
|
| 919 |
+
am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
|
| 920 |
+
am__untar='cpio -i -H $1 -d'
|
| 921 |
+
;;
|
| 922 |
+
none)
|
| 923 |
+
am__tar=false
|
| 924 |
+
am__tar_=false
|
| 925 |
+
am__untar=false
|
| 926 |
+
;;
|
| 927 |
+
esac
|
| 928 |
+
|
| 929 |
+
# If the value was cached, stop now. We just wanted to have am__tar
|
| 930 |
+
# and am__untar set.
|
| 931 |
+
test -n "${am_cv_prog_tar_$1}" && break
|
| 932 |
+
|
| 933 |
+
# tar/untar a dummy directory, and stop if the command works
|
| 934 |
+
rm -rf conftest.dir
|
| 935 |
+
mkdir conftest.dir
|
| 936 |
+
echo GrepMe > conftest.dir/file
|
| 937 |
+
AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
|
| 938 |
+
rm -rf conftest.dir
|
| 939 |
+
if test -s conftest.tar; then
|
| 940 |
+
AM_RUN_LOG([$am__untar <conftest.tar])
|
| 941 |
+
grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
|
| 942 |
+
fi
|
| 943 |
+
done
|
| 944 |
+
rm -rf conftest.dir
|
| 945 |
+
|
| 946 |
+
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
|
| 947 |
+
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
|
| 948 |
+
AC_SUBST([am__tar])
|
| 949 |
+
AC_SUBST([am__untar])
|
| 950 |
+
]) # _AM_PROG_TAR
|
| 951 |
+
|
| 952 |
+
m4_include([m4/ax_boost_base.m4])
|
mosesdecoder/contrib/eppex/configure
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
mosesdecoder/contrib/eppex/counter.cpp
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* Epochal Phrase Extraction - extracted phrase pairs counter. Run this program
|
| 3 |
+
* the same way as phrase-extract/extract (without output files). Numbers of
|
| 4 |
+
* extracted phrase pairs for each length up to max-phrase-length will be
|
| 5 |
+
* reported.
|
| 6 |
+
*
|
| 7 |
+
* (C) Moses: http://www.statmt.org/moses/
|
| 8 |
+
* (C) Ceslav Przywara, UFAL MFF UK, 2011
|
| 9 |
+
*
|
| 10 |
+
* $Id$
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
#include <string>
|
| 14 |
+
#include <iostream>
|
| 15 |
+
#include <fstream>
|
| 16 |
+
#include <cstdlib>
|
| 17 |
+
#include <iomanip>
|
| 18 |
+
|
| 19 |
+
#include "phrase-extract.h"
|
| 20 |
+
#include "shared.h"
|
| 21 |
+
|
| 22 |
+
#define REQUIRED_PARAMS_NUM 4
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
void usage(const char* programName) {
|
| 26 |
+
std::cerr << "syntax: " << std::string(programName) << " tgt src align max-phrase-length [orientation [ --model [wbe|phrase|hier]-[msd|mslr|mono] ]]]\n";
|
| 27 |
+
exit(1);
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
/*******************************************************************************
|
| 32 |
+
* MAIN *
|
| 33 |
+
******************************************************************************/
|
| 34 |
+
int main(int argc, char** argv) {
|
| 35 |
+
|
| 36 |
+
if (argc <= REQUIRED_PARAMS_NUM) {
|
| 37 |
+
usage(argv[0]);
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
const char* fileNameE = argv[1];
|
| 41 |
+
const char* fileNameF = argv[2];
|
| 42 |
+
const char* fileNameA = argv[3];
|
| 43 |
+
maxPhraseLength = std::atoi(argv[4]);
|
| 44 |
+
|
| 45 |
+
//
|
| 46 |
+
read_optional_params(argc, argv, 5);
|
| 47 |
+
|
| 48 |
+
// Init phrase pairs counters (add +1 for dummy zero-length counter).
|
| 49 |
+
phrasePairsCounters.resize(maxPhraseLength + 1, 0);
|
| 50 |
+
|
| 51 |
+
std::cerr << "Starting phrase pairs counter ..." << std::endl;
|
| 52 |
+
|
| 53 |
+
// open input files
|
| 54 |
+
std::ifstream eFile(fileNameE);
|
| 55 |
+
std::ifstream fFile(fileNameF);
|
| 56 |
+
std::ifstream aFile(fileNameA);
|
| 57 |
+
|
| 58 |
+
//
|
| 59 |
+
readInput(eFile, fFile, aFile);
|
| 60 |
+
|
| 61 |
+
std::cerr << std::endl; // Leave the progress bar end on previous line.
|
| 62 |
+
|
| 63 |
+
// close input files
|
| 64 |
+
eFile.close();
|
| 65 |
+
fFile.close();
|
| 66 |
+
aFile.close();
|
| 67 |
+
|
| 68 |
+
std::cout
|
| 69 |
+
<< "############################" << std::endl
|
| 70 |
+
<< "# len # phrase pairs count #" << std::endl
|
| 71 |
+
<< "############################" << std::endl;
|
| 72 |
+
|
| 73 |
+
for ( size_t i = 1; i < phrasePairsCounters.size(); ++i ) {
|
| 74 |
+
std::cout << "# " << std::setw(3) << i << " # " << std::setw(18) << phrasePairsCounters[i] << " #" << std::endl;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
std::cout
|
| 78 |
+
<< "############################" << std::endl;
|
| 79 |
+
|
| 80 |
+
}
|
| 81 |
+
|
mosesdecoder/contrib/eppex/m4/ax_boost_base.m4
ADDED
|
@@ -0,0 +1,223 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ===========================================================================
|
| 2 |
+
# http://autoconf-archive.cryp.to/ax_boost_base.html
|
| 3 |
+
# ===========================================================================
|
| 4 |
+
#
|
| 5 |
+
# SYNOPSIS
|
| 6 |
+
#
|
| 7 |
+
# AX_BOOST_BASE([MINIMUM-VERSION])
|
| 8 |
+
#
|
| 9 |
+
# DESCRIPTION
|
| 10 |
+
#
|
| 11 |
+
# Test for the Boost C++ libraries of a particular version (or newer)
|
| 12 |
+
#
|
| 13 |
+
# If no path to the installed boost library is given the macro searchs
|
| 14 |
+
# under /usr, /usr/local, /opt and /opt/local and evaluates the
|
| 15 |
+
# $BOOST_ROOT environment variable. Further documentation is available at
|
| 16 |
+
# <http://randspringer.de/boost/index.html>.
|
| 17 |
+
#
|
| 18 |
+
# This macro calls:
|
| 19 |
+
#
|
| 20 |
+
# AC_SUBST(BOOST_CPPFLAGS) / AC_SUBST(BOOST_LDFLAGS)
|
| 21 |
+
#
|
| 22 |
+
# And sets:
|
| 23 |
+
#
|
| 24 |
+
# HAVE_BOOST
|
| 25 |
+
#
|
| 26 |
+
# LAST MODIFICATION
|
| 27 |
+
#
|
| 28 |
+
# 2008-04-12
|
| 29 |
+
#
|
| 30 |
+
# COPYLEFT
|
| 31 |
+
#
|
| 32 |
+
# Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de>
|
| 33 |
+
#
|
| 34 |
+
# Copying and distribution of this file, with or without modification, are
|
| 35 |
+
# permitted in any medium without royalty provided the copyright notice
|
| 36 |
+
# and this notice are preserved.
|
| 37 |
+
|
| 38 |
+
AC_DEFUN([AX_BOOST_BASE],
|
| 39 |
+
[
|
| 40 |
+
AC_ARG_WITH([boost],
|
| 41 |
+
AS_HELP_STRING([--with-boost@<:@=DIR@:>@], [use boost (default is yes) - it is possible to specify the root directory for boost (optional)]),
|
| 42 |
+
[
|
| 43 |
+
if test "$withval" = "no"; then
|
| 44 |
+
want_boost="no"
|
| 45 |
+
elif test "$withval" = "yes"; then
|
| 46 |
+
want_boost="yes"
|
| 47 |
+
ac_boost_path=""
|
| 48 |
+
else
|
| 49 |
+
want_boost="yes"
|
| 50 |
+
ac_boost_path="$withval"
|
| 51 |
+
fi
|
| 52 |
+
],
|
| 53 |
+
[want_boost="yes"])
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
AC_ARG_WITH([boost-libdir],
|
| 57 |
+
AS_HELP_STRING([--with-boost-libdir=LIB_DIR],
|
| 58 |
+
[Force given directory for boost libraries. Note that this will overwrite library path detection, so use this parameter only if default library detection fails and you know exactly where your boost libraries are located.]),
|
| 59 |
+
[
|
| 60 |
+
if test -d $withval
|
| 61 |
+
then
|
| 62 |
+
ac_boost_lib_path="$withval"
|
| 63 |
+
else
|
| 64 |
+
AC_MSG_ERROR(--with-boost-libdir expected directory name)
|
| 65 |
+
fi
|
| 66 |
+
],
|
| 67 |
+
[ac_boost_lib_path=""]
|
| 68 |
+
)
|
| 69 |
+
|
| 70 |
+
if test "x$want_boost" = "xyes"; then
|
| 71 |
+
boost_lib_version_req=ifelse([$1], ,1.20.0,$1)
|
| 72 |
+
boost_lib_version_req_shorten=`expr $boost_lib_version_req : '\([[0-9]]*\.[[0-9]]*\)'`
|
| 73 |
+
boost_lib_version_req_major=`expr $boost_lib_version_req : '\([[0-9]]*\)'`
|
| 74 |
+
boost_lib_version_req_minor=`expr $boost_lib_version_req : '[[0-9]]*\.\([[0-9]]*\)'`
|
| 75 |
+
boost_lib_version_req_sub_minor=`expr $boost_lib_version_req : '[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)'`
|
| 76 |
+
if test "x$boost_lib_version_req_sub_minor" = "x" ; then
|
| 77 |
+
boost_lib_version_req_sub_minor="0"
|
| 78 |
+
fi
|
| 79 |
+
WANT_BOOST_VERSION=`expr $boost_lib_version_req_major \* 100000 \+ $boost_lib_version_req_minor \* 100 \+ $boost_lib_version_req_sub_minor`
|
| 80 |
+
AC_MSG_CHECKING(for boostlib >= $boost_lib_version_req)
|
| 81 |
+
succeeded=no
|
| 82 |
+
|
| 83 |
+
dnl first we check the system location for boost libraries
|
| 84 |
+
dnl this location ist chosen if boost libraries are installed with the --layout=system option
|
| 85 |
+
dnl or if you install boost with RPM
|
| 86 |
+
if test "$ac_boost_path" != ""; then
|
| 87 |
+
BOOST_LDFLAGS="-L$ac_boost_path/lib"
|
| 88 |
+
BOOST_CPPFLAGS="-I$ac_boost_path/include"
|
| 89 |
+
else
|
| 90 |
+
for ac_boost_path_tmp in /usr /usr/local /opt /opt/local ; do
|
| 91 |
+
if test -d "$ac_boost_path_tmp/include/boost" && test -r "$ac_boost_path_tmp/include/boost"; then
|
| 92 |
+
BOOST_LDFLAGS="-L$ac_boost_path_tmp/lib"
|
| 93 |
+
BOOST_CPPFLAGS="-I$ac_boost_path_tmp/include"
|
| 94 |
+
break;
|
| 95 |
+
fi
|
| 96 |
+
done
|
| 97 |
+
fi
|
| 98 |
+
|
| 99 |
+
dnl overwrite ld flags if we have required special directory with
|
| 100 |
+
dnl --with-boost-libdir parameter
|
| 101 |
+
if test "$ac_boost_lib_path" != ""; then
|
| 102 |
+
BOOST_LDFLAGS="-L$ac_boost_lib_path"
|
| 103 |
+
fi
|
| 104 |
+
|
| 105 |
+
CPPFLAGS_SAVED="$CPPFLAGS"
|
| 106 |
+
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
|
| 107 |
+
export CPPFLAGS
|
| 108 |
+
|
| 109 |
+
LDFLAGS_SAVED="$LDFLAGS"
|
| 110 |
+
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
|
| 111 |
+
export LDFLAGS
|
| 112 |
+
|
| 113 |
+
AC_LANG_PUSH(C++)
|
| 114 |
+
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
| 115 |
+
@%:@include <boost/version.hpp>
|
| 116 |
+
]], [[
|
| 117 |
+
#if BOOST_VERSION >= $WANT_BOOST_VERSION
|
| 118 |
+
// Everything is okay
|
| 119 |
+
#else
|
| 120 |
+
# error Boost version is too old
|
| 121 |
+
#endif
|
| 122 |
+
]])],[
|
| 123 |
+
AC_MSG_RESULT(yes)
|
| 124 |
+
succeeded=yes
|
| 125 |
+
found_system=yes
|
| 126 |
+
],[
|
| 127 |
+
])
|
| 128 |
+
AC_LANG_POP([C++])
|
| 129 |
+
|
| 130 |
+
|
| 131 |
+
|
| 132 |
+
dnl if we found no boost with system layout we search for boost libraries
|
| 133 |
+
dnl built and installed without the --layout=system option or for a staged(not installed) version
|
| 134 |
+
if test "x$succeeded" != "xyes"; then
|
| 135 |
+
_version=0
|
| 136 |
+
if test "$ac_boost_path" != ""; then
|
| 137 |
+
if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then
|
| 138 |
+
for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do
|
| 139 |
+
_version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'`
|
| 140 |
+
V_CHECK=`expr $_version_tmp \> $_version`
|
| 141 |
+
if test "$V_CHECK" = "1" ; then
|
| 142 |
+
_version=$_version_tmp
|
| 143 |
+
fi
|
| 144 |
+
VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'`
|
| 145 |
+
BOOST_CPPFLAGS="-I$ac_boost_path/include/boost-$VERSION_UNDERSCORE"
|
| 146 |
+
done
|
| 147 |
+
fi
|
| 148 |
+
else
|
| 149 |
+
for ac_boost_path in /usr /usr/local /opt /opt/local ; do
|
| 150 |
+
if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then
|
| 151 |
+
for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do
|
| 152 |
+
_version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'`
|
| 153 |
+
V_CHECK=`expr $_version_tmp \> $_version`
|
| 154 |
+
if test "$V_CHECK" = "1" ; then
|
| 155 |
+
_version=$_version_tmp
|
| 156 |
+
best_path=$ac_boost_path
|
| 157 |
+
fi
|
| 158 |
+
done
|
| 159 |
+
fi
|
| 160 |
+
done
|
| 161 |
+
|
| 162 |
+
VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'`
|
| 163 |
+
BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE"
|
| 164 |
+
if test "$ac_boost_lib_path" = ""
|
| 165 |
+
then
|
| 166 |
+
BOOST_LDFLAGS="-L$best_path/lib"
|
| 167 |
+
fi
|
| 168 |
+
|
| 169 |
+
if test "x$BOOST_ROOT" != "x"; then
|
| 170 |
+
if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/lib" && test -r "$BOOST_ROOT/stage/lib"; then
|
| 171 |
+
version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'`
|
| 172 |
+
stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'`
|
| 173 |
+
stage_version_shorten=`expr $stage_version : '\([[0-9]]*\.[[0-9]]*\)'`
|
| 174 |
+
V_CHECK=`expr $stage_version_shorten \>\= $_version`
|
| 175 |
+
if test "$V_CHECK" = "1" -a "$ac_boost_lib_path" = "" ; then
|
| 176 |
+
AC_MSG_NOTICE(We will use a staged boost library from $BOOST_ROOT)
|
| 177 |
+
BOOST_CPPFLAGS="-I$BOOST_ROOT"
|
| 178 |
+
BOOST_LDFLAGS="-L$BOOST_ROOT/stage/lib"
|
| 179 |
+
fi
|
| 180 |
+
fi
|
| 181 |
+
fi
|
| 182 |
+
fi
|
| 183 |
+
|
| 184 |
+
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
|
| 185 |
+
export CPPFLAGS
|
| 186 |
+
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
|
| 187 |
+
export LDFLAGS
|
| 188 |
+
|
| 189 |
+
AC_LANG_PUSH(C++)
|
| 190 |
+
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
| 191 |
+
@%:@include <boost/version.hpp>
|
| 192 |
+
]], [[
|
| 193 |
+
#if BOOST_VERSION >= $WANT_BOOST_VERSION
|
| 194 |
+
// Everything is okay
|
| 195 |
+
#else
|
| 196 |
+
# error Boost version is too old
|
| 197 |
+
#endif
|
| 198 |
+
]])],[
|
| 199 |
+
AC_MSG_RESULT(yes)
|
| 200 |
+
succeeded=yes
|
| 201 |
+
found_system=yes
|
| 202 |
+
],[
|
| 203 |
+
])
|
| 204 |
+
AC_LANG_POP([C++])
|
| 205 |
+
fi
|
| 206 |
+
|
| 207 |
+
if test "$succeeded" != "yes" ; then
|
| 208 |
+
if test "$_version" = "0" ; then
|
| 209 |
+
AC_MSG_ERROR([[We could not detect the boost libraries (version $boost_lib_version_req_shorten or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in <boost/version.hpp>. See http://randspringer.de/boost for more documentation.]])
|
| 210 |
+
else
|
| 211 |
+
AC_MSG_NOTICE([Your boost libraries seems to old (version $_version).])
|
| 212 |
+
fi
|
| 213 |
+
else
|
| 214 |
+
AC_SUBST(BOOST_CPPFLAGS)
|
| 215 |
+
AC_SUBST(BOOST_LDFLAGS)
|
| 216 |
+
AC_DEFINE(HAVE_BOOST,,[define if the Boost library is available])
|
| 217 |
+
fi
|
| 218 |
+
|
| 219 |
+
CPPFLAGS="$CPPFLAGS_SAVED"
|
| 220 |
+
LDFLAGS="$LDFLAGS_SAVED"
|
| 221 |
+
fi
|
| 222 |
+
|
| 223 |
+
])
|
mosesdecoder/contrib/eppex/phrase-extract.cpp
ADDED
|
@@ -0,0 +1,805 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* Common lossy counting phrase extraction functionality implementation.
|
| 3 |
+
*
|
| 4 |
+
* Note: The bulk of this unit is based on Philipp Koehn's code from
|
| 5 |
+
* phrase-extract/extract.cpp.
|
| 6 |
+
*
|
| 7 |
+
* (C) Moses: http://www.statmt.org/moses/
|
| 8 |
+
* (C) Ceslav Przywara, UFAL MFF UK, 2011
|
| 9 |
+
*
|
| 10 |
+
* $Id$
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
#include <iostream>
|
| 14 |
+
#include <iomanip>
|
| 15 |
+
#include <sstream>
|
| 16 |
+
|
| 17 |
+
#include "phrase-extract.h"
|
| 18 |
+
#include "ISS.h"
|
| 19 |
+
// I'm using my own version of SafeGetline (without "using namespace std;"):
|
| 20 |
+
#include "SafeGetline.h"
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
#define LINE_MAX_LENGTH 60000
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
//////// Helping functions ////////
|
| 27 |
+
|
| 28 |
+
// For sorted output.
|
| 29 |
+
typedef std::pair<indexed_phrases_pair_t, PhrasePairsLossyCounter::frequency_t> output_pair_t;
|
| 30 |
+
typedef std::vector<output_pair_t> output_vector_t;
|
| 31 |
+
|
| 32 |
+
class PhraseComp {
|
| 33 |
+
/** @var If true, sort by target phrase first. */
|
| 34 |
+
bool _inverted;
|
| 35 |
+
|
| 36 |
+
bool compareAlignments(const indexed_phrases_pair_t& a, const indexed_phrases_pair_t& b);
|
| 37 |
+
|
| 38 |
+
int comparePhrases(const indexed_phrases_pair_t::phrase_t& a, const indexed_phrases_pair_t::phrase_t& b);
|
| 39 |
+
|
| 40 |
+
public:
|
| 41 |
+
PhraseComp(bool inverted): _inverted(inverted) {}
|
| 42 |
+
|
| 43 |
+
bool operator()(const output_pair_t& a, const output_pair_t& b);
|
| 44 |
+
};
|
| 45 |
+
|
| 46 |
+
void processSortedOutput(OutputProcessor& processor);
|
| 47 |
+
|
| 48 |
+
void processUnsortedOutput(OutputProcessor& processor);
|
| 49 |
+
|
| 50 |
+
void flushPhrasePair(OutputProcessor& processor, const indexed_phrases_pair_t& indexedPhrasePair, PhrasePairsLossyCounter::frequency_t frequency, int mode);
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
//////// Define variables declared as extern in the header /////////////////////
|
| 54 |
+
bool allModelsOutputFlag = false;
|
| 55 |
+
|
| 56 |
+
bool wordModel = false; // IBM word model.
|
| 57 |
+
REO_MODEL_TYPE wordType = REO_MSD;
|
| 58 |
+
bool phraseModel = false; // Std phrase-based model.
|
| 59 |
+
REO_MODEL_TYPE phraseType = REO_MSD;
|
| 60 |
+
bool hierModel = false; // Hierarchical model.
|
| 61 |
+
REO_MODEL_TYPE hierType = REO_MSD;
|
| 62 |
+
|
| 63 |
+
int maxPhraseLength = 0; // Eg. 7
|
| 64 |
+
bool translationFlag = true; // Generate extract and extract.inv
|
| 65 |
+
bool orientationFlag = false; // Ordering info needed?
|
| 66 |
+
bool sortedOutput = false; // Sort output?
|
| 67 |
+
|
| 68 |
+
LossyCountersVector lossyCounters;
|
| 69 |
+
|
| 70 |
+
#ifdef GET_COUNTS_ONLY
|
| 71 |
+
std::vector<size_t> phrasePairsCounters;
|
| 72 |
+
#endif
|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
//////// Internal module variables /////////////////////////////////////////////
|
| 76 |
+
|
| 77 |
+
IndexedStringsStorage<word_index_t> strings;
|
| 78 |
+
IndexedStringsStorage<orientation_info_index_t> orientations;
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
//////// Untouched Philipp Koehn's code :) /////////////////////////////////////
|
| 82 |
+
|
| 83 |
+
REO_POS getOrientWordModel(SentenceAlignment & sentence, REO_MODEL_TYPE modelType,
|
| 84 |
+
bool connectedLeftTop, bool connectedRightTop,
|
| 85 |
+
int startF, int endF, int startE, int endE, int countF, int zero, int unit,
|
| 86 |
+
bool (*ge)(int, int), bool (*lt)(int, int) )
|
| 87 |
+
{
|
| 88 |
+
|
| 89 |
+
if( connectedLeftTop && !connectedRightTop)
|
| 90 |
+
return LEFT;
|
| 91 |
+
if(modelType == REO_MONO)
|
| 92 |
+
return UNKNOWN;
|
| 93 |
+
if (!connectedLeftTop && connectedRightTop)
|
| 94 |
+
return RIGHT;
|
| 95 |
+
if(modelType == REO_MSD)
|
| 96 |
+
return UNKNOWN;
|
| 97 |
+
for(int indexF=startF-2*unit; (*ge)(indexF, zero) && !connectedLeftTop; indexF=indexF-unit)
|
| 98 |
+
connectedLeftTop = isAligned(sentence, indexF, startE-unit);
|
| 99 |
+
for(int indexF=endF+2*unit; (*lt)(indexF,countF) && !connectedRightTop; indexF=indexF+unit)
|
| 100 |
+
connectedRightTop = isAligned(sentence, indexF, startE-unit);
|
| 101 |
+
if(connectedLeftTop && !connectedRightTop)
|
| 102 |
+
return DRIGHT;
|
| 103 |
+
else if(!connectedLeftTop && connectedRightTop)
|
| 104 |
+
return DLEFT;
|
| 105 |
+
return UNKNOWN;
|
| 106 |
+
}
|
| 107 |
+
|
| 108 |
+
// to be called with countF-1 instead of countF
|
| 109 |
+
REO_POS getOrientPhraseModel (SentenceAlignment & sentence, REO_MODEL_TYPE modelType,
|
| 110 |
+
bool connectedLeftTop, bool connectedRightTop,
|
| 111 |
+
int startF, int endF, int startE, int endE, int countF, int zero, int unit,
|
| 112 |
+
bool (*ge)(int, int), bool (*lt)(int, int),
|
| 113 |
+
const HSentenceVertices & inBottomRight, const HSentenceVertices & inBottomLeft)
|
| 114 |
+
{
|
| 115 |
+
|
| 116 |
+
HSentenceVertices::const_iterator it;
|
| 117 |
+
|
| 118 |
+
if((connectedLeftTop && !connectedRightTop) ||
|
| 119 |
+
//(startE == 0 && startF == 0) ||
|
| 120 |
+
//(startE == sentence.target.size()-1 && startF == sentence.source.size()-1) ||
|
| 121 |
+
((it = inBottomRight.find(startE - unit)) != inBottomRight.end() &&
|
| 122 |
+
it->second.find(startF-unit) != it->second.end()))
|
| 123 |
+
return LEFT;
|
| 124 |
+
if(modelType == REO_MONO)
|
| 125 |
+
return UNKNOWN;
|
| 126 |
+
if((!connectedLeftTop && connectedRightTop) ||
|
| 127 |
+
((it = inBottomLeft.find(startE - unit)) != inBottomLeft.end() && it->second.find(endF + unit) != it->second.end()))
|
| 128 |
+
return RIGHT;
|
| 129 |
+
if(modelType == REO_MSD)
|
| 130 |
+
return UNKNOWN;
|
| 131 |
+
connectedLeftTop = false;
|
| 132 |
+
for(int indexF=startF-2*unit; (*ge)(indexF, zero) && !connectedLeftTop; indexF=indexF-unit)
|
| 133 |
+
if(connectedLeftTop = (it = inBottomRight.find(startE - unit)) != inBottomRight.end() &&
|
| 134 |
+
it->second.find(indexF) != it->second.end())
|
| 135 |
+
return DRIGHT;
|
| 136 |
+
connectedRightTop = false;
|
| 137 |
+
for(int indexF=endF+2*unit; (*lt)(indexF, countF) && !connectedRightTop; indexF=indexF+unit)
|
| 138 |
+
if(connectedRightTop = (it = inBottomLeft.find(startE - unit)) != inBottomRight.end() &&
|
| 139 |
+
it->second.find(indexF) != it->second.end())
|
| 140 |
+
return DLEFT;
|
| 141 |
+
return UNKNOWN;
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
// to be called with countF-1 instead of countF
|
| 145 |
+
REO_POS getOrientHierModel (SentenceAlignment & sentence, REO_MODEL_TYPE modelType,
|
| 146 |
+
bool connectedLeftTop, bool connectedRightTop,
|
| 147 |
+
int startF, int endF, int startE, int endE, int countF, int zero, int unit,
|
| 148 |
+
bool (*ge)(int, int), bool (*lt)(int, int),
|
| 149 |
+
const HSentenceVertices & inBottomRight, const HSentenceVertices & inBottomLeft,
|
| 150 |
+
const HSentenceVertices & outBottomRight, const HSentenceVertices & outBottomLeft,
|
| 151 |
+
REO_POS phraseOrient)
|
| 152 |
+
{
|
| 153 |
+
|
| 154 |
+
HSentenceVertices::const_iterator it;
|
| 155 |
+
|
| 156 |
+
if(phraseOrient == LEFT ||
|
| 157 |
+
(connectedLeftTop && !connectedRightTop) ||
|
| 158 |
+
// (startE == 0 && startF == 0) ||
|
| 159 |
+
//(startE == sentence.target.size()-1 && startF == sentence.source.size()-1) ||
|
| 160 |
+
((it = inBottomRight.find(startE - unit)) != inBottomRight.end() &&
|
| 161 |
+
it->second.find(startF-unit) != it->second.end()) ||
|
| 162 |
+
((it = outBottomRight.find(startE - unit)) != outBottomRight.end() &&
|
| 163 |
+
it->second.find(startF-unit) != it->second.end()))
|
| 164 |
+
return LEFT;
|
| 165 |
+
if(modelType == REO_MONO)
|
| 166 |
+
return UNKNOWN;
|
| 167 |
+
if(phraseOrient == RIGHT ||
|
| 168 |
+
(!connectedLeftTop && connectedRightTop) ||
|
| 169 |
+
((it = inBottomLeft.find(startE - unit)) != inBottomLeft.end() &&
|
| 170 |
+
it->second.find(endF + unit) != it->second.end()) ||
|
| 171 |
+
((it = outBottomLeft.find(startE - unit)) != outBottomLeft.end() &&
|
| 172 |
+
it->second.find(endF + unit) != it->second.end()))
|
| 173 |
+
return RIGHT;
|
| 174 |
+
if(modelType == REO_MSD)
|
| 175 |
+
return UNKNOWN;
|
| 176 |
+
if(phraseOrient != UNKNOWN)
|
| 177 |
+
return phraseOrient;
|
| 178 |
+
connectedLeftTop = false;
|
| 179 |
+
for(int indexF=startF-2*unit; (*ge)(indexF, zero) && !connectedLeftTop; indexF=indexF-unit) {
|
| 180 |
+
if((connectedLeftTop = (it = inBottomRight.find(startE - unit)) != inBottomRight.end() &&
|
| 181 |
+
it->second.find(indexF) != it->second.end()) ||
|
| 182 |
+
(connectedLeftTop = (it = outBottomRight.find(startE - unit)) != outBottomRight.end() &&
|
| 183 |
+
it->second.find(indexF) != it->second.end()))
|
| 184 |
+
return DRIGHT;
|
| 185 |
+
}
|
| 186 |
+
connectedRightTop = false;
|
| 187 |
+
for(int indexF=endF+2*unit; (*lt)(indexF, countF) && !connectedRightTop; indexF=indexF+unit) {
|
| 188 |
+
if((connectedRightTop = (it = inBottomLeft.find(startE - unit)) != inBottomRight.end() &&
|
| 189 |
+
it->second.find(indexF) != it->second.end()) ||
|
| 190 |
+
(connectedRightTop = (it = outBottomLeft.find(startE - unit)) != outBottomRight.end() &&
|
| 191 |
+
it->second.find(indexF) != it->second.end()))
|
| 192 |
+
return DLEFT;
|
| 193 |
+
}
|
| 194 |
+
return UNKNOWN;
|
| 195 |
+
}
|
| 196 |
+
|
| 197 |
+
void insertVertex( HSentenceVertices & corners, int x, int y )
|
| 198 |
+
{
|
| 199 |
+
std::set<int> tmp;
|
| 200 |
+
tmp.insert(x);
|
| 201 |
+
std::pair< HSentenceVertices::iterator, bool > ret = corners.insert( std::pair<int, std::set<int> > (y, tmp) );
|
| 202 |
+
if(ret.second == false) {
|
| 203 |
+
ret.first->second.insert(x);
|
| 204 |
+
}
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
void insertPhraseVertices(
|
| 208 |
+
HSentenceVertices & topLeft,
|
| 209 |
+
HSentenceVertices & topRight,
|
| 210 |
+
HSentenceVertices & bottomLeft,
|
| 211 |
+
HSentenceVertices & bottomRight,
|
| 212 |
+
int startF, int startE, int endF, int endE)
|
| 213 |
+
{
|
| 214 |
+
|
| 215 |
+
insertVertex(topLeft, startF, startE);
|
| 216 |
+
insertVertex(topRight, endF, startE);
|
| 217 |
+
insertVertex(bottomLeft, startF, endE);
|
| 218 |
+
insertVertex(bottomRight, endF, endE);
|
| 219 |
+
}
|
| 220 |
+
|
| 221 |
+
std::string getOrientString(REO_POS orient, REO_MODEL_TYPE modelType)
|
| 222 |
+
{
|
| 223 |
+
switch(orient) {
|
| 224 |
+
case LEFT:
|
| 225 |
+
return "mono";
|
| 226 |
+
break;
|
| 227 |
+
case RIGHT:
|
| 228 |
+
return "swap";
|
| 229 |
+
break;
|
| 230 |
+
case DRIGHT:
|
| 231 |
+
return "dright";
|
| 232 |
+
break;
|
| 233 |
+
case DLEFT:
|
| 234 |
+
return "dleft";
|
| 235 |
+
break;
|
| 236 |
+
case UNKNOWN:
|
| 237 |
+
switch(modelType) {
|
| 238 |
+
case REO_MONO:
|
| 239 |
+
return "nomono";
|
| 240 |
+
break;
|
| 241 |
+
case REO_MSD:
|
| 242 |
+
return "other";
|
| 243 |
+
break;
|
| 244 |
+
case REO_MSLR:
|
| 245 |
+
return "dright";
|
| 246 |
+
break;
|
| 247 |
+
}
|
| 248 |
+
break;
|
| 249 |
+
}
|
| 250 |
+
}
|
| 251 |
+
|
| 252 |
+
bool ge(int first, int second)
|
| 253 |
+
{
|
| 254 |
+
return first >= second;
|
| 255 |
+
}
|
| 256 |
+
|
| 257 |
+
bool le(int first, int second)
|
| 258 |
+
{
|
| 259 |
+
return first <= second;
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
bool lt(int first, int second)
|
| 263 |
+
{
|
| 264 |
+
return first < second;
|
| 265 |
+
}
|
| 266 |
+
|
| 267 |
+
bool isAligned ( SentenceAlignment &sentence, int fi, int ei )
|
| 268 |
+
{
|
| 269 |
+
if (ei == -1 && fi == -1)
|
| 270 |
+
return true;
|
| 271 |
+
if (ei <= -1 || fi <= -1)
|
| 272 |
+
return false;
|
| 273 |
+
if (ei == sentence.target.size() && fi == sentence.source.size())
|
| 274 |
+
return true;
|
| 275 |
+
if (ei >= sentence.target.size() || fi >= sentence.source.size())
|
| 276 |
+
return false;
|
| 277 |
+
for(int i=0; i<sentence.alignedToT[ei].size(); i++)
|
| 278 |
+
if (sentence.alignedToT[ei][i] == fi)
|
| 279 |
+
return true;
|
| 280 |
+
return false;
|
| 281 |
+
}
|
| 282 |
+
|
| 283 |
+
//////// END OF untouched Philipp Koehn's code :) //////////////////////////////
|
| 284 |
+
|
| 285 |
+
|
| 286 |
+
/////// Slightly modified Philipp Koehn's code :) //////////////////////////////
|
| 287 |
+
|
| 288 |
+
void extract(SentenceAlignment &sentence) {
|
| 289 |
+
|
| 290 |
+
int countE = sentence.target.size();
|
| 291 |
+
int countF = sentence.source.size();
|
| 292 |
+
|
| 293 |
+
HPhraseVector inboundPhrases;
|
| 294 |
+
|
| 295 |
+
HSentenceVertices inTopLeft;
|
| 296 |
+
HSentenceVertices inTopRight;
|
| 297 |
+
HSentenceVertices inBottomLeft;
|
| 298 |
+
HSentenceVertices inBottomRight;
|
| 299 |
+
|
| 300 |
+
HSentenceVertices outTopLeft;
|
| 301 |
+
HSentenceVertices outTopRight;
|
| 302 |
+
HSentenceVertices outBottomLeft;
|
| 303 |
+
HSentenceVertices outBottomRight;
|
| 304 |
+
|
| 305 |
+
HSentenceVertices::const_iterator it;
|
| 306 |
+
|
| 307 |
+
bool relaxLimit = hierModel;
|
| 308 |
+
bool buildExtraStructure = phraseModel || hierModel;
|
| 309 |
+
|
| 310 |
+
// check alignments for target phrase startE...endE
|
| 311 |
+
// loop over extracted phrases which are compatible with the word-alignments
|
| 312 |
+
for (int startE = 0; startE < countE; startE++) {
|
| 313 |
+
for (
|
| 314 |
+
int endE = startE;
|
| 315 |
+
((endE < countE) && (relaxLimit || (endE < (startE + maxPhraseLength))));
|
| 316 |
+
endE++
|
| 317 |
+
) {
|
| 318 |
+
|
| 319 |
+
int minF = 9999;
|
| 320 |
+
int maxF = -1;
|
| 321 |
+
std::vector< int > usedF = sentence.alignedCountS;
|
| 322 |
+
|
| 323 |
+
for (int ei = startE; ei <= endE; ei++) {
|
| 324 |
+
for (int i = 0; i < sentence.alignedToT[ei].size(); i++) {
|
| 325 |
+
int fi = sentence.alignedToT[ei][i];
|
| 326 |
+
if (fi < minF) {
|
| 327 |
+
minF = fi;
|
| 328 |
+
}
|
| 329 |
+
if (fi > maxF) {
|
| 330 |
+
maxF = fi;
|
| 331 |
+
}
|
| 332 |
+
usedF[ fi ]--;
|
| 333 |
+
}
|
| 334 |
+
}
|
| 335 |
+
|
| 336 |
+
if (maxF >= 0 && // aligned to any source words at all
|
| 337 |
+
(relaxLimit || maxF-minF < maxPhraseLength)) { // source phrase within limits
|
| 338 |
+
|
| 339 |
+
// check if source words are aligned to out of bound target words
|
| 340 |
+
bool out_of_bounds = false;
|
| 341 |
+
|
| 342 |
+
for (int fi=minF; fi<=maxF && !out_of_bounds; fi++) {
|
| 343 |
+
if (usedF[fi]>0) {
|
| 344 |
+
// cout << "ouf of bounds: " << fi << "\n";
|
| 345 |
+
out_of_bounds = true;
|
| 346 |
+
}
|
| 347 |
+
}
|
| 348 |
+
|
| 349 |
+
// cout << "doing if for ( " << minF << "-" << maxF << ", " << startE << "," << endE << ")\n";
|
| 350 |
+
if (!out_of_bounds) {
|
| 351 |
+
// start point of source phrase may retreat over unaligned
|
| 352 |
+
for (int startF=minF;
|
| 353 |
+
(startF>=0 &&
|
| 354 |
+
(relaxLimit || startF>maxF-maxPhraseLength) && // within length limit
|
| 355 |
+
(startF==minF || sentence.alignedCountS[startF]==0)); // unaligned
|
| 356 |
+
startF--
|
| 357 |
+
)
|
| 358 |
+
// end point of source phrase may advance over unaligned
|
| 359 |
+
for (int endF=maxF;
|
| 360 |
+
(endF<countF &&
|
| 361 |
+
(relaxLimit || endF<startF+maxPhraseLength) && // within length limit
|
| 362 |
+
(endF==maxF || sentence.alignedCountS[endF]==0)); // unaligned
|
| 363 |
+
endF++
|
| 364 |
+
) { // at this point we have extracted a phrase
|
| 365 |
+
if (buildExtraStructure) { // phrase || hier
|
| 366 |
+
if (endE-startE < maxPhraseLength && endF-startF < maxPhraseLength) { // within limit
|
| 367 |
+
inboundPhrases.push_back(
|
| 368 |
+
HPhrase(HPhraseVertex(startF,startE), HPhraseVertex(endF,endE))
|
| 369 |
+
);
|
| 370 |
+
insertPhraseVertices(
|
| 371 |
+
inTopLeft, inTopRight, inBottomLeft, inBottomRight,
|
| 372 |
+
startF, startE, endF, endE
|
| 373 |
+
);
|
| 374 |
+
} else {
|
| 375 |
+
insertPhraseVertices(
|
| 376 |
+
outTopLeft, outTopRight, outBottomLeft, outBottomRight,
|
| 377 |
+
startF, startE, endF, endE
|
| 378 |
+
);
|
| 379 |
+
}
|
| 380 |
+
} else {
|
| 381 |
+
std::string orientationInfo = "";
|
| 382 |
+
if (orientationFlag && wordModel) { // Added orientationFlag check.
|
| 383 |
+
REO_POS wordPrevOrient, wordNextOrient;
|
| 384 |
+
bool connectedLeftTopP = isAligned( sentence, startF-1, startE-1 );
|
| 385 |
+
bool connectedRightTopP = isAligned( sentence, endF+1, startE-1 );
|
| 386 |
+
bool connectedLeftTopN = isAligned( sentence, endF+1, endE+1 );
|
| 387 |
+
bool connectedRightTopN = isAligned( sentence, startF-1, endE+1 );
|
| 388 |
+
wordPrevOrient = getOrientWordModel(sentence, wordType, connectedLeftTopP, connectedRightTopP, startF, endF, startE, endE, countF, 0, 1, &ge, <);
|
| 389 |
+
wordNextOrient = getOrientWordModel(sentence, wordType, connectedLeftTopN, connectedRightTopN, endF, startF, endE, startE, 0, countF, -1, <, &ge);
|
| 390 |
+
orientationInfo += getOrientString(wordPrevOrient, wordType) + " " + getOrientString(wordNextOrient, wordType);
|
| 391 |
+
}
|
| 392 |
+
addPhrase(sentence, startE, endE, startF, endF, orientationInfo);
|
| 393 |
+
}
|
| 394 |
+
}
|
| 395 |
+
}
|
| 396 |
+
}
|
| 397 |
+
}
|
| 398 |
+
} // end of main for loop
|
| 399 |
+
|
| 400 |
+
if (buildExtraStructure) { // phrase || hier
|
| 401 |
+
std::string orientationInfo = "";
|
| 402 |
+
REO_POS wordPrevOrient, wordNextOrient, phrasePrevOrient, phraseNextOrient, hierPrevOrient, hierNextOrient;
|
| 403 |
+
|
| 404 |
+
for (int i = 0; i < inboundPhrases.size(); i++) {
|
| 405 |
+
int startF = inboundPhrases[i].first.first;
|
| 406 |
+
int startE = inboundPhrases[i].first.second;
|
| 407 |
+
int endF = inboundPhrases[i].second.first;
|
| 408 |
+
int endE = inboundPhrases[i].second.second;
|
| 409 |
+
|
| 410 |
+
if ( orientationFlag ) { // Added orientationFlag check.
|
| 411 |
+
|
| 412 |
+
bool connectedLeftTopP = isAligned( sentence, startF-1, startE-1 );
|
| 413 |
+
bool connectedRightTopP = isAligned( sentence, endF+1, startE-1 );
|
| 414 |
+
bool connectedLeftTopN = isAligned( sentence, endF+1, endE+1 );
|
| 415 |
+
bool connectedRightTopN = isAligned( sentence, startF-1, endE+1 );
|
| 416 |
+
|
| 417 |
+
if (wordModel) {
|
| 418 |
+
wordPrevOrient = getOrientWordModel(sentence, wordType,
|
| 419 |
+
connectedLeftTopP, connectedRightTopP,
|
| 420 |
+
startF, endF, startE, endE, countF, 0, 1,
|
| 421 |
+
&ge, <);
|
| 422 |
+
|
| 423 |
+
wordNextOrient = getOrientWordModel(sentence, wordType,
|
| 424 |
+
connectedLeftTopN, connectedRightTopN,
|
| 425 |
+
endF, startF, endE, startE, 0, countF, -1,
|
| 426 |
+
<, &ge);
|
| 427 |
+
}
|
| 428 |
+
if (phraseModel) {
|
| 429 |
+
phrasePrevOrient = getOrientPhraseModel(sentence, phraseType,
|
| 430 |
+
connectedLeftTopP, connectedRightTopP,
|
| 431 |
+
startF, endF, startE, endE, countF-1, 0, 1, &ge, <, inBottomRight, inBottomLeft);
|
| 432 |
+
phraseNextOrient = getOrientPhraseModel(sentence, phraseType,
|
| 433 |
+
connectedLeftTopN, connectedRightTopN,
|
| 434 |
+
endF, startF, endE, startE, 0, countF-1, -1, <, &ge, inBottomLeft, inBottomRight);
|
| 435 |
+
} else {
|
| 436 |
+
phrasePrevOrient = phraseNextOrient = UNKNOWN;
|
| 437 |
+
}
|
| 438 |
+
if(hierModel) {
|
| 439 |
+
hierPrevOrient = getOrientHierModel(sentence, hierType,
|
| 440 |
+
connectedLeftTopP, connectedRightTopP,
|
| 441 |
+
startF, endF, startE, endE, countF-1, 0, 1, &ge, <, inBottomRight, inBottomLeft, outBottomRight, outBottomLeft, phrasePrevOrient);
|
| 442 |
+
hierNextOrient = getOrientHierModel(sentence, hierType,
|
| 443 |
+
connectedLeftTopN, connectedRightTopN,
|
| 444 |
+
endF, startF, endE, startE, 0, countF-1, -1, <, &ge, inBottomLeft, inBottomRight, outBottomLeft, outBottomRight, phraseNextOrient);
|
| 445 |
+
}
|
| 446 |
+
|
| 447 |
+
orientationInfo = ((wordModel)? getOrientString(wordPrevOrient, wordType) + " " + getOrientString(wordNextOrient, wordType) : "") + " | " +
|
| 448 |
+
((phraseModel)? getOrientString(phrasePrevOrient, phraseType) + " " + getOrientString(phraseNextOrient, phraseType) : "") + " | " +
|
| 449 |
+
((hierModel)? getOrientString(hierPrevOrient, hierType) + " " + getOrientString(hierNextOrient, hierType) : "");
|
| 450 |
+
}
|
| 451 |
+
|
| 452 |
+
addPhrase(sentence, startE, endE, startF, endF, orientationInfo);
|
| 453 |
+
|
| 454 |
+
} // end of for loop through inbound phrases
|
| 455 |
+
|
| 456 |
+
} // end if buildExtraStructure
|
| 457 |
+
|
| 458 |
+
} // end of extract()
|
| 459 |
+
|
| 460 |
+
|
| 461 |
+
/**
|
| 462 |
+
* @param sentence
|
| 463 |
+
* @param startE
|
| 464 |
+
* @param endE
|
| 465 |
+
* @param startF
|
| 466 |
+
* @param endF
|
| 467 |
+
* @param orientationInfo
|
| 468 |
+
*/
|
| 469 |
+
void addPhrase(SentenceAlignment &sentence, int startE, int endE, int startF, int endF, std::string &orientationInfo) {
|
| 470 |
+
|
| 471 |
+
#ifdef GET_COUNTS_ONLY
|
| 472 |
+
// Just get the length of phrase pair (which is now defined as maximum of the two).
|
| 473 |
+
phrasePairsCounters[std::max(endF - startF, endE - startE) + 1] += 1; // Don't forget +1 (span is inclusive)!
|
| 474 |
+
#else
|
| 475 |
+
alignment_t alignment;
|
| 476 |
+
|
| 477 |
+
// alignment
|
| 478 |
+
for (int ei = startE; ei <= endE; ++ei) {
|
| 479 |
+
for (int i = 0; i < sentence.alignedToT[ei].size(); ++i) {
|
| 480 |
+
int fi = sentence.alignedToT[ei][i];
|
| 481 |
+
alignment.push_back(alignment_t::value_type(fi-startF, ei-startE));
|
| 482 |
+
}
|
| 483 |
+
}
|
| 484 |
+
|
| 485 |
+
indexed_phrases_pair_t::phrase_t srcPhraseIndices, tgtPhraseIndices;
|
| 486 |
+
|
| 487 |
+
// source phrase
|
| 488 |
+
for (int fi = startF; fi <= endF; ++fi) {
|
| 489 |
+
srcPhraseIndices.push_back(strings.put(sentence.source[fi].c_str()));
|
| 490 |
+
}
|
| 491 |
+
|
| 492 |
+
// target phrase
|
| 493 |
+
for (int ei = startE; ei <= endE; ++ei) {
|
| 494 |
+
tgtPhraseIndices.push_back(strings.put(sentence.target[ei].c_str()));
|
| 495 |
+
}
|
| 496 |
+
|
| 497 |
+
// TODO: Allow for switching between min and max here.
|
| 498 |
+
size_t idx = std::max(srcPhraseIndices.size(), tgtPhraseIndices.size());
|
| 499 |
+
|
| 500 |
+
// Add phrase pair.
|
| 501 |
+
lossyCounters[idx]->lossyCounter.add(indexed_phrases_pair_t(srcPhraseIndices, tgtPhraseIndices, orientations.put(orientationInfo.c_str()), alignment));
|
| 502 |
+
//
|
| 503 |
+
if ( lossyCounters[idx]->lossyCounter.aboutToPrune() ) {
|
| 504 |
+
// Next addition will lead to pruning, inform:
|
| 505 |
+
std::cerr << 'P' << idx << std::flush;
|
| 506 |
+
}
|
| 507 |
+
#endif
|
| 508 |
+
} // end of addPhrase()
|
| 509 |
+
|
| 510 |
+
|
| 511 |
+
/////// Lossy Counting related code ////////////////////////////////////////////
|
| 512 |
+
|
| 513 |
+
void readInput(std::istream& eFile, std::istream& fFile, std::istream& aFile) {
|
| 514 |
+
|
| 515 |
+
// Note: moved out of the loop.
|
| 516 |
+
char englishString[LINE_MAX_LENGTH];
|
| 517 |
+
char foreignString[LINE_MAX_LENGTH];
|
| 518 |
+
char alignmentString[LINE_MAX_LENGTH];
|
| 519 |
+
|
| 520 |
+
int i = 0;
|
| 521 |
+
|
| 522 |
+
while(true) {
|
| 523 |
+
// Report progress?
|
| 524 |
+
if (++i%10000 == 0) std::cerr << "." << std::flush;
|
| 525 |
+
|
| 526 |
+
SAFE_GETLINE(eFile, englishString, LINE_MAX_LENGTH, '\n', __FILE__);
|
| 527 |
+
if (eFile.eof()) break;
|
| 528 |
+
SAFE_GETLINE(fFile, foreignString, LINE_MAX_LENGTH, '\n', __FILE__);
|
| 529 |
+
SAFE_GETLINE(aFile, alignmentString, LINE_MAX_LENGTH, '\n', __FILE__);
|
| 530 |
+
|
| 531 |
+
SentenceAlignment sentence;
|
| 532 |
+
|
| 533 |
+
if (sentence.create(englishString, foreignString, alignmentString, i)) {
|
| 534 |
+
extract(sentence);
|
| 535 |
+
}
|
| 536 |
+
}
|
| 537 |
+
|
| 538 |
+
}
|
| 539 |
+
|
| 540 |
+
|
| 541 |
+
void processOutput(OutputProcessor& processor) {
|
| 542 |
+
if ( sortedOutput ) {
|
| 543 |
+
processSortedOutput(processor);
|
| 544 |
+
}
|
| 545 |
+
else {
|
| 546 |
+
processUnsortedOutput(processor);
|
| 547 |
+
}
|
| 548 |
+
}
|
| 549 |
+
|
| 550 |
+
|
| 551 |
+
bool PhraseComp::operator()(const output_pair_t& a, const output_pair_t& b) {
|
| 552 |
+
|
| 553 |
+
int cmp = _inverted ? comparePhrases(a.first.tgtPhrase(), b.first.tgtPhrase()) : comparePhrases(a.first.srcPhrase(), b.first.srcPhrase());
|
| 554 |
+
|
| 555 |
+
if ( cmp == 0 ) {
|
| 556 |
+
// First part of pairs matches, compare the second part.
|
| 557 |
+
cmp = _inverted ? comparePhrases(a.first.srcPhrase(), b.first.srcPhrase()) : comparePhrases(a.first.tgtPhrase(), b.first.tgtPhrase());
|
| 558 |
+
|
| 559 |
+
if ( cmp == 0 ) {
|
| 560 |
+
// Also second part matches, compare alignments.
|
| 561 |
+
return compareAlignments(a.first, b.first);
|
| 562 |
+
}
|
| 563 |
+
else {
|
| 564 |
+
return cmp < 0;
|
| 565 |
+
}
|
| 566 |
+
}
|
| 567 |
+
else {
|
| 568 |
+
return cmp < 0;
|
| 569 |
+
}
|
| 570 |
+
|
| 571 |
+
}
|
| 572 |
+
|
| 573 |
+
|
| 574 |
+
bool PhraseComp::compareAlignments(const indexed_phrases_pair_t& a, const indexed_phrases_pair_t& b) {
|
| 575 |
+
|
| 576 |
+
size_t aSize = a.alignmentLength();
|
| 577 |
+
size_t bSize = b.alignmentLength();
|
| 578 |
+
size_t min = std::min(aSize, bSize);
|
| 579 |
+
const indexed_phrases_pair_t::alignment_point_t * aAlignment = a.alignmentData();
|
| 580 |
+
const indexed_phrases_pair_t::alignment_point_t * bAlignment = b.alignmentData();
|
| 581 |
+
|
| 582 |
+
int cmp = 0;
|
| 583 |
+
for ( size_t i = 0; i < min; ++i ) {
|
| 584 |
+
// Important: alignments have to be eventually inverted as well!
|
| 585 |
+
if ( _inverted ) {
|
| 586 |
+
// Inverted = compare TGT phrase alignment points first.
|
| 587 |
+
cmp = memcmp(aAlignment + i*2 + 1, bAlignment + i*2 + 1, sizeof(indexed_phrases_pair_t::alignment_point_t));
|
| 588 |
+
}
|
| 589 |
+
else{
|
| 590 |
+
// NOT inverted = compare SRC phrase alignment points first.
|
| 591 |
+
cmp = memcmp(aAlignment+ i*2, bAlignment + i*2, sizeof(indexed_phrases_pair_t::alignment_point_t));
|
| 592 |
+
}
|
| 593 |
+
if ( cmp == 0 ) {
|
| 594 |
+
if ( _inverted ) {
|
| 595 |
+
// Inverted = compare SRC phrase alignment points second.
|
| 596 |
+
cmp = memcmp(aAlignment + i*2, bAlignment + i*2, sizeof(indexed_phrases_pair_t::alignment_point_t));
|
| 597 |
+
}
|
| 598 |
+
else{
|
| 599 |
+
// NOT inverted = compare TGT phrase alignment points second.
|
| 600 |
+
cmp = memcmp(aAlignment + i*2 + 1, bAlignment + i*2 + 1, sizeof(indexed_phrases_pair_t::alignment_point_t));
|
| 601 |
+
}
|
| 602 |
+
if ( cmp != 0 ) {
|
| 603 |
+
return cmp < 0;
|
| 604 |
+
} // Otherwise continue looping.
|
| 605 |
+
}
|
| 606 |
+
else {
|
| 607 |
+
return cmp < 0;
|
| 608 |
+
}
|
| 609 |
+
}
|
| 610 |
+
|
| 611 |
+
// Note: LC_ALL=C GNU sort treats shorter item as lesser than longer one.
|
| 612 |
+
return (cmp == 0) ? (aSize < bSize) : (cmp < 0);
|
| 613 |
+
|
| 614 |
+
}
|
| 615 |
+
|
| 616 |
+
|
| 617 |
+
int PhraseComp::comparePhrases(const indexed_phrases_pair_t::phrase_t& a, const indexed_phrases_pair_t::phrase_t& b) {
|
| 618 |
+
|
| 619 |
+
size_t aSize = a.size();
|
| 620 |
+
size_t bSize = b.size();
|
| 621 |
+
size_t min = std::min(aSize, bSize);
|
| 622 |
+
int cmp = 0;
|
| 623 |
+
|
| 624 |
+
for ( size_t i = 0; i < min; ++i ) {
|
| 625 |
+
cmp = strcmp(strings.get(a[i]), strings.get(b[i]));
|
| 626 |
+
if ( cmp != 0 ) {
|
| 627 |
+
return cmp;
|
| 628 |
+
}
|
| 629 |
+
}
|
| 630 |
+
|
| 631 |
+
if ( aSize == bSize ) {
|
| 632 |
+
return 0;
|
| 633 |
+
}
|
| 634 |
+
|
| 635 |
+
if ( aSize < bSize ) {
|
| 636 |
+
return strcmp("|||", strings.get(b[min]));
|
| 637 |
+
}
|
| 638 |
+
else {
|
| 639 |
+
return strcmp(strings.get(a[min]), "|||");
|
| 640 |
+
}
|
| 641 |
+
|
| 642 |
+
}
|
| 643 |
+
|
| 644 |
+
|
| 645 |
+
void processSortedOutput(OutputProcessor& processor) {
|
| 646 |
+
|
| 647 |
+
output_vector_t output;
|
| 648 |
+
|
| 649 |
+
LossyCountersVector::value_type current = NULL, prev = NULL;
|
| 650 |
+
|
| 651 |
+
for ( size_t i = 1; i < lossyCounters.size(); ++i ) { // Intentionally skip 0.
|
| 652 |
+
current = lossyCounters[i];
|
| 653 |
+
if ( current != prev ) {
|
| 654 |
+
PhrasePairsLossyCounter& lossyCounter = current->lossyCounter;
|
| 655 |
+
for ( PhrasePairsLossyCounter::erasing_iterator phraseIter = lossyCounter.beginErase(); phraseIter != lossyCounter.endErase(); ++phraseIter ) {
|
| 656 |
+
// Store and...
|
| 657 |
+
output.push_back(std::make_pair(phraseIter.item(), phraseIter.frequency()));
|
| 658 |
+
// ...update counters.
|
| 659 |
+
current->outputMass += phraseIter.frequency();
|
| 660 |
+
current->outputSize += 1;
|
| 661 |
+
}
|
| 662 |
+
//
|
| 663 |
+
prev = current;
|
| 664 |
+
//delete current;
|
| 665 |
+
}
|
| 666 |
+
}
|
| 667 |
+
|
| 668 |
+
// Sort by source phrase.
|
| 669 |
+
std::sort(output.begin(), output.end(), PhraseComp(false));
|
| 670 |
+
|
| 671 |
+
// Print.
|
| 672 |
+
for ( output_vector_t::const_iterator iter = output.begin(); iter != output.end(); ++iter ) {
|
| 673 |
+
flushPhrasePair(processor, iter->first, iter->second, 1);
|
| 674 |
+
}
|
| 675 |
+
|
| 676 |
+
// Sort by target phrase.
|
| 677 |
+
std::sort(output.begin(), output.end(), PhraseComp(true));
|
| 678 |
+
|
| 679 |
+
// Print.
|
| 680 |
+
for ( output_vector_t::const_iterator iter = output.begin(); iter != output.end(); ++iter ) {
|
| 681 |
+
flushPhrasePair(processor, iter->first, iter->second, -1);
|
| 682 |
+
}
|
| 683 |
+
|
| 684 |
+
}
|
| 685 |
+
|
| 686 |
+
|
| 687 |
+
void processUnsortedOutput(OutputProcessor& processor) {
|
| 688 |
+
|
| 689 |
+
LossyCountersVector::value_type current = NULL, prev = NULL;
|
| 690 |
+
|
| 691 |
+
for ( size_t i = 1; i < lossyCounters.size(); ++i ) { // Intentionally skip 0.
|
| 692 |
+
|
| 693 |
+
current = lossyCounters[i];
|
| 694 |
+
|
| 695 |
+
if ( current != prev ) {
|
| 696 |
+
|
| 697 |
+
const PhrasePairsLossyCounter& lossyCounter = current->lossyCounter;
|
| 698 |
+
|
| 699 |
+
for ( PhrasePairsLossyCounter::const_iterator phraseIter = lossyCounter.begin(); phraseIter != lossyCounter.end(); ++phraseIter ) {
|
| 700 |
+
// Flush and...
|
| 701 |
+
flushPhrasePair(processor, phraseIter.item(), phraseIter.frequency(), 0);
|
| 702 |
+
// ...update counters.
|
| 703 |
+
current->outputMass += phraseIter.frequency();
|
| 704 |
+
current->outputSize += 1;
|
| 705 |
+
}
|
| 706 |
+
|
| 707 |
+
//
|
| 708 |
+
prev = current;
|
| 709 |
+
}
|
| 710 |
+
}
|
| 711 |
+
|
| 712 |
+
}
|
| 713 |
+
|
| 714 |
+
|
| 715 |
+
void flushPhrasePair(OutputProcessor& processor, const indexed_phrases_pair_t& indexedPhrasePair, PhrasePairsLossyCounter::frequency_t frequency, int mode = 0) {
|
| 716 |
+
|
| 717 |
+
const indexed_phrases_pair_t::phrase_t srcPhraseIndices = indexedPhrasePair.srcPhrase();
|
| 718 |
+
const indexed_phrases_pair_t::phrase_t tgtPhraseIndices = indexedPhrasePair.tgtPhrase();
|
| 719 |
+
|
| 720 |
+
std::string srcPhrase, tgtPhrase;
|
| 721 |
+
|
| 722 |
+
for ( indexed_phrases_pair_t::phrase_t::const_iterator indexIter = srcPhraseIndices.begin(); indexIter != srcPhraseIndices.end(); ++indexIter ) {
|
| 723 |
+
srcPhrase += std::string(strings.get(*indexIter)) + " ";
|
| 724 |
+
}
|
| 725 |
+
srcPhrase.resize(srcPhrase.size() - 1); // Trim the trailing " "
|
| 726 |
+
|
| 727 |
+
for ( indexed_phrases_pair_t::phrase_t::const_iterator indexIter = tgtPhraseIndices.begin(); indexIter != tgtPhraseIndices.end(); ++indexIter ) {
|
| 728 |
+
tgtPhrase += std::string(strings.get(*indexIter)) + " ";
|
| 729 |
+
}
|
| 730 |
+
tgtPhrase.resize(tgtPhrase.size() - 1); // Trim the trailing " "
|
| 731 |
+
|
| 732 |
+
// Actual processing is done via call to functor:
|
| 733 |
+
processor(srcPhrase, tgtPhrase, orientations.get(indexedPhrasePair.orientationInfo()), indexedPhrasePair.alignment(), frequency, mode);
|
| 734 |
+
}
|
| 735 |
+
|
| 736 |
+
|
| 737 |
+
void printStats(void) {
|
| 738 |
+
|
| 739 |
+
// Total counters.
|
| 740 |
+
size_t outputMass = 0, outputSize = 0, N = 0;
|
| 741 |
+
|
| 742 |
+
const std::string hline = "####################################################################################################################";
|
| 743 |
+
|
| 744 |
+
std::cerr << "Lossy Counting Phrase Extraction statistics:" << std::endl;
|
| 745 |
+
|
| 746 |
+
// Print header: | 3 | 15 | 15 | 15 | 7 | 10 | 10 | 10 |
|
| 747 |
+
std::cerr
|
| 748 |
+
<< hline << std::endl
|
| 749 |
+
<< "# length # unique out # total out # total in (N) # out/in (%) # pos. thr. # neg. thr. # max. err. #" << std::endl
|
| 750 |
+
<< hline << std::endl;
|
| 751 |
+
|
| 752 |
+
LossyCountersVector::value_type current = NULL, prev = NULL;
|
| 753 |
+
size_t from = 1, to = 1;
|
| 754 |
+
|
| 755 |
+
for ( size_t i = 1; i <= lossyCounters.size(); ++i ) { // Intentionally skip 0, intentionally increment till == size().
|
| 756 |
+
|
| 757 |
+
current = (i < lossyCounters.size()) ? lossyCounters[i] : NULL;
|
| 758 |
+
|
| 759 |
+
if ( (current == NULL) || ((current != prev) && (prev != NULL)) ) {
|
| 760 |
+
// Time to print.
|
| 761 |
+
to = i-1;
|
| 762 |
+
|
| 763 |
+
// Increment overall stats.
|
| 764 |
+
outputMass += prev->outputMass;
|
| 765 |
+
outputSize += prev->outputSize;
|
| 766 |
+
N += prev->lossyCounter.count();
|
| 767 |
+
|
| 768 |
+
// Print.
|
| 769 |
+
if ( from == to ) {
|
| 770 |
+
std::cerr << "# " << std::setw(6) << to << " # ";
|
| 771 |
+
}
|
| 772 |
+
else {
|
| 773 |
+
std::stringstream strStr;
|
| 774 |
+
strStr << from << "-" << to;
|
| 775 |
+
std::cerr << "# " << std::setw(6) << strStr.str() << " # ";
|
| 776 |
+
}
|
| 777 |
+
// Print the rest of record.
|
| 778 |
+
std::cerr
|
| 779 |
+
<< std::setw(15) << prev->outputSize << " # "
|
| 780 |
+
<< std::setw(15) << prev->outputMass << " # "
|
| 781 |
+
<< std::setw(15) << prev->lossyCounter.count() << " # "
|
| 782 |
+
<< std::setw(10) << std::setprecision(4) << (static_cast<double>(prev->outputMass) / static_cast<double>(prev->lossyCounter.count())) * 100 << " # "
|
| 783 |
+
<< std::setw(10) << prev->lossyCounter.threshold(true) << " # "
|
| 784 |
+
<< std::setw(10) << prev->lossyCounter.threshold() << " # "
|
| 785 |
+
<< std::setw(10) << prev->lossyCounter.maxError() << " #"
|
| 786 |
+
<< std::endl << hline << std::endl;
|
| 787 |
+
|
| 788 |
+
from = i;
|
| 789 |
+
}
|
| 790 |
+
|
| 791 |
+
prev = current;
|
| 792 |
+
|
| 793 |
+
}
|
| 794 |
+
|
| 795 |
+
// Print summary:
|
| 796 |
+
std::cerr
|
| 797 |
+
<< "# TOTAL # "
|
| 798 |
+
<< std::setw(15) << outputSize << " # "
|
| 799 |
+
<< std::setw(15) << outputMass << " # "
|
| 800 |
+
<< std::setw(15) << N << " # "
|
| 801 |
+
<< std::setw(10) << std::setprecision(4) << (static_cast<double>(outputMass) / static_cast<double>(N)) * 100 << " #"
|
| 802 |
+
<< std::endl
|
| 803 |
+
<< "#############################################################################" << std::endl;
|
| 804 |
+
|
| 805 |
+
}
|
mosesdecoder/contrib/eppex/phrase-extract.h
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* Common lossy counting phrase extraction functionality declaration.
|
| 3 |
+
*
|
| 4 |
+
* Note: The bulk of this unit is based on Philipp Koehn's code from
|
| 5 |
+
* phrase-extract/extract.cpp.
|
| 6 |
+
*
|
| 7 |
+
* (C) Moses: http://www.statmt.org/moses/
|
| 8 |
+
* (C) Ceslav Przywara, UFAL MFF UK, 2011
|
| 9 |
+
*
|
| 10 |
+
* $Id$
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
#ifndef PHRASE_EXTRACT_H
|
| 14 |
+
#define PHRASE_EXTRACT_H
|
| 15 |
+
|
| 16 |
+
#include <fstream>
|
| 17 |
+
#include <map>
|
| 18 |
+
#include <set>
|
| 19 |
+
#include <string>
|
| 20 |
+
#include <vector>
|
| 21 |
+
|
| 22 |
+
#include "../phrase-extract/SentenceAlignment.h"
|
| 23 |
+
|
| 24 |
+
#include "typedefs.h"
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
//////// Types definitions /////////////////////////////////////////////////////
|
| 28 |
+
|
| 29 |
+
// HPhraseVertex represents a point in the alignment matrix
|
| 30 |
+
typedef std::pair<int, int> HPhraseVertex;
|
| 31 |
+
|
| 32 |
+
// Phrase represents a bi-phrase; each bi-phrase is defined by two points in the alignment matrix:
|
| 33 |
+
// bottom-left and top-right
|
| 34 |
+
typedef std::pair<HPhraseVertex, HPhraseVertex> HPhrase;
|
| 35 |
+
|
| 36 |
+
// HPhraseVector is a vector of HPhrases
|
| 37 |
+
typedef std::vector<HPhrase> HPhraseVector;
|
| 38 |
+
|
| 39 |
+
// SentenceVertices represents, from all extracted phrases, all vertices that have the same positioning
|
| 40 |
+
// The key of the map is the English index and the value is a set of the source ones
|
| 41 |
+
typedef std::map<int, std::set<int> > HSentenceVertices;
|
| 42 |
+
|
| 43 |
+
//
|
| 44 |
+
typedef std::pair<PhrasePairsLossyCounter::error_t, PhrasePairsLossyCounter::support_t> params_pair_t;
|
| 45 |
+
//
|
| 46 |
+
typedef std::vector<PhrasePairsLossyCounter *> PhrasePairsLossyCountersVector;
|
| 47 |
+
|
| 48 |
+
// MSD - monotone, swap, discontinuous.
|
| 49 |
+
enum REO_MODEL_TYPE {REO_MSD, REO_MSLR, REO_MONO};
|
| 50 |
+
enum REO_POS {LEFT, RIGHT, DLEFT, DRIGHT, UNKNOWN};
|
| 51 |
+
|
| 52 |
+
struct LossyCounterInstance {
|
| 53 |
+
// Statistics not provided by the lossy counter must be computed during
|
| 54 |
+
// phrases flushing (ie. when input processing is done):
|
| 55 |
+
size_t outputMass; // unique * freq
|
| 56 |
+
size_t outputSize; // unique
|
| 57 |
+
//
|
| 58 |
+
PhrasePairsLossyCounter lossyCounter;
|
| 59 |
+
|
| 60 |
+
LossyCounterInstance(PhrasePairsLossyCounter::error_t error, PhrasePairsLossyCounter::support_t support): outputMass(0), outputSize(0), lossyCounter(error, support) {}
|
| 61 |
+
};
|
| 62 |
+
|
| 63 |
+
//
|
| 64 |
+
typedef std::vector<LossyCounterInstance *> LossyCountersVector;
|
| 65 |
+
|
| 66 |
+
struct OutputProcessor {
|
| 67 |
+
virtual void operator() (const std::string& srcPhrase, const std::string& tgtPhrase, const std::string& orientationInfo, const alignment_t& alignment, const size_t frequency, int mode) = 0;
|
| 68 |
+
};
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
//////// Functions declarations ////////////////////////////////////////////////
|
| 72 |
+
|
| 73 |
+
//// Untouched ////
|
| 74 |
+
REO_POS getOrientWordModel(SentenceAlignment &, REO_MODEL_TYPE, bool, bool,
|
| 75 |
+
int, int, int, int, int, int, int,
|
| 76 |
+
bool (*)(int, int), bool (*)(int, int));
|
| 77 |
+
|
| 78 |
+
REO_POS getOrientPhraseModel(SentenceAlignment &, REO_MODEL_TYPE, bool, bool,
|
| 79 |
+
int, int, int, int, int, int, int,
|
| 80 |
+
bool (*)(int, int), bool (*)(int, int),
|
| 81 |
+
const HSentenceVertices &, const HSentenceVertices &);
|
| 82 |
+
|
| 83 |
+
REO_POS getOrientHierModel(SentenceAlignment &, REO_MODEL_TYPE, bool, bool,
|
| 84 |
+
int, int, int, int, int, int, int,
|
| 85 |
+
bool (*)(int, int), bool (*)(int, int),
|
| 86 |
+
const HSentenceVertices &, const HSentenceVertices &,
|
| 87 |
+
const HSentenceVertices &, const HSentenceVertices &,
|
| 88 |
+
REO_POS);
|
| 89 |
+
|
| 90 |
+
void insertVertex(HSentenceVertices &, int, int);
|
| 91 |
+
void insertPhraseVertices(HSentenceVertices &, HSentenceVertices &, HSentenceVertices &, HSentenceVertices &, int, int, int, int);
|
| 92 |
+
|
| 93 |
+
std::string getOrientString(REO_POS, REO_MODEL_TYPE);
|
| 94 |
+
|
| 95 |
+
bool ge(int, int);
|
| 96 |
+
bool le(int, int);
|
| 97 |
+
bool lt(int, int);
|
| 98 |
+
bool isAligned (SentenceAlignment &, int, int);
|
| 99 |
+
void extract(SentenceAlignment &);
|
| 100 |
+
|
| 101 |
+
//// Modified ////
|
| 102 |
+
void addPhrase(SentenceAlignment &, int, int, int, int, std::string &);
|
| 103 |
+
|
| 104 |
+
//// Added ////
|
| 105 |
+
void readInput(std::istream& eFile, std::istream& fFile, std::istream& aFile);
|
| 106 |
+
void processOutput(OutputProcessor& processor);
|
| 107 |
+
void printStats(void);
|
| 108 |
+
|
| 109 |
+
|
| 110 |
+
//////// Extern variables //////////////////////////////////////////////////////
|
| 111 |
+
|
| 112 |
+
extern bool allModelsOutputFlag;
|
| 113 |
+
|
| 114 |
+
// Some default setting, I guess...
|
| 115 |
+
extern bool wordModel; // IBM word model.
|
| 116 |
+
extern REO_MODEL_TYPE wordType;
|
| 117 |
+
extern bool phraseModel; // Std phrase-based model.
|
| 118 |
+
extern REO_MODEL_TYPE phraseType;
|
| 119 |
+
extern bool hierModel; // Hierarchical model.
|
| 120 |
+
extern REO_MODEL_TYPE hierType;
|
| 121 |
+
|
| 122 |
+
extern int maxPhraseLength; // Eg. 7
|
| 123 |
+
extern bool translationFlag; // Generate extract and extract.inv
|
| 124 |
+
extern bool orientationFlag; // Ordering info needed?
|
| 125 |
+
extern bool sortedOutput; // Sort output?
|
| 126 |
+
|
| 127 |
+
extern LossyCountersVector lossyCounters;
|
| 128 |
+
|
| 129 |
+
#ifdef GET_COUNTS_ONLY
|
| 130 |
+
extern std::vector<size_t> phrasePairsCounters;
|
| 131 |
+
#endif
|
| 132 |
+
|
| 133 |
+
#endif /* PHRASE_EXTRACT_H */
|
mosesdecoder/contrib/eppex/typedefs.h
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* Basic eppex configuration.
|
| 3 |
+
*
|
| 4 |
+
* $Id$
|
| 5 |
+
*/
|
| 6 |
+
|
| 7 |
+
#ifndef CONFIG_H
|
| 8 |
+
#define CONFIG_H
|
| 9 |
+
|
| 10 |
+
#include "IndexedPhrasesPair.h"
|
| 11 |
+
#include "LossyCounter.h"
|
| 12 |
+
|
| 13 |
+
// Type capable of holding all words (tokens) indices:
|
| 14 |
+
typedef unsigned int word_index_t;
|
| 15 |
+
// Type capable of holding all orientation info indices:
|
| 16 |
+
typedef unsigned char orientation_info_index_t;
|
| 17 |
+
// Phrase Pair type.
|
| 18 |
+
typedef IndexedPhrasesPair<orientation_info_index_t, word_index_t> indexed_phrases_pair_t;
|
| 19 |
+
// Lossy Counter type.
|
| 20 |
+
typedef LossyCounter<indexed_phrases_pair_t> PhrasePairsLossyCounter;
|
| 21 |
+
// Shortcut to alignment interface.
|
| 22 |
+
typedef indexed_phrases_pair_t::alignment_t alignment_t;
|
| 23 |
+
|
| 24 |
+
#endif /* CONFIG_H */
|
mosesdecoder/contrib/iSenWeb/index.html
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<HTML>
|
| 3 |
+
<head>
|
| 4 |
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
| 5 |
+
<title>Moses Translation System</title>
|
| 6 |
+
<script type="text/javascript" src="jquery-1.7.2.js"></script>
|
| 7 |
+
<link href="./themes/styles/common.css" rel="stylesheet" type="text/css" />
|
| 8 |
+
<link href="./themes/styles/search.css" rel="stylesheet" type="text/css"/>
|
| 9 |
+
<link href="./themes/styles/fanyi.css" rel="stylesheet" type="text/css" />
|
| 10 |
+
</head>
|
| 11 |
+
<script language="javascript">
|
| 12 |
+
$(document).ready(function()
|
| 13 |
+
{
|
| 14 |
+
|
| 15 |
+
var targetDiv = $("#outputText");
|
| 16 |
+
var input = $("#inputText");
|
| 17 |
+
|
| 18 |
+
$("#transForm").submit(function()
|
| 19 |
+
{
|
| 20 |
+
$.ajax(
|
| 21 |
+
{
|
| 22 |
+
type: "POST", url: 'trans_result.php',data: {input1: input.val()},
|
| 23 |
+
complete: function(data)
|
| 24 |
+
{
|
| 25 |
+
targetDiv.html('');
|
| 26 |
+
targetDiv.append(data.responseText);
|
| 27 |
+
|
| 28 |
+
}
|
| 29 |
+
});
|
| 30 |
+
return false;
|
| 31 |
+
});
|
| 32 |
+
});
|
| 33 |
+
|
| 34 |
+
</script>
|
| 35 |
+
<body>
|
| 36 |
+
<div class="topWrap">
|
| 37 |
+
<div class="top">
|
| 38 |
+
<div class="logo"><a href="/" title="English Chinese Translation Based on Moses">Home</a></div>
|
| 39 |
+
|
| 40 |
+
</div>
|
| 41 |
+
<!-- top end -->
|
| 42 |
+
</div>
|
| 43 |
+
<div class="ConBox">
|
| 44 |
+
<div class="hd">
|
| 45 |
+
<div id="inputMod" class="column fl">
|
| 46 |
+
<div class="wrapper">
|
| 47 |
+
<!--
|
| 48 |
+
<form action="trans_result.php" method="post" id="transForm" name="transForm">-->
|
| 49 |
+
<form action="" method="post" id="transForm" name="transForm">
|
| 50 |
+
<div class="row desc">
|
| 51 |
+
Source Text:
|
| 52 |
+
<input type="reset" name="clear" value="Clear"/>
|
| 53 |
+
</div>
|
| 54 |
+
<div class="row border content">
|
| 55 |
+
<textarea id="inputText" class="text" dir="ltr" tabindex="1" wrap="SOFT" name="inputText"></textarea>
|
| 56 |
+
|
| 57 |
+
</div>
|
| 58 |
+
<div class="row">
|
| 59 |
+
<select>
|
| 60 |
+
<option value ="en-cn">English >> Chinese </option>
|
| 61 |
+
</select>
|
| 62 |
+
<input type="submit" value="Translation"/>
|
| 63 |
+
</div>
|
| 64 |
+
</form>
|
| 65 |
+
</div>
|
| 66 |
+
<!-- end of wrapper -->
|
| 67 |
+
</div>
|
| 68 |
+
<!-- end of div inputMod -->
|
| 69 |
+
<div id="outputMod" class="column fr">
|
| 70 |
+
<div class="wrapper">
|
| 71 |
+
<div id="translated" style="display: block;">
|
| 72 |
+
<div class="row desc"><span id="outputLang">en->ch</span></div>
|
| 73 |
+
<div class="row">
|
| 74 |
+
<div id="outputText" class="row">
|
| 75 |
+
<div class="translated_result">
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
</div>
|
| 79 |
+
|
| 80 |
+
</div>
|
| 81 |
+
</div>
|
| 82 |
+
|
| 83 |
+
</div>
|
| 84 |
+
|
| 85 |
+
<!-- end of entryList -->
|
| 86 |
+
<!-- end translated -->
|
| 87 |
+
</div>
|
| 88 |
+
<!-- end of wrapper -->
|
| 89 |
+
|
| 90 |
+
|
| 91 |
+
<div class="row cf" id="addons">
|
| 92 |
+
<a id="feedback_link" target="_blank" href="#" class="fr">Feedback</a>
|
| 93 |
+
<span id="suggestYou">
|
| 94 |
+
选择<a data-pos="web.o.leftbottom" class="clog-js" data-clog="FUFEI_CLICK" href="http://nlp2ct.sftw.umac.mo/" target="_blank">人工翻译服务</a>,获得更专业的翻译结果。
|
| 95 |
+
</span>
|
| 96 |
+
</div>
|
| 97 |
+
</div>
|
| 98 |
+
<div id="errorHolder"><span class="error_text"></span></div>
|
| 99 |
+
</div>
|
| 100 |
+
<div style="clear:both"></div>
|
| 101 |
+
<script type="text/javascript">
|
| 102 |
+
var global = {};
|
| 103 |
+
global.sessionFrom = "http://dict.youdao.com/";
|
| 104 |
+
</script>
|
| 105 |
+
<script type="text/javascript" src="http://impservice.dictweb.youdao.com/imp/dict_req_web_1.0.js"></script>
|
| 106 |
+
<script data-main="fanyi" type="text/javascript" src="./themes/fanyi/v2.1.3.1/scripts/fanyi.js"></script>
|
| 107 |
+
<div id="transBtnTip">
|
| 108 |
+
<div id="transBtnTipInner">
|
| 109 |
+
点击翻译按钮继续,查看网页翻译结果。
|
| 110 |
+
<p class="ar">
|
| 111 |
+
<a href="#" id="transBtnTipOK">I have known</a>
|
| 112 |
+
</p>
|
| 113 |
+
<b id="transBtnTipArrow"></b>
|
| 114 |
+
</div>
|
| 115 |
+
</div>
|
| 116 |
+
|
| 117 |
+
<div class="Feedback"><a href="http://nlp2ct.sftw.umac.mo/" target="_blank">反馈信息给我们</a></div>
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
<div class="footer" style="clear:both">
|
| 121 |
+
<p><a href="http://nlp2ct.sftw.umac.mo/" target="_blank">Conect with us</a> <span>|</span>
|
| 122 |
+
<a href="http://nlp2ct.sftw.umac.mo/" target="_blank">Mosese Translated system</a> <span>|</span>
|
| 123 |
+
Copyright© 2012-2012 NLP2CT All Right to Moses Group
|
| 124 |
+
</p>
|
| 125 |
+
<p>More</p>
|
| 126 |
+
</div>
|
| 127 |
+
</div>
|
| 128 |
+
</body>
|
| 129 |
+
</HTML>
|
mosesdecoder/contrib/iSenWeb/jquery-1.7.2.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
mosesdecoder/contrib/iSenWeb/moses.pl
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/perl -w
|
| 2 |
+
use warnings;
|
| 3 |
+
use strict;
|
| 4 |
+
$|++;
|
| 5 |
+
|
| 6 |
+
# file: daemon.pl
|
| 7 |
+
|
| 8 |
+
# Herve Saint-Amand
|
| 9 |
+
# Universitaet des Saarlandes
|
| 10 |
+
# Tue May 13 19:45:31 2008
|
| 11 |
+
|
| 12 |
+
# This script starts Moses to run in the background, so that it can be used by
|
| 13 |
+
# the CGI script. It spawns the Moses process, then binds itself to listen on
|
| 14 |
+
# some port, and when it gets a connection, reads it line by line, feeds those
|
| 15 |
+
# to Moses, and sends back the translation.
|
| 16 |
+
|
| 17 |
+
# You can either run one instance of this on your Web server, or, if you have
|
| 18 |
+
# the hardware setup for it, run several instances of this, then configure
|
| 19 |
+
# translate.cgi to connect to these.
|
| 20 |
+
|
| 21 |
+
#------------------------------------------------------------------------------
|
| 22 |
+
# includes
|
| 23 |
+
|
| 24 |
+
use IO::Socket::INET;
|
| 25 |
+
use IPC::Open2;
|
| 26 |
+
|
| 27 |
+
#------------------------------------------------------------------------------
|
| 28 |
+
# constants, global vars, config
|
| 29 |
+
|
| 30 |
+
my $MOSES = '/home/tianliang/research/moses-smt/scripts/training/model/moses';
|
| 31 |
+
my $MOSES_INI = '/home/tianliang/research/moses-smt/scripts/training/model/moses.ini';
|
| 32 |
+
|
| 33 |
+
die "usage: daemon.pl <hostname> <port>" unless (@ARGV == 2);
|
| 34 |
+
my $LISTEN_HOST = shift;
|
| 35 |
+
my $LISTEN_PORT = shift;
|
| 36 |
+
|
| 37 |
+
#------------------------------------------------------------------------------
|
| 38 |
+
# main
|
| 39 |
+
|
| 40 |
+
# spawn moses
|
| 41 |
+
my ($MOSES_IN, $MOSES_OUT);
|
| 42 |
+
my $pid = open2 ($MOSES_OUT, $MOSES_IN, $MOSES, '-f', $MOSES_INI);
|
| 43 |
+
|
| 44 |
+
# open server socket
|
| 45 |
+
my $server_sock = new IO::Socket::INET
|
| 46 |
+
(LocalAddr => $LISTEN_HOST, LocalPort => $LISTEN_PORT, Listen => 1)
|
| 47 |
+
|| die "Can't bind server socket";
|
| 48 |
+
|
| 49 |
+
while (my $client_sock = $server_sock->accept) {
|
| 50 |
+
while (my $line = <$client_sock>) {
|
| 51 |
+
print $MOSES_IN $line;
|
| 52 |
+
$MOSES_IN->flush ();
|
| 53 |
+
print $client_sock scalar <$MOSES_OUT>;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
$client_sock->close ();
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
#------------------------------------------------------------------------------
|
mosesdecoder/contrib/iSenWeb/themes/images/common/Logo (1000x300).png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/Logo (250x250).png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/Logo (500x500).png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/Logo.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/Logo_lab.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/header_bg.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/ico_cor10.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/icon_feedback.png
ADDED
|
|
mosesdecoder/contrib/iSenWeb/themes/images/common/logo_christmas.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/logo_christmas1.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/logo_christmas2.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/logo_christmas3.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/nav_bgn.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/common/sidebar_bg.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/fanyi/fanyi_sprite.png
ADDED
|
|
mosesdecoder/contrib/iSenWeb/themes/images/fanyi/inputTextBg.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/images/search/s.png
ADDED
|
mosesdecoder/contrib/iSenWeb/themes/styles/common.css
ADDED
|
@@ -0,0 +1,288 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@charset "utf-8";
|
| 2 |
+
|
| 3 |
+
html,body,div,span,applet,object,iframe,table,caption,tbody,tfoot,thead,tr,th,td,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,tt,var,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,dl,dt,dd,ol,ul,li,fieldset,form,label,legend {
|
| 4 |
+
outline:0;
|
| 5 |
+
padding:0;
|
| 6 |
+
margin:0;
|
| 7 |
+
border:0;
|
| 8 |
+
text-align:left;
|
| 9 |
+
font-style:normal;
|
| 10 |
+
word-wrap:break-word;
|
| 11 |
+
}
|
| 12 |
+
:focus {
|
| 13 |
+
outline:0;
|
| 14 |
+
}
|
| 15 |
+
body {
|
| 16 |
+
font-family:"Microsoft Yahei","\534E\6587\9ED1\4F53","Arail","Verdana","Helvetica","sans-serif";
|
| 17 |
+
color:#999;
|
| 18 |
+
font-size:12px;
|
| 19 |
+
}
|
| 20 |
+
ol,ul,li {
|
| 21 |
+
list-style:none;
|
| 22 |
+
}
|
| 23 |
+
table {
|
| 24 |
+
border-collapse:collapse;
|
| 25 |
+
border-spacing:0;
|
| 26 |
+
width:100%;
|
| 27 |
+
}
|
| 28 |
+
caption,th,td {
|
| 29 |
+
font-weight:normal;
|
| 30 |
+
text-align:left;
|
| 31 |
+
vertical-align:top;
|
| 32 |
+
}
|
| 33 |
+
a:link,a:visited {
|
| 34 |
+
font-family:"Microsoft Yahei";
|
| 35 |
+
color:#568d99;
|
| 36 |
+
text-decoration:none;
|
| 37 |
+
}
|
| 38 |
+
a:hover {
|
| 39 |
+
font-family:"Microsoft Yahei";
|
| 40 |
+
color:#568d99;
|
| 41 |
+
text-decoration:underline;
|
| 42 |
+
}
|
| 43 |
+
input.txt {
|
| 44 |
+
border-top:1px solid #cdcdcd;
|
| 45 |
+
border-left:1px solid #a4a4a4;
|
| 46 |
+
border-bottom:1px solid #e8e8e8;
|
| 47 |
+
border-right:1px solid #d9d9d9;
|
| 48 |
+
font-family:Arial,Helvetica,sans-serif;
|
| 49 |
+
color:#666;
|
| 50 |
+
font-size:14px
|
| 51 |
+
}
|
| 52 |
+
body {
|
| 53 |
+
background:#eeefef;
|
| 54 |
+
}
|
| 55 |
+
.topWrap {
|
| 56 |
+
height:200px;
|
| 57 |
+
background:url(../images/common/header_bg.png) repeat-x center top;
|
| 58 |
+
}
|
| 59 |
+
.topW {
|
| 60 |
+
width:940px;
|
| 61 |
+
position:relative;
|
| 62 |
+
margin:0 auto;
|
| 63 |
+
}
|
| 64 |
+
.top {
|
| 65 |
+
width:900px;
|
| 66 |
+
margin:0 auto;
|
| 67 |
+
height:90px;
|
| 68 |
+
z-index:100;
|
| 69 |
+
}
|
| 70 |
+
.top .logo {
|
| 71 |
+
width:20px;
|
| 72 |
+
height:300px;
|
| 73 |
+
background:url(../images/common/Logo.png) no-repeat;
|
| 74 |
+
_background:url(../images/common/logo.gif) no-repeat;
|
| 75 |
+
float:left;
|
| 76 |
+
margin:0px 0 0 0;
|
| 77 |
+
}
|
| 78 |
+
.top .logNoLogin {
|
| 79 |
+
width:159px;
|
| 80 |
+
overflow:hidden
|
| 81 |
+
}
|
| 82 |
+
.top .logo a {
|
| 83 |
+
width:165px;
|
| 84 |
+
height:55px;
|
| 85 |
+
float:left;
|
| 86 |
+
text-indent:-9999px;
|
| 87 |
+
}
|
| 88 |
+
.top .nav {
|
| 89 |
+
float:right;
|
| 90 |
+
margin-top:37px;
|
| 91 |
+
font-size:16px;
|
| 92 |
+
position:relative;
|
| 93 |
+
width:542px;
|
| 94 |
+
}
|
| 95 |
+
.top .nav a {
|
| 96 |
+
height:35px;
|
| 97 |
+
line-height:23px;
|
| 98 |
+
margin-left:10px;
|
| 99 |
+
padding:0 10px;
|
| 100 |
+
float:left;
|
| 101 |
+
display:block;
|
| 102 |
+
overflow:hidden;
|
| 103 |
+
text-decoration:none;
|
| 104 |
+
text-align:center;
|
| 105 |
+
color:#3c6770;
|
| 106 |
+
}
|
| 107 |
+
.top .nav a:hover {
|
| 108 |
+
background:url(../images/common/nav_bgn.png) no-repeat 0 -40px;
|
| 109 |
+
_background:url(../images/common/nav_bgn.gif) no-repeat 0 -40px;
|
| 110 |
+
color:#3c6770;
|
| 111 |
+
}
|
| 112 |
+
.top .nav a.current {
|
| 113 |
+
background:url(../images/common/nav_bgn.png) no-repeat center 0;
|
| 114 |
+
_background:url(../images/common/nav_bgn.gif) no-repeat center 0;
|
| 115 |
+
}
|
| 116 |
+
.top .nav .uname {
|
| 117 |
+
float:right
|
| 118 |
+
}
|
| 119 |
+
.top .nav a.username {
|
| 120 |
+
height:26px;
|
| 121 |
+
max-width:96px;
|
| 122 |
+
padding-right:4px;
|
| 123 |
+
cursor:pointer;
|
| 124 |
+
display:inline-block;
|
| 125 |
+
vertical-align:middle
|
| 126 |
+
}
|
| 127 |
+
.top .nav a.username:hover {
|
| 128 |
+
background:none;
|
| 129 |
+
}
|
| 130 |
+
.top .nav .uname .cor {
|
| 131 |
+
display:inline-block;
|
| 132 |
+
width:12px;
|
| 133 |
+
height:12px;
|
| 134 |
+
background:url(../images/common/ico_cor10.png) 0 0 no-repeat;
|
| 135 |
+
cursor:pointer;
|
| 136 |
+
vertical-align:middle;
|
| 137 |
+
overflow:hidden
|
| 138 |
+
}
|
| 139 |
+
.noLogin .nav {
|
| 140 |
+
width:auto;
|
| 141 |
+
margin-right:48px;
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
|
| 145 |
+
.ConBox {
|
| 146 |
+
width:900px;
|
| 147 |
+
min-height:600px;
|
| 148 |
+
margin:15px auto 50px auto;
|
| 149 |
+
padding-bottom:8px;
|
| 150 |
+
-webkit-box-shadow:0 0 5px 0 #aeaeae;
|
| 151 |
+
-moz-box-shadow:0 0 5px 0 #aeaeae;
|
| 152 |
+
-box-shadow:0 0 5px 0 #aeaeae;
|
| 153 |
+
-webkit-border-radius:8px;
|
| 154 |
+
-moz-border-radius:8px;
|
| 155 |
+
border-radius:8px;
|
| 156 |
+
background:#fff
|
| 157 |
+
}
|
| 158 |
+
.ConBox .hd {
|
| 159 |
+
padding:30px 30px 10px;
|
| 160 |
+
}
|
| 161 |
+
.ConBox .hd_left {
|
| 162 |
+
float:left;
|
| 163 |
+
width:560px;
|
| 164 |
+
|
| 165 |
+
}
|
| 166 |
+
.ConBox .hd_right {
|
| 167 |
+
float:right;
|
| 168 |
+
width:260px;
|
| 169 |
+
|
| 170 |
+
}
|
| 171 |
+
|
| 172 |
+
|
| 173 |
+
.ConBox .bd {
|
| 174 |
+
padding:0px;
|
| 175 |
+
float:right;
|
| 176 |
+
}
|
| 177 |
+
|
| 178 |
+
.ConBox .rank-index {
|
| 179 |
+
background-color: #E0EEF7;
|
| 180 |
+
padding: 10px;
|
| 181 |
+
}
|
| 182 |
+
|
| 183 |
+
.ConBox .right-panel-title {
|
| 184 |
+
color: #035168;
|
| 185 |
+
font: bolder 16px/ 18px "Microsoft Yahei";
|
| 186 |
+
margin: 0 0 5px 0;
|
| 187 |
+
}
|
| 188 |
+
|
| 189 |
+
.searchbar {
|
| 190 |
+
width:900px;
|
| 191 |
+
margin:10px auto 0;
|
| 192 |
+
overflow:hidden;
|
| 193 |
+
*zoom:1;
|
| 194 |
+
}
|
| 195 |
+
.searchbar .bd {
|
| 196 |
+
float:right;
|
| 197 |
+
border:1px solid #CBCBCD;
|
| 198 |
+
height:28px;
|
| 199 |
+
position:relative;
|
| 200 |
+
width:181px;
|
| 201 |
+
}
|
| 202 |
+
.searchbar .bd input.ipt {
|
| 203 |
+
background:url(../images/common/sidebar_bg.png) no-repeat 0 -300px;
|
| 204 |
+
border:0 none;
|
| 205 |
+
color:#cfcfcf;
|
| 206 |
+
font-family:"Microsoft Yahei",arial;
|
| 207 |
+
font-size:14px;
|
| 208 |
+
height:28px;
|
| 209 |
+
*height:27px;
|
| 210 |
+
line-height:28px;
|
| 211 |
+
margin:0;
|
| 212 |
+
padding:0 33px 0 9px;
|
| 213 |
+
width:119px;
|
| 214 |
+
_background:url(../images/common/sidebar_bg.gif) 0 -300px no-repeat;
|
| 215 |
+
*background-position:0 -301px;
|
| 216 |
+
}
|
| 217 |
+
.searchbar .bd input.btn {
|
| 218 |
+
background:url(../images/common/sidebar_bg.png) no-repeat -188px -343px;
|
| 219 |
+
border:0 none;
|
| 220 |
+
cursor:pointer;
|
| 221 |
+
height:28px;
|
| 222 |
+
position:absolute;
|
| 223 |
+
right:0;
|
| 224 |
+
top:0;
|
| 225 |
+
width:30px;
|
| 226 |
+
_background:url(../images/common/sidebar_bg.gif) -188px -343px no-repeat;
|
| 227 |
+
}
|
| 228 |
+
.searchbar .inpt_focus {
|
| 229 |
+
border:1px solid #649C9C;
|
| 230 |
+
}
|
| 231 |
+
.searchbar .inpt_focus input.btn {
|
| 232 |
+
background-position:-188px -473px;
|
| 233 |
+
}
|
| 234 |
+
.searchbar .inpt_focus input.ipt {
|
| 235 |
+
color:#333;
|
| 236 |
+
}
|
| 237 |
+
.wrap {
|
| 238 |
+
clear:both;
|
| 239 |
+
}
|
| 240 |
+
.container {
|
| 241 |
+
width:960px;
|
| 242 |
+
margin:60px auto 0;
|
| 243 |
+
}
|
| 244 |
+
.content .bd {
|
| 245 |
+
clear:both;
|
| 246 |
+
}
|
| 247 |
+
.footer {
|
| 248 |
+
width:960px;
|
| 249 |
+
height:66px;
|
| 250 |
+
padding-top:20px;
|
| 251 |
+
color:#b9b8b8;
|
| 252 |
+
text-align:center;
|
| 253 |
+
}
|
| 254 |
+
.footer p {
|
| 255 |
+
text-align:center;
|
| 256 |
+
line-height:23px;
|
| 257 |
+
}
|
| 258 |
+
.footer a,.footer a:link {
|
| 259 |
+
color:#b9b8b8;
|
| 260 |
+
text-decoration:none;
|
| 261 |
+
}
|
| 262 |
+
.footer a:hover {
|
| 263 |
+
color:#b9b8b8;
|
| 264 |
+
text-decoration:underline;
|
| 265 |
+
}
|
| 266 |
+
.top .logo {
|
| 267 |
+
height:200px;
|
| 268 |
+
width:550px;
|
| 269 |
+
background:url(../images/common/Logo_lab.png) no-repeat;
|
| 270 |
+
_background:url(../images/common/logo_christmas_ie6.png) no-repeat
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
|
| 274 |
+
.Feedback {
|
| 275 |
+
right: 0;
|
| 276 |
+
position: fixed;
|
| 277 |
+
top: 40%;
|
| 278 |
+
_position: absolute;
|
| 279 |
+
z-index: 85;
|
| 280 |
+
}
|
| 281 |
+
.Feedback a {
|
| 282 |
+
display: block;
|
| 283 |
+
width: 41px;
|
| 284 |
+
height: 127px;
|
| 285 |
+
background: url(../images/common/icon_feedback.png) no-repeat;
|
| 286 |
+
text-indent: -9999px;
|
| 287 |
+
overflow: hidden;
|
| 288 |
+
}
|
mosesdecoder/contrib/iSenWeb/themes/styles/fanyi.css
ADDED
|
@@ -0,0 +1,583 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
.column {
|
| 3 |
+
width:50%;
|
| 4 |
+
}
|
| 5 |
+
.fl .wrapper {
|
| 6 |
+
padding-right:20px;
|
| 7 |
+
_padding-right:10px;
|
| 8 |
+
}
|
| 9 |
+
h2 {
|
| 10 |
+
height:20px;
|
| 11 |
+
font-size:1.2em;
|
| 12 |
+
}
|
| 13 |
+
.column .row {
|
| 14 |
+
padding-top:.5em;
|
| 15 |
+
}
|
| 16 |
+
#transForm .user-research {
|
| 17 |
+
float:right;
|
| 18 |
+
}
|
| 19 |
+
#transForm .user-research a {
|
| 20 |
+
font-family:"宋体";
|
| 21 |
+
}
|
| 22 |
+
#transForm .desc {
|
| 23 |
+
zoom:1;
|
| 24 |
+
}
|
| 25 |
+
.column .desc {
|
| 26 |
+
position:relative;
|
| 27 |
+
color:#333333;
|
| 28 |
+
font-size:14px;
|
| 29 |
+
}
|
| 30 |
+
.text {
|
| 31 |
+
width:100%;
|
| 32 |
+
padding:0;
|
| 33 |
+
background:#fff;
|
| 34 |
+
}
|
| 35 |
+
input.text {
|
| 36 |
+
padding:3px 0;
|
| 37 |
+
}
|
| 38 |
+
.button {
|
| 39 |
+
width:5em;
|
| 40 |
+
*height:23px;
|
| 41 |
+
*padding-top:2px;
|
| 42 |
+
}
|
| 43 |
+
.actions a {
|
| 44 |
+
display:none;
|
| 45 |
+
}
|
| 46 |
+
#inputText {
|
| 47 |
+
display:block;
|
| 48 |
+
border-width:0 1px 1px 0;
|
| 49 |
+
border-color:#E5E5E5;
|
| 50 |
+
border-style:solid;
|
| 51 |
+
background:url("../images/fanyi/inputTextBg.png") no-repeat 0 0;
|
| 52 |
+
_background-attachment:fixed;
|
| 53 |
+
font-size:14px;
|
| 54 |
+
line-height:140%;
|
| 55 |
+
padding:10px 0 10px 10px;
|
| 56 |
+
height:187px;
|
| 57 |
+
resize:none;
|
| 58 |
+
outline:none;
|
| 59 |
+
font-family:arial,sans-serif;
|
| 60 |
+
}
|
| 61 |
+
*+html #inputText {
|
| 62 |
+
background:none;
|
| 63 |
+
border-width:2px 1px 1px 2px;
|
| 64 |
+
height:185px;
|
| 65 |
+
}
|
| 66 |
+
@-moz-document url-prefix() {
|
| 67 |
+
#inputText {
|
| 68 |
+
padding:3px 0 1px 10px;
|
| 69 |
+
height:204px;
|
| 70 |
+
}
|
| 71 |
+
}#customSelectBtn {
|
| 72 |
+
position:relative;
|
| 73 |
+
*float:left;
|
| 74 |
+
display:inline-block;
|
| 75 |
+
width:85px;
|
| 76 |
+
height:22px;
|
| 77 |
+
padding:1px 20px 1px 5px;
|
| 78 |
+
margin-right:5px;
|
| 79 |
+
line-height:22px;
|
| 80 |
+
border:1px solid #9fc7e3;
|
| 81 |
+
vertical-align:bottom;
|
| 82 |
+
cursor:pointer;
|
| 83 |
+
color:#000000;
|
| 84 |
+
}
|
| 85 |
+
#customSelectBtn .btn_arrow {
|
| 86 |
+
position:absolute;
|
| 87 |
+
top:10px;
|
| 88 |
+
right:5px;
|
| 89 |
+
border-width:5px;
|
| 90 |
+
border-style:solid dashed dashed dashed;
|
| 91 |
+
border-color:#9fc7e3 transparent transparent transparent;
|
| 92 |
+
line-height:0;
|
| 93 |
+
font-size:0;
|
| 94 |
+
width:0;
|
| 95 |
+
height:0;
|
| 96 |
+
}
|
| 97 |
+
#customSelectBtn.focus .btn_arrow {
|
| 98 |
+
top:4px;
|
| 99 |
+
border-style:dashed dashed solid dashed;
|
| 100 |
+
border-color:transparent transparent #9fc7e3 transparent;
|
| 101 |
+
}
|
| 102 |
+
#customSelectOption {
|
| 103 |
+
width:110px;
|
| 104 |
+
padding:0;
|
| 105 |
+
margin:1px 0 0;
|
| 106 |
+
list-style:none;
|
| 107 |
+
font-size:12px;
|
| 108 |
+
border:1px solid #9fc7e3;
|
| 109 |
+
background:#fff;
|
| 110 |
+
position:absolute;
|
| 111 |
+
z-index:9999;
|
| 112 |
+
left:-1px;
|
| 113 |
+
top:23px;
|
| 114 |
+
display:none;
|
| 115 |
+
}
|
| 116 |
+
#customSelectOption a {
|
| 117 |
+
display:block;
|
| 118 |
+
height:22px;
|
| 119 |
+
padding:0 5px;
|
| 120 |
+
line-height:22px;
|
| 121 |
+
text-decoration:none;
|
| 122 |
+
color:#2a2a2a;
|
| 123 |
+
}
|
| 124 |
+
#customSelectOption a:hover,#customSelectOption .on a {
|
| 125 |
+
background:#9fc7e3;
|
| 126 |
+
}
|
| 127 |
+
#translateBtn {
|
| 128 |
+
width:74px;
|
| 129 |
+
height:26px;
|
| 130 |
+
text-indent:-999em;
|
| 131 |
+
overflow:hidden;
|
| 132 |
+
background:#fff url(../images/fanyi/fanyi_sprite.png) left -42px;
|
| 133 |
+
cursor:pointer;
|
| 134 |
+
outline:none;
|
| 135 |
+
display:inline-block;
|
| 136 |
+
vertical-align:top;
|
| 137 |
+
}
|
| 138 |
+
#translateBtn:hover {
|
| 139 |
+
background-position:-74px -42px;
|
| 140 |
+
}
|
| 141 |
+
#translateBtn:active {
|
| 142 |
+
background-position:-148px -42px;
|
| 143 |
+
}
|
| 144 |
+
#outputMod {
|
| 145 |
+
position:relative;
|
| 146 |
+
}
|
| 147 |
+
#speech {
|
| 148 |
+
display:inline-block;
|
| 149 |
+
width:16px;
|
| 150 |
+
height:0;
|
| 151 |
+
padding-top:13px;
|
| 152 |
+
margin:0 5px -2px;
|
| 153 |
+
overflow:hidden;
|
| 154 |
+
background:url(../images/fanyi/fanyi_sprite.png) no-repeat -168px top;
|
| 155 |
+
}
|
| 156 |
+
#speech:hover,#speech.on {
|
| 157 |
+
background-position:-168px -13px;
|
| 158 |
+
}
|
| 159 |
+
#outputMod .desc {
|
| 160 |
+
position:relative;
|
| 161 |
+
zoom:1;
|
| 162 |
+
height:14px;
|
| 163 |
+
}
|
| 164 |
+
#entryList {
|
| 165 |
+
padding:40px 0 0;
|
| 166 |
+
margin:0 0 0 18px;
|
| 167 |
+
list-style:none;
|
| 168 |
+
}
|
| 169 |
+
#entryList li {
|
| 170 |
+
position:relative;
|
| 171 |
+
height:42px;
|
| 172 |
+
line-height:42px;
|
| 173 |
+
padding-left:40px;
|
| 174 |
+
margin-bottom:5px;
|
| 175 |
+
white-space:nowrap;
|
| 176 |
+
color:#666;
|
| 177 |
+
}
|
| 178 |
+
#entryList .sp {
|
| 179 |
+
position:absolute;
|
| 180 |
+
left:0;
|
| 181 |
+
top:0;
|
| 182 |
+
width:36px;
|
| 183 |
+
padding-top:42px;
|
| 184 |
+
background:url(../images/fanyi/fanyi_sprite.png) no-repeat right top;
|
| 185 |
+
}
|
| 186 |
+
#translated {
|
| 187 |
+
display:none;
|
| 188 |
+
zoom:1;
|
| 189 |
+
}
|
| 190 |
+
#copyit {
|
| 191 |
+
vertical-align:middle;
|
| 192 |
+
margin-top:-2px;
|
| 193 |
+
}
|
| 194 |
+
#outputText {
|
| 195 |
+
padding:15px 20px 0;
|
| 196 |
+
line-height:140%;
|
| 197 |
+
word-wrap:break-word;
|
| 198 |
+
overflow-y:auto;
|
| 199 |
+
background-color:#fafafa;
|
| 200 |
+
height:193px;
|
| 201 |
+
font-family:arial,sans-serif;
|
| 202 |
+
}
|
| 203 |
+
#translated .small_font .translated_result .tgt {
|
| 204 |
+
font-size:14px;
|
| 205 |
+
font-weight:normal;
|
| 206 |
+
margin-bottom:.4em;
|
| 207 |
+
}
|
| 208 |
+
#translated .small_font {
|
| 209 |
+
padding:10px 12px;
|
| 210 |
+
height:188px;
|
| 211 |
+
}
|
| 212 |
+
#outputText .src {
|
| 213 |
+
color:#787878;
|
| 214 |
+
font-size:1em;
|
| 215 |
+
margin-bottom:2px;
|
| 216 |
+
}
|
| 217 |
+
#outputText .tgt {
|
| 218 |
+
margin-bottom:10px;
|
| 219 |
+
font-size:1.5em;
|
| 220 |
+
font-weight:bold;
|
| 221 |
+
line-height:150%;
|
| 222 |
+
}
|
| 223 |
+
#outputText .selected {
|
| 224 |
+
background-color:#316ac5;
|
| 225 |
+
color:#fff;
|
| 226 |
+
}
|
| 227 |
+
.smart_result {
|
| 228 |
+
padding:.5em .8em 0 0;
|
| 229 |
+
border-top:1px solid #e0e0e0;
|
| 230 |
+
color:#000;
|
| 231 |
+
}
|
| 232 |
+
.smart_src_title {
|
| 233 |
+
color:#777;
|
| 234 |
+
font-size:1.2em;
|
| 235 |
+
margin-bottom:.6em;
|
| 236 |
+
}
|
| 237 |
+
.smart_result p {
|
| 238 |
+
margin:5px 0 5px 0;
|
| 239 |
+
line-height:125%;
|
| 240 |
+
}
|
| 241 |
+
.smart_result p a {
|
| 242 |
+
float:right;
|
| 243 |
+
margin-left:6px;
|
| 244 |
+
}
|
| 245 |
+
.smart_result p span {
|
| 246 |
+
overflow:hidden;
|
| 247 |
+
zoom:1;
|
| 248 |
+
display:block;
|
| 249 |
+
}
|
| 250 |
+
.smartresult_more {
|
| 251 |
+
font-size:12px;
|
| 252 |
+
margin-top:5px;
|
| 253 |
+
font-family:"宋体";
|
| 254 |
+
}
|
| 255 |
+
.compare-mode {
|
| 256 |
+
font-weight:bold;
|
| 257 |
+
}
|
| 258 |
+
#modeWrapper {
|
| 259 |
+
margin-top:-3px;
|
| 260 |
+
padding:3px 0;
|
| 261 |
+
*padding:0;
|
| 262 |
+
}
|
| 263 |
+
.read-mode {
|
| 264 |
+
float:right;
|
| 265 |
+
display:none;
|
| 266 |
+
}
|
| 267 |
+
.read-mode .title {
|
| 268 |
+
background:url("../images/fanyi/fanyi_sprite.png") no-repeat -168px -28px;
|
| 269 |
+
padding-left:18px;
|
| 270 |
+
outline:none;
|
| 271 |
+
}
|
| 272 |
+
.compare-mode input {
|
| 273 |
+
vertical-align:top;
|
| 274 |
+
*vertical-align:middle;
|
| 275 |
+
margin:0 3px 0 0;
|
| 276 |
+
border:0;
|
| 277 |
+
padding:0;
|
| 278 |
+
}
|
| 279 |
+
#errorHolder {
|
| 280 |
+
display:none;
|
| 281 |
+
position:absolute;
|
| 282 |
+
z-index:9999;
|
| 283 |
+
top:-25px;
|
| 284 |
+
left:50%;
|
| 285 |
+
text-align:center;
|
| 286 |
+
font-size:12px;
|
| 287 |
+
}
|
| 288 |
+
#errorHolder.nullError {
|
| 289 |
+
left:20%;
|
| 290 |
+
top:120px;
|
| 291 |
+
}
|
| 292 |
+
#errorHolder .error_text {
|
| 293 |
+
background:#3b7fc2;
|
| 294 |
+
display:inline-block;
|
| 295 |
+
padding:5px 10px;
|
| 296 |
+
height:15px;
|
| 297 |
+
line-height:15px;
|
| 298 |
+
color:#fff;
|
| 299 |
+
}
|
| 300 |
+
#errorHolder .error_text a {
|
| 301 |
+
text-decoration:underline;
|
| 302 |
+
}
|
| 303 |
+
#errorHolder.nullError .error_text {
|
| 304 |
+
width:72px;
|
| 305 |
+
text-align:center;
|
| 306 |
+
}
|
| 307 |
+
#errorHolder .add-fav {
|
| 308 |
+
color:white;
|
| 309 |
+
}
|
| 310 |
+
#errorHolder #closeit {
|
| 311 |
+
margin-left:8px;
|
| 312 |
+
}
|
| 313 |
+
.tip-close {
|
| 314 |
+
cursor:pointer;
|
| 315 |
+
}
|
| 316 |
+
#addons {
|
| 317 |
+
display:none;
|
| 318 |
+
}
|
| 319 |
+
#transBtnTip {
|
| 320 |
+
display:none;
|
| 321 |
+
position:absolute;
|
| 322 |
+
z-index:999;
|
| 323 |
+
left:100px;
|
| 324 |
+
top:100px;
|
| 325 |
+
font-size:12px;
|
| 326 |
+
*background:#4570e0;
|
| 327 |
+
}
|
| 328 |
+
#transBtnTipInner {
|
| 329 |
+
position:relative;
|
| 330 |
+
padding:10px 15px;
|
| 331 |
+
*margin:-1px 1px;
|
| 332 |
+
color:#fff;
|
| 333 |
+
background:#4570e0;
|
| 334 |
+
-moz-border-radius:7px;
|
| 335 |
+
-khtml-border-radius:7px;
|
| 336 |
+
-webkit-border-radius:7px;
|
| 337 |
+
border-radius:7px;
|
| 338 |
+
}
|
| 339 |
+
#transBtnTip .ar {
|
| 340 |
+
margin-top:10px;
|
| 341 |
+
}
|
| 342 |
+
#transBtnTipOK {
|
| 343 |
+
font-weight:bold;
|
| 344 |
+
color:#fff;
|
| 345 |
+
}
|
| 346 |
+
#transBtnTipArrow {
|
| 347 |
+
position:absolute;
|
| 348 |
+
left:50px;
|
| 349 |
+
top:100%;
|
| 350 |
+
display:block;
|
| 351 |
+
border-color:transparent transparent transparent #4570e0;
|
| 352 |
+
border-width:0 0 20px 20px;
|
| 353 |
+
border-style:dashed dashed dashed solid;
|
| 354 |
+
font-size:0;
|
| 355 |
+
}
|
| 356 |
+
#sponsor {
|
| 357 |
+
padding:1em 0 0;
|
| 358 |
+
clear:both;
|
| 359 |
+
}
|
| 360 |
+
#sponsor .desc {
|
| 361 |
+
white-space:normal;
|
| 362 |
+
zoom:1;
|
| 363 |
+
}
|
| 364 |
+
#sponsor .fr {
|
| 365 |
+
overflow:hidden;
|
| 366 |
+
}
|
| 367 |
+
#sponsor .more-services {
|
| 368 |
+
background-color:#eff7fd;
|
| 369 |
+
padding-left:10px;
|
| 370 |
+
height:26px;
|
| 371 |
+
line-height:26px;
|
| 372 |
+
text-align:left;
|
| 373 |
+
}
|
| 374 |
+
#sponsor .more-services-list {
|
| 375 |
+
margin-bottom:1em;
|
| 376 |
+
border:1px #eff7fd solid;
|
| 377 |
+
padding:5px 12px 4px 22px;
|
| 378 |
+
}
|
| 379 |
+
#sponsor .more-services-icon-sprite {
|
| 380 |
+
background:url("../images/fanyi/fanyi_sprite.png") no-repeat 0 0;
|
| 381 |
+
float:left;
|
| 382 |
+
padding-left:40px;
|
| 383 |
+
padding-top:40px;
|
| 384 |
+
line-height:0;
|
| 385 |
+
font-size:0;
|
| 386 |
+
}
|
| 387 |
+
#sponsor .icon1 {
|
| 388 |
+
background-position:0 0;
|
| 389 |
+
}
|
| 390 |
+
#sponsor .icon2 {
|
| 391 |
+
background-position:-40px 0;
|
| 392 |
+
}
|
| 393 |
+
#sponsor .icon3 {
|
| 394 |
+
background-position:-80px 0;
|
| 395 |
+
}
|
| 396 |
+
#sponsor .icon4 {
|
| 397 |
+
background-position:-120px 0;
|
| 398 |
+
}
|
| 399 |
+
#trans_tools {
|
| 400 |
+
width:100%;
|
| 401 |
+
}
|
| 402 |
+
#trans_tools td {
|
| 403 |
+
margin:0;
|
| 404 |
+
padding:0;
|
| 405 |
+
width:25%;
|
| 406 |
+
}
|
| 407 |
+
#trans_tools h3 {
|
| 408 |
+
float:left;
|
| 409 |
+
margin-left:10px;
|
| 410 |
+
padding:0 10px 0 0;
|
| 411 |
+
line-height:40px;
|
| 412 |
+
font-size:1.2em;
|
| 413 |
+
}
|
| 414 |
+
#trans_tools p {
|
| 415 |
+
padding:5px 10px 0 0;
|
| 416 |
+
color:#777;
|
| 417 |
+
font-size:1.2em;
|
| 418 |
+
}
|
| 419 |
+
#suggestYou {
|
| 420 |
+
color:#777;
|
| 421 |
+
font-family:"宋体";
|
| 422 |
+
}
|
| 423 |
+
#feedback_link {
|
| 424 |
+
font-family:"宋体";
|
| 425 |
+
}
|
| 426 |
+
.new {
|
| 427 |
+
color:#e60012;
|
| 428 |
+
font-size:12px;
|
| 429 |
+
}
|
| 430 |
+
.close-reading-mode {
|
| 431 |
+
display:none;
|
| 432 |
+
}
|
| 433 |
+
.open-reading-mode {
|
| 434 |
+
display:none;
|
| 435 |
+
}
|
| 436 |
+
.for-close {
|
| 437 |
+
display:none;
|
| 438 |
+
}
|
| 439 |
+
.show-reading-mode .open-reading-mode {
|
| 440 |
+
display:inline-block;
|
| 441 |
+
}
|
| 442 |
+
.reading-mode #inputMod {
|
| 443 |
+
display:none;
|
| 444 |
+
}
|
| 445 |
+
.reading-mode #outputMod {
|
| 446 |
+
margin:0 auto;
|
| 447 |
+
float:none;
|
| 448 |
+
}
|
| 449 |
+
.reading-mode .column {
|
| 450 |
+
width:65%;
|
| 451 |
+
}
|
| 452 |
+
.reading-mode #outputMod #addons {
|
| 453 |
+
display:none;
|
| 454 |
+
}
|
| 455 |
+
.reading-mode #outputMod #outputText {
|
| 456 |
+
background-color:transparent;
|
| 457 |
+
border-top:1px solid #e5e5e5;
|
| 458 |
+
border-bottom:1px solid #e5e5e5;
|
| 459 |
+
}
|
| 460 |
+
.reading-mode #sponsor {
|
| 461 |
+
display:none;
|
| 462 |
+
}
|
| 463 |
+
.reading-mode #translated .small_font {
|
| 464 |
+
height:auto;
|
| 465 |
+
padding:10px 0;
|
| 466 |
+
}
|
| 467 |
+
.reading-mode .for-close {
|
| 468 |
+
display:block;
|
| 469 |
+
}
|
| 470 |
+
.reading-mode .close-reading-mode {
|
| 471 |
+
display:inline-block;
|
| 472 |
+
}
|
| 473 |
+
.reading-mode .open-reading-mode {
|
| 474 |
+
display:none;
|
| 475 |
+
}
|
| 476 |
+
.reading-mode #translated .small_font .translated_result .tgt {
|
| 477 |
+
margin-bottom:.6em;
|
| 478 |
+
padding-bottom:.6em;
|
| 479 |
+
}
|
| 480 |
+
#selectorSwitcher {
|
| 481 |
+
float:right;
|
| 482 |
+
margin-top:-3px;
|
| 483 |
+
height:20px;
|
| 484 |
+
line-height:20px;
|
| 485 |
+
cursor:pointer;
|
| 486 |
+
}
|
| 487 |
+
#selectorStatus {
|
| 488 |
+
margin-left:21px;
|
| 489 |
+
margin-right:6px;
|
| 490 |
+
color:#1e50a2;
|
| 491 |
+
}
|
| 492 |
+
.selector-sprite {
|
| 493 |
+
background:url("../p/switcher.png") no-repeat 0 0;
|
| 494 |
+
}
|
| 495 |
+
.selector-enable {
|
| 496 |
+
background-position:-51px -22px;
|
| 497 |
+
}
|
| 498 |
+
.selector-enable.hover {
|
| 499 |
+
background-position:0 -22px;
|
| 500 |
+
}
|
| 501 |
+
.selector-disable {
|
| 502 |
+
background-position:-51px 0;
|
| 503 |
+
}
|
| 504 |
+
.selector-disable.hover {
|
| 505 |
+
background-position:0 0;
|
| 506 |
+
}
|
| 507 |
+
.show-translate #addons {
|
| 508 |
+
display:block;
|
| 509 |
+
}
|
| 510 |
+
#b {
|
| 511 |
+
border-top:0 solid;
|
| 512 |
+
max-width:960px;
|
| 513 |
+
min-width:500px;
|
| 514 |
+
_width:960px;
|
| 515 |
+
font-family:arial sans-serif;
|
| 516 |
+
}
|
| 517 |
+
#transForm .content {
|
| 518 |
+
position:relative;
|
| 519 |
+
zoom:1;
|
| 520 |
+
}
|
| 521 |
+
.typo-suggest {
|
| 522 |
+
display:none;
|
| 523 |
+
position:absolute;
|
| 524 |
+
bottom:10px;
|
| 525 |
+
left:12px;
|
| 526 |
+
font-size:1.2em;
|
| 527 |
+
font-family:verdana,sens-serif;
|
| 528 |
+
color:#dc143c;
|
| 529 |
+
}
|
| 530 |
+
.typo-suggest a.spell-corrected {
|
| 531 |
+
text-decoration:underline;
|
| 532 |
+
}
|
| 533 |
+
.typo-suggest b {
|
| 534 |
+
font-style:italic;
|
| 535 |
+
font-weight:bold;
|
| 536 |
+
}
|
| 537 |
+
.ads {
|
| 538 |
+
background-color:#FEFEEE;
|
| 539 |
+
}
|
| 540 |
+
#outputMod .wrapper {
|
| 541 |
+
_padding-right:15px;
|
| 542 |
+
}
|
| 543 |
+
#addons {
|
| 544 |
+
_padding-right:15px;
|
| 545 |
+
}
|
| 546 |
+
#microBlog {
|
| 547 |
+
float:right;
|
| 548 |
+
padding-right:5px;
|
| 549 |
+
}
|
| 550 |
+
#microBlog dd,#microBlog dt {
|
| 551 |
+
float:left;
|
| 552 |
+
padding-top:4px;
|
| 553 |
+
height:20px;
|
| 554 |
+
line-height:20px;
|
| 555 |
+
}
|
| 556 |
+
#microBlog dd {
|
| 557 |
+
padding-top:4px;
|
| 558 |
+
height:20px;
|
| 559 |
+
}
|
| 560 |
+
#microBlog .blog {
|
| 561 |
+
display:inline-block;
|
| 562 |
+
background:url('../images/fanyi/anyi_sprite.png') no-repeat;
|
| 563 |
+
width:20px;
|
| 564 |
+
height:20px;
|
| 565 |
+
}
|
| 566 |
+
#microBlog a.netease {
|
| 567 |
+
background-position:-110px -69px;
|
| 568 |
+
}
|
| 569 |
+
#microBlog a.sina {
|
| 570 |
+
background-position:-132px -69px;
|
| 571 |
+
}
|
| 572 |
+
#microBlog a.tencent {
|
| 573 |
+
background-position:-155px -69px;
|
| 574 |
+
}
|
| 575 |
+
#microBlog a.kaixin001 {
|
| 576 |
+
background-position:-177px -69px;
|
| 577 |
+
}
|
| 578 |
+
.fl {
|
| 579 |
+
float:left;
|
| 580 |
+
}
|
| 581 |
+
.fr {
|
| 582 |
+
float:right;
|
| 583 |
+
}
|
mosesdecoder/contrib/iSenWeb/themes/styles/search.css
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* TOP SEARCH */
|
| 2 |
+
#ts{position:relative;float: right; font-size:10px;}
|
| 3 |
+
/* query form */
|
| 4 |
+
.fc,.aca,.qb,.rqb{background:url(/MosesServer-cgi/themes/images/search/s.png) no-repeat}
|
| 5 |
+
.fc{position:relative;width:415px;height:33px;padding:2px 0 2px 2px;background-position:-3px -3px}
|
| 6 |
+
.fc input{font-family:Arial,sans-serif;border:none}
|
| 7 |
+
.qc{position:relative;float:left;width:325px;padding:3px 2px;border-right:1px solid #6a8aae}
|
| 8 |
+
.q{width:294px;height:23px;padding:3px 0 0 2px;*margin:-1px 0;font-size:1.6em;background:transparent;*border:1px solid #fff;outline:none}
|
| 9 |
+
.aca{position:absolute;right:2px;top:3px;width:26px;height:0;padding-top:26px;overflow:hidden;text-indent:-9999em;background-position:-415px -3px;cursor:pointer}
|
| 10 |
+
.qb{width:81px;height:33px;padding:0 0 2px 1px;*padding:2px 0 0 1px;margin:0;_margin-left:-3px;font-weight:bold;font-size:1.4em;word-spacing:4px;color:#fff;background-position:right -50px;background-color:transparent;cursor:pointer}
|
| 11 |
+
.no-suggest .q{width:320px}
|
| 12 |
+
/* BOTTOM SEARCH */
|
| 13 |
+
#bs{margin:15px 0 20px;font-size:10px;}
|
| 14 |
+
#bs .q{width:320px}
|
| 15 |
+
input.rqb{position:absolute;right:-110px;top:2px;width:102px;height:32px;padding-top:32px;overflow:hidden;text-indent:-9999em;background-color:transparent;background-position:left -50px;cursor:pointer}
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
/* suggest */
|
| 19 |
+
.sw{font-size:1.4em;border:1px solid #8cbbdd}
|
| 20 |
+
.sw table{background:#fff;border-collapse:collapse}
|
| 21 |
+
.remindtt75,.jstxlan{padding-left: .2em;font-size: 14px;height: 23px;line-height: 23px;}
|
| 22 |
+
.remindtt752{padding:.2em;color:#808080;font-size:14px}
|
| 23 |
+
.jstxlan{color:#808080;font-size:13px;cursor:pointer; float:right}
|
| 24 |
+
.jstxhuitiaoyou{margin:-1px 0;border-top:1px solid #dbeffe;background:#eaf1fd}
|
| 25 |
+
.aa_highlight{color:#fff;background:#3971bf}
|
| 26 |
+
/* MODULES */
|
| 27 |
+
.pm{display:none;width:70px;border:1px solid;font-size:13px;border-color:#8cbbdd;background:#fff}
|
| 28 |
+
.pm ul{padding:0;margin:0;list-style:none}
|
| 29 |
+
.pm a{display:block;padding:4px 3px;text-decoration:none;zoom:1}
|
| 30 |
+
.pm a:hover{color:#fff;background:#3971bf}
|
| 31 |
+
.pm .sl{height:0;margin:0 1px;*margin-top:-10px;font-size:0;border-bottom:1px solid #8cbbdd}
|
mosesdecoder/contrib/iSenWeb/trans_result.php
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
$result = "";
|
| 3 |
+
$Content = $_POST['input1'];
|
| 4 |
+
$ereg='/\n/';
|
| 5 |
+
$arr_str = preg_split($ereg,$Content);
|
| 6 |
+
foreach($arr_str as $value){
|
| 7 |
+
$value = escapeshellarg($value);
|
| 8 |
+
$result = ` echo $value | nc 161.64.89.129 1986`;
|
| 9 |
+
echo $result.'<br>';
|
| 10 |
+
}
|
| 11 |
+
?>
|
mosesdecoder/contrib/other-builds/CreateOnDiskPt/.cproject
ADDED
|
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
| 2 |
+
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
|
| 3 |
+
<storageModule moduleId="org.eclipse.cdt.core.settings">
|
| 4 |
+
<cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.602770742">
|
| 5 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.602770742" moduleId="org.eclipse.cdt.core.settings" name="Debug">
|
| 6 |
+
<externalSettings/>
|
| 7 |
+
<extensions>
|
| 8 |
+
<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 9 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 10 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 11 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 12 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 13 |
+
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 14 |
+
</extensions>
|
| 15 |
+
</storageModule>
|
| 16 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 17 |
+
<configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.602770742" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug">
|
| 18 |
+
<folderInfo id="cdt.managedbuild.config.gnu.exe.debug.602770742." name="/" resourcePath="">
|
| 19 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1436139469" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug">
|
| 20 |
+
<targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.622899770" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/>
|
| 21 |
+
<builder buildPath="${workspace_loc:/CreateOnDiskPt}/Debug" id="cdt.managedbuild.target.gnu.builder.exe.debug.1448999623" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" parallelBuildOn="true" parallelizationNumber="optimal" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/>
|
| 22 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.base.2139008298" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/>
|
| 23 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2008193341" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug">
|
| 24 |
+
<option id="gnu.cpp.compiler.exe.debug.option.optimization.level.627728792" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/>
|
| 25 |
+
<option id="gnu.cpp.compiler.exe.debug.option.debugging.level.1832148270" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/>
|
| 26 |
+
<option id="gnu.cpp.compiler.option.include.paths.1681469807" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath">
|
| 27 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../..""/>
|
| 28 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../boost/include""/>
|
| 29 |
+
</option>
|
| 30 |
+
<option id="gnu.cpp.compiler.option.preprocessor.def.425758466" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" useByScannerDiscovery="false" valueType="definedSymbols">
|
| 31 |
+
<listOptionValue builtIn="false" value="MAX_NUM_FACTORS=4"/>
|
| 32 |
+
</option>
|
| 33 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.285185442" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 34 |
+
</tool>
|
| 35 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.587301391" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug">
|
| 36 |
+
<option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.2116328611" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
| 37 |
+
<option id="gnu.c.compiler.exe.debug.option.debugging.level.2129089003" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.max" valueType="enumerated"/>
|
| 38 |
+
<option id="gnu.c.compiler.option.dialect.std.1726327101" superClass="gnu.c.compiler.option.dialect.std" useByScannerDiscovery="true" value="gnu.c.compiler.dialect.c11" valueType="enumerated"/>
|
| 39 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1464765114" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 40 |
+
</tool>
|
| 41 |
+
<tool id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.606542044" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"/>
|
| 42 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.813817495" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug">
|
| 43 |
+
<option id="gnu.cpp.link.option.libs.1325292383" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs">
|
| 44 |
+
<listOptionValue builtIn="false" value="moses"/>
|
| 45 |
+
<listOptionValue builtIn="false" value="xmlrpc_xmltok"/>
|
| 46 |
+
<listOptionValue builtIn="false" value="xmlrpc_xmlparse"/>
|
| 47 |
+
<listOptionValue builtIn="false" value="xmlrpc_util++"/>
|
| 48 |
+
<listOptionValue builtIn="false" value="xmlrpc_util"/>
|
| 49 |
+
<listOptionValue builtIn="false" value="xmlrpc_server_abyss++"/>
|
| 50 |
+
<listOptionValue builtIn="false" value="xmlrpc_server_abyss"/>
|
| 51 |
+
<listOptionValue builtIn="false" value="xmlrpc_server++"/>
|
| 52 |
+
<listOptionValue builtIn="false" value="xmlrpc_server"/>
|
| 53 |
+
<listOptionValue builtIn="false" value="xmlrpc_abyss"/>
|
| 54 |
+
<listOptionValue builtIn="false" value="xmlrpc++"/>
|
| 55 |
+
<listOptionValue builtIn="false" value="xmlrpc"/>
|
| 56 |
+
<listOptionValue builtIn="false" value="OnDiskPt"/>
|
| 57 |
+
<listOptionValue builtIn="false" value="cmph"/>
|
| 58 |
+
<listOptionValue builtIn="false" value="search"/>
|
| 59 |
+
<listOptionValue builtIn="false" value="lm"/>
|
| 60 |
+
<listOptionValue builtIn="false" value="util"/>
|
| 61 |
+
<listOptionValue builtIn="false" value="boost_iostreams"/>
|
| 62 |
+
<listOptionValue builtIn="false" value="boost_serialization"/>
|
| 63 |
+
<listOptionValue builtIn="false" value="boost_system"/>
|
| 64 |
+
<listOptionValue builtIn="false" value="boost_thread"/>
|
| 65 |
+
<listOptionValue builtIn="false" value="boost_filesystem"/>
|
| 66 |
+
<listOptionValue builtIn="false" value="boost_program_options"/>
|
| 67 |
+
<listOptionValue builtIn="false" value="pthread"/>
|
| 68 |
+
<listOptionValue builtIn="false" value="z"/>
|
| 69 |
+
<listOptionValue builtIn="false" value="probingpt"/>
|
| 70 |
+
<listOptionValue builtIn="false" value="bz2"/>
|
| 71 |
+
<listOptionValue builtIn="false" value="dl"/>
|
| 72 |
+
<listOptionValue builtIn="false" value="rt"/>
|
| 73 |
+
</option>
|
| 74 |
+
<option id="gnu.cpp.link.option.paths.815001500" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths">
|
| 75 |
+
<listOptionValue builtIn="false" value=""${workspace_loc:}/../../boost/lib64""/>
|
| 76 |
+
<listOptionValue builtIn="false" value=""${workspace_loc:}/probingpt/Debug""/>
|
| 77 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../cmph/lib""/>
|
| 78 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../xmlrpc-c/lib""/>
|
| 79 |
+
<listOptionValue builtIn="false" value=""${workspace_loc:}/search/Debug""/>
|
| 80 |
+
<listOptionValue builtIn="false" value=""${workspace_loc:}/OnDiskPt/Debug""/>
|
| 81 |
+
<listOptionValue builtIn="false" value=""${workspace_loc:}/util/Debug""/>
|
| 82 |
+
<listOptionValue builtIn="false" value=""${workspace_loc:}/moses/Debug""/>
|
| 83 |
+
<listOptionValue builtIn="false" value=""${workspace_loc:}/lm/Debug""/>
|
| 84 |
+
<listOptionValue builtIn="false" value="/opt/local/lib"/>
|
| 85 |
+
</option>
|
| 86 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.2077999464" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input">
|
| 87 |
+
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
|
| 88 |
+
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
|
| 89 |
+
</inputType>
|
| 90 |
+
</tool>
|
| 91 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1309273058" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug">
|
| 92 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.1393504995" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 93 |
+
</tool>
|
| 94 |
+
</toolChain>
|
| 95 |
+
</folderInfo>
|
| 96 |
+
</configuration>
|
| 97 |
+
</storageModule>
|
| 98 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 99 |
+
</cconfiguration>
|
| 100 |
+
<cconfiguration id="cdt.managedbuild.config.gnu.exe.release.168814843">
|
| 101 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.168814843" moduleId="org.eclipse.cdt.core.settings" name="Release">
|
| 102 |
+
<externalSettings/>
|
| 103 |
+
<extensions>
|
| 104 |
+
<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 105 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 106 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 107 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 108 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 109 |
+
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 110 |
+
</extensions>
|
| 111 |
+
</storageModule>
|
| 112 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 113 |
+
<configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.168814843" name="Release" parent="cdt.managedbuild.config.gnu.exe.release">
|
| 114 |
+
<folderInfo id="cdt.managedbuild.config.gnu.exe.release.168814843." name="/" resourcePath="">
|
| 115 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.844577457" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release">
|
| 116 |
+
<targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.1635721038" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/>
|
| 117 |
+
<builder buildPath="${workspace_loc:/CreateOnDiskPt}/Release" id="cdt.managedbuild.target.gnu.builder.exe.release.361379130" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/>
|
| 118 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.base.799410017" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/>
|
| 119 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1404799808" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release">
|
| 120 |
+
<option id="gnu.cpp.compiler.exe.release.option.optimization.level.696270987" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/>
|
| 121 |
+
<option id="gnu.cpp.compiler.exe.release.option.debugging.level.1052942304" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/>
|
| 122 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.2139553528" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 123 |
+
</tool>
|
| 124 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1633770352" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release">
|
| 125 |
+
<option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1936692829" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
| 126 |
+
<option id="gnu.c.compiler.exe.release.option.debugging.level.2077864052" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.none" valueType="enumerated"/>
|
| 127 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1045097629" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 128 |
+
</tool>
|
| 129 |
+
<tool id="cdt.managedbuild.tool.gnu.c.linker.exe.release.455462639" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"/>
|
| 130 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.868037913" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release">
|
| 131 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1997666824" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input">
|
| 132 |
+
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
|
| 133 |
+
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
|
| 134 |
+
</inputType>
|
| 135 |
+
</tool>
|
| 136 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.552535001" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release">
|
| 137 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.546084937" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 138 |
+
</tool>
|
| 139 |
+
</toolChain>
|
| 140 |
+
</folderInfo>
|
| 141 |
+
</configuration>
|
| 142 |
+
</storageModule>
|
| 143 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 144 |
+
</cconfiguration>
|
| 145 |
+
</storageModule>
|
| 146 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 147 |
+
<project id="CreateOnDiskPt.cdt.managedbuild.target.gnu.exe.348559778" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/>
|
| 148 |
+
</storageModule>
|
| 149 |
+
<storageModule moduleId="scannerConfiguration">
|
| 150 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 151 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.168814843;cdt.managedbuild.config.gnu.exe.release.168814843.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1404799808;cdt.managedbuild.tool.gnu.cpp.compiler.input.2139553528">
|
| 152 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 153 |
+
</scannerConfigBuildInfo>
|
| 154 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.602770742;cdt.managedbuild.config.gnu.exe.debug.602770742.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.587301391;cdt.managedbuild.tool.gnu.c.compiler.input.1464765114">
|
| 155 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 156 |
+
</scannerConfigBuildInfo>
|
| 157 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.168814843;cdt.managedbuild.config.gnu.exe.release.168814843.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.1633770352;cdt.managedbuild.tool.gnu.c.compiler.input.1045097629">
|
| 158 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 159 |
+
</scannerConfigBuildInfo>
|
| 160 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.602770742;cdt.managedbuild.config.gnu.exe.debug.602770742.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.2008193341;cdt.managedbuild.tool.gnu.cpp.compiler.input.285185442">
|
| 161 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 162 |
+
</scannerConfigBuildInfo>
|
| 163 |
+
</storageModule>
|
| 164 |
+
<storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
|
| 165 |
+
<storageModule moduleId="refreshScope" versionNumber="2">
|
| 166 |
+
<configuration configurationName="Release">
|
| 167 |
+
<resource resourceType="PROJECT" workspacePath="/CreateOnDiskPt"/>
|
| 168 |
+
</configuration>
|
| 169 |
+
<configuration configurationName="Debug">
|
| 170 |
+
<resource resourceType="PROJECT" workspacePath="/CreateOnDiskPt"/>
|
| 171 |
+
</configuration>
|
| 172 |
+
</storageModule>
|
| 173 |
+
</cproject>
|
mosesdecoder/contrib/other-builds/CreateOnDiskPt/.project
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<projectDescription>
|
| 3 |
+
<name>CreateOnDiskPt</name>
|
| 4 |
+
<comment></comment>
|
| 5 |
+
<projects>
|
| 6 |
+
<project>lm</project>
|
| 7 |
+
<project>moses</project>
|
| 8 |
+
<project>OnDiskPt</project>
|
| 9 |
+
<project>search</project>
|
| 10 |
+
<project>util</project>
|
| 11 |
+
</projects>
|
| 12 |
+
<buildSpec>
|
| 13 |
+
<buildCommand>
|
| 14 |
+
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
|
| 15 |
+
<triggers>clean,full,incremental,</triggers>
|
| 16 |
+
<arguments>
|
| 17 |
+
</arguments>
|
| 18 |
+
</buildCommand>
|
| 19 |
+
<buildCommand>
|
| 20 |
+
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
|
| 21 |
+
<triggers>full,incremental,</triggers>
|
| 22 |
+
<arguments>
|
| 23 |
+
</arguments>
|
| 24 |
+
</buildCommand>
|
| 25 |
+
</buildSpec>
|
| 26 |
+
<natures>
|
| 27 |
+
<nature>org.eclipse.cdt.core.cnature</nature>
|
| 28 |
+
<nature>org.eclipse.cdt.core.ccnature</nature>
|
| 29 |
+
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
|
| 30 |
+
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
|
| 31 |
+
</natures>
|
| 32 |
+
<linkedResources>
|
| 33 |
+
<link>
|
| 34 |
+
<name>Main.cpp</name>
|
| 35 |
+
<type>1</type>
|
| 36 |
+
<locationURI>PARENT-3-PROJECT_LOC/OnDiskPt/Main.cpp</locationURI>
|
| 37 |
+
</link>
|
| 38 |
+
<link>
|
| 39 |
+
<name>Main.h</name>
|
| 40 |
+
<type>1</type>
|
| 41 |
+
<locationURI>PARENT-3-PROJECT_LOC/OnDiskPt/Main.h</locationURI>
|
| 42 |
+
</link>
|
| 43 |
+
</linkedResources>
|
| 44 |
+
</projectDescription>
|
mosesdecoder/contrib/other-builds/cmake/boost.example/main.cpp
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
#include <iostream>
|
| 3 |
+
#include <boost/locale.hpp>
|
| 4 |
+
#include <ctime>
|
| 5 |
+
|
| 6 |
+
using namespace std;
|
| 7 |
+
|
| 8 |
+
int main(int argc, char* argv[])
|
| 9 |
+
{
|
| 10 |
+
|
| 11 |
+
using namespace boost::locale;
|
| 12 |
+
using namespace std;
|
| 13 |
+
|
| 14 |
+
generator gen;
|
| 15 |
+
locale loc=gen("");
|
| 16 |
+
|
| 17 |
+
cout.imbue(loc);
|
| 18 |
+
|
| 19 |
+
cout << "Hello, World" << endl;
|
| 20 |
+
|
| 21 |
+
cout << "This is how we show currency in this locale " << as::currency << 103.34 << endl;
|
| 22 |
+
|
| 23 |
+
return 0;
|
| 24 |
+
}
|
mosesdecoder/contrib/other-builds/extract-ghkm/.project
ADDED
|
@@ -0,0 +1,140 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<projectDescription>
|
| 3 |
+
<name>extract-ghkm</name>
|
| 4 |
+
<comment></comment>
|
| 5 |
+
<projects>
|
| 6 |
+
<project>moses</project>
|
| 7 |
+
</projects>
|
| 8 |
+
<buildSpec>
|
| 9 |
+
<buildCommand>
|
| 10 |
+
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
|
| 11 |
+
<triggers>clean,full,incremental,</triggers>
|
| 12 |
+
<arguments>
|
| 13 |
+
</arguments>
|
| 14 |
+
</buildCommand>
|
| 15 |
+
<buildCommand>
|
| 16 |
+
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
|
| 17 |
+
<triggers>full,incremental,</triggers>
|
| 18 |
+
<arguments>
|
| 19 |
+
</arguments>
|
| 20 |
+
</buildCommand>
|
| 21 |
+
</buildSpec>
|
| 22 |
+
<natures>
|
| 23 |
+
<nature>org.eclipse.cdt.core.cnature</nature>
|
| 24 |
+
<nature>org.eclipse.cdt.core.ccnature</nature>
|
| 25 |
+
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
|
| 26 |
+
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
|
| 27 |
+
</natures>
|
| 28 |
+
<linkedResources>
|
| 29 |
+
<link>
|
| 30 |
+
<name>Hole.h</name>
|
| 31 |
+
<type>1</type>
|
| 32 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/Hole.h</locationURI>
|
| 33 |
+
</link>
|
| 34 |
+
<link>
|
| 35 |
+
<name>HoleCollection.cpp</name>
|
| 36 |
+
<type>1</type>
|
| 37 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/HoleCollection.cpp</locationURI>
|
| 38 |
+
</link>
|
| 39 |
+
<link>
|
| 40 |
+
<name>HoleCollection.h</name>
|
| 41 |
+
<type>1</type>
|
| 42 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/HoleCollection.h</locationURI>
|
| 43 |
+
</link>
|
| 44 |
+
<link>
|
| 45 |
+
<name>InputFileStream.cpp</name>
|
| 46 |
+
<type>1</type>
|
| 47 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/InputFileStream.cpp</locationURI>
|
| 48 |
+
</link>
|
| 49 |
+
<link>
|
| 50 |
+
<name>InputFileStream.h</name>
|
| 51 |
+
<type>1</type>
|
| 52 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/InputFileStream.h</locationURI>
|
| 53 |
+
</link>
|
| 54 |
+
<link>
|
| 55 |
+
<name>OutputFileStream.cpp</name>
|
| 56 |
+
<type>1</type>
|
| 57 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/OutputFileStream.cpp</locationURI>
|
| 58 |
+
</link>
|
| 59 |
+
<link>
|
| 60 |
+
<name>OutputFileStream.h</name>
|
| 61 |
+
<type>1</type>
|
| 62 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/OutputFileStream.h</locationURI>
|
| 63 |
+
</link>
|
| 64 |
+
<link>
|
| 65 |
+
<name>PhraseExtractionOptions.h</name>
|
| 66 |
+
<type>1</type>
|
| 67 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/PhraseExtractionOptions.h</locationURI>
|
| 68 |
+
</link>
|
| 69 |
+
<link>
|
| 70 |
+
<name>PhraseOrientation.cpp</name>
|
| 71 |
+
<type>1</type>
|
| 72 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/PhraseOrientation.cpp</locationURI>
|
| 73 |
+
</link>
|
| 74 |
+
<link>
|
| 75 |
+
<name>PhraseOrientation.h</name>
|
| 76 |
+
<type>1</type>
|
| 77 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/PhraseOrientation.h</locationURI>
|
| 78 |
+
</link>
|
| 79 |
+
<link>
|
| 80 |
+
<name>SentenceAlignment.cpp</name>
|
| 81 |
+
<type>1</type>
|
| 82 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SentenceAlignment.cpp</locationURI>
|
| 83 |
+
</link>
|
| 84 |
+
<link>
|
| 85 |
+
<name>SentenceAlignment.h</name>
|
| 86 |
+
<type>1</type>
|
| 87 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SentenceAlignment.h</locationURI>
|
| 88 |
+
</link>
|
| 89 |
+
<link>
|
| 90 |
+
<name>SentenceAlignmentWithSyntax.cpp</name>
|
| 91 |
+
<type>1</type>
|
| 92 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SentenceAlignmentWithSyntax.cpp</locationURI>
|
| 93 |
+
</link>
|
| 94 |
+
<link>
|
| 95 |
+
<name>SentenceAlignmentWithSyntax.h</name>
|
| 96 |
+
<type>1</type>
|
| 97 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SentenceAlignmentWithSyntax.h</locationURI>
|
| 98 |
+
</link>
|
| 99 |
+
<link>
|
| 100 |
+
<name>SyntaxNodeCollection.cpp</name>
|
| 101 |
+
<type>1</type>
|
| 102 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SyntaxNodeCollection.cpp</locationURI>
|
| 103 |
+
</link>
|
| 104 |
+
<link>
|
| 105 |
+
<name>SyntaxNodeCollection.h</name>
|
| 106 |
+
<type>1</type>
|
| 107 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SyntaxNodeCollection.h</locationURI>
|
| 108 |
+
</link>
|
| 109 |
+
<link>
|
| 110 |
+
<name>SyntaxTree.h</name>
|
| 111 |
+
<type>1</type>
|
| 112 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SyntaxTree.h</locationURI>
|
| 113 |
+
</link>
|
| 114 |
+
<link>
|
| 115 |
+
<name>XmlTree.cpp</name>
|
| 116 |
+
<type>1</type>
|
| 117 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/XmlTree.cpp</locationURI>
|
| 118 |
+
</link>
|
| 119 |
+
<link>
|
| 120 |
+
<name>XmlTree.h</name>
|
| 121 |
+
<type>1</type>
|
| 122 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/XmlTree.h</locationURI>
|
| 123 |
+
</link>
|
| 124 |
+
<link>
|
| 125 |
+
<name>extract-rules-main.cpp</name>
|
| 126 |
+
<type>1</type>
|
| 127 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/extract-rules-main.cpp</locationURI>
|
| 128 |
+
</link>
|
| 129 |
+
<link>
|
| 130 |
+
<name>tables-core.cpp</name>
|
| 131 |
+
<type>1</type>
|
| 132 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/tables-core.cpp</locationURI>
|
| 133 |
+
</link>
|
| 134 |
+
<link>
|
| 135 |
+
<name>tables-core.h</name>
|
| 136 |
+
<type>1</type>
|
| 137 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/tables-core.h</locationURI>
|
| 138 |
+
</link>
|
| 139 |
+
</linkedResources>
|
| 140 |
+
</projectDescription>
|
mosesdecoder/contrib/other-builds/extract/.cproject
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
| 2 |
+
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
|
| 3 |
+
<storageModule moduleId="org.eclipse.cdt.core.settings">
|
| 4 |
+
<cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.2119725657">
|
| 5 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.2119725657" moduleId="org.eclipse.cdt.core.settings" name="Debug">
|
| 6 |
+
<externalSettings/>
|
| 7 |
+
<extensions>
|
| 8 |
+
<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 9 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 10 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 11 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 12 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 13 |
+
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 14 |
+
</extensions>
|
| 15 |
+
</storageModule>
|
| 16 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 17 |
+
<configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.2119725657" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug">
|
| 18 |
+
<folderInfo id="cdt.managedbuild.config.gnu.exe.debug.2119725657." name="/" resourcePath="">
|
| 19 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1708444053" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug">
|
| 20 |
+
<targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.645190133" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/>
|
| 21 |
+
<builder buildPath="${workspace_loc:/extract}/Debug" id="cdt.managedbuild.target.gnu.builder.exe.debug.1816006533" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" parallelBuildOn="true" parallelizationNumber="optimal" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/>
|
| 22 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.base.876593881" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/>
|
| 23 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1859867372" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug">
|
| 24 |
+
<option id="gnu.cpp.compiler.exe.debug.option.optimization.level.1585316374" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/>
|
| 25 |
+
<option id="gnu.cpp.compiler.exe.debug.option.debugging.level.535775760" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/>
|
| 26 |
+
<option id="gnu.cpp.compiler.option.include.paths.874182289" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath">
|
| 27 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../boost/include""/>
|
| 28 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../..""/>
|
| 29 |
+
</option>
|
| 30 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1355287045" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 31 |
+
</tool>
|
| 32 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1202195555" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug">
|
| 33 |
+
<option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.1840757183" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
| 34 |
+
<option id="gnu.c.compiler.exe.debug.option.debugging.level.876682032" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.max" valueType="enumerated"/>
|
| 35 |
+
<option id="gnu.c.compiler.option.dialect.std.1297324451" superClass="gnu.c.compiler.option.dialect.std" useByScannerDiscovery="true" value="gnu.c.compiler.dialect.c11" valueType="enumerated"/>
|
| 36 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.676382830" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 37 |
+
</tool>
|
| 38 |
+
<tool id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.83617569" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"/>
|
| 39 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.943560690" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug">
|
| 40 |
+
<option id="gnu.cpp.link.option.libs.599256050" name="Libraries (-l)" superClass="gnu.cpp.link.option.libs" valueType="libs">
|
| 41 |
+
<listOptionValue builtIn="false" value="boost_iostreams"/>
|
| 42 |
+
<listOptionValue builtIn="false" value="z"/>
|
| 43 |
+
</option>
|
| 44 |
+
<option id="gnu.cpp.link.option.paths.1223834298" name="Library search path (-L)" superClass="gnu.cpp.link.option.paths" valueType="libPaths">
|
| 45 |
+
<listOptionValue builtIn="false" value=""/>
|
| 46 |
+
<listOptionValue builtIn="false" value=""${workspace_loc:}/../../boost/lib64""/>
|
| 47 |
+
</option>
|
| 48 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1129315792" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input">
|
| 49 |
+
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
|
| 50 |
+
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
|
| 51 |
+
</inputType>
|
| 52 |
+
</tool>
|
| 53 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.942430539" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug">
|
| 54 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.1676263707" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 55 |
+
</tool>
|
| 56 |
+
</toolChain>
|
| 57 |
+
</folderInfo>
|
| 58 |
+
</configuration>
|
| 59 |
+
</storageModule>
|
| 60 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 61 |
+
</cconfiguration>
|
| 62 |
+
<cconfiguration id="cdt.managedbuild.config.gnu.exe.release.1230189043">
|
| 63 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.1230189043" moduleId="org.eclipse.cdt.core.settings" name="Release">
|
| 64 |
+
<externalSettings/>
|
| 65 |
+
<extensions>
|
| 66 |
+
<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 67 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 68 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 69 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 70 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 71 |
+
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 72 |
+
</extensions>
|
| 73 |
+
</storageModule>
|
| 74 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 75 |
+
<configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.1230189043" name="Release" parent="cdt.managedbuild.config.gnu.exe.release">
|
| 76 |
+
<folderInfo id="cdt.managedbuild.config.gnu.exe.release.1230189043." name="/" resourcePath="">
|
| 77 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.280378247" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release">
|
| 78 |
+
<targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.1881910636" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/>
|
| 79 |
+
<builder buildPath="${workspace_loc:/extract}/Release" id="cdt.managedbuild.target.gnu.builder.exe.release.872962284" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/>
|
| 80 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.base.1342549060" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/>
|
| 81 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1229278587" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release">
|
| 82 |
+
<option id="gnu.cpp.compiler.exe.release.option.optimization.level.509799885" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/>
|
| 83 |
+
<option id="gnu.cpp.compiler.exe.release.option.debugging.level.682561415" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/>
|
| 84 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1043901368" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 85 |
+
</tool>
|
| 86 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1628542348" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release">
|
| 87 |
+
<option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1033362550" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
| 88 |
+
<option id="gnu.c.compiler.exe.release.option.debugging.level.429156793" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.none" valueType="enumerated"/>
|
| 89 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.389761516" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 90 |
+
</tool>
|
| 91 |
+
<tool id="cdt.managedbuild.tool.gnu.c.linker.exe.release.1299282565" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"/>
|
| 92 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.461289078" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release">
|
| 93 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1586085606" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input">
|
| 94 |
+
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
|
| 95 |
+
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
|
| 96 |
+
</inputType>
|
| 97 |
+
</tool>
|
| 98 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.1190745343" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release">
|
| 99 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.221147938" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 100 |
+
</tool>
|
| 101 |
+
</toolChain>
|
| 102 |
+
</folderInfo>
|
| 103 |
+
</configuration>
|
| 104 |
+
</storageModule>
|
| 105 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 106 |
+
</cconfiguration>
|
| 107 |
+
</storageModule>
|
| 108 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 109 |
+
<project id="extract.cdt.managedbuild.target.gnu.exe.1053550598" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/>
|
| 110 |
+
</storageModule>
|
| 111 |
+
<storageModule moduleId="scannerConfiguration">
|
| 112 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 113 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1230189043;cdt.managedbuild.config.gnu.exe.release.1230189043.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.1628542348;cdt.managedbuild.tool.gnu.c.compiler.input.389761516">
|
| 114 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 115 |
+
</scannerConfigBuildInfo>
|
| 116 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.2119725657;cdt.managedbuild.config.gnu.exe.debug.2119725657.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1202195555;cdt.managedbuild.tool.gnu.c.compiler.input.676382830">
|
| 117 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 118 |
+
</scannerConfigBuildInfo>
|
| 119 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1230189043;cdt.managedbuild.config.gnu.exe.release.1230189043.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1229278587;cdt.managedbuild.tool.gnu.cpp.compiler.input.1043901368">
|
| 120 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 121 |
+
</scannerConfigBuildInfo>
|
| 122 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.2119725657;cdt.managedbuild.config.gnu.exe.debug.2119725657.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1859867372;cdt.managedbuild.tool.gnu.cpp.compiler.input.1355287045">
|
| 123 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 124 |
+
</scannerConfigBuildInfo>
|
| 125 |
+
</storageModule>
|
| 126 |
+
<storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
|
| 127 |
+
<storageModule moduleId="refreshScope" versionNumber="2">
|
| 128 |
+
<configuration configurationName="Release">
|
| 129 |
+
<resource resourceType="PROJECT" workspacePath="/extract"/>
|
| 130 |
+
</configuration>
|
| 131 |
+
<configuration configurationName="Debug">
|
| 132 |
+
<resource resourceType="PROJECT" workspacePath="/extract"/>
|
| 133 |
+
</configuration>
|
| 134 |
+
</storageModule>
|
| 135 |
+
</cproject>
|
mosesdecoder/contrib/other-builds/extract/.project
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<projectDescription>
|
| 3 |
+
<name>extract</name>
|
| 4 |
+
<comment></comment>
|
| 5 |
+
<projects>
|
| 6 |
+
</projects>
|
| 7 |
+
<buildSpec>
|
| 8 |
+
<buildCommand>
|
| 9 |
+
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
|
| 10 |
+
<triggers>clean,full,incremental,</triggers>
|
| 11 |
+
<arguments>
|
| 12 |
+
</arguments>
|
| 13 |
+
</buildCommand>
|
| 14 |
+
<buildCommand>
|
| 15 |
+
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
|
| 16 |
+
<triggers>full,incremental,</triggers>
|
| 17 |
+
<arguments>
|
| 18 |
+
</arguments>
|
| 19 |
+
</buildCommand>
|
| 20 |
+
</buildSpec>
|
| 21 |
+
<natures>
|
| 22 |
+
<nature>org.eclipse.cdt.core.cnature</nature>
|
| 23 |
+
<nature>org.eclipse.cdt.core.ccnature</nature>
|
| 24 |
+
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
|
| 25 |
+
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
|
| 26 |
+
</natures>
|
| 27 |
+
<linkedResources>
|
| 28 |
+
<link>
|
| 29 |
+
<name>InputFileStream.cpp</name>
|
| 30 |
+
<type>1</type>
|
| 31 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/InputFileStream.cpp</locationURI>
|
| 32 |
+
</link>
|
| 33 |
+
<link>
|
| 34 |
+
<name>InputFileStream.h</name>
|
| 35 |
+
<type>1</type>
|
| 36 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/InputFileStream.h</locationURI>
|
| 37 |
+
</link>
|
| 38 |
+
<link>
|
| 39 |
+
<name>OutputFileStream.cpp</name>
|
| 40 |
+
<type>1</type>
|
| 41 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/OutputFileStream.cpp</locationURI>
|
| 42 |
+
</link>
|
| 43 |
+
<link>
|
| 44 |
+
<name>OutputFileStream.h</name>
|
| 45 |
+
<type>1</type>
|
| 46 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/OutputFileStream.h</locationURI>
|
| 47 |
+
</link>
|
| 48 |
+
<link>
|
| 49 |
+
<name>SentenceAlignment.cpp</name>
|
| 50 |
+
<type>1</type>
|
| 51 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SentenceAlignment.cpp</locationURI>
|
| 52 |
+
</link>
|
| 53 |
+
<link>
|
| 54 |
+
<name>SentenceAlignment.h</name>
|
| 55 |
+
<type>1</type>
|
| 56 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SentenceAlignment.h</locationURI>
|
| 57 |
+
</link>
|
| 58 |
+
<link>
|
| 59 |
+
<name>SentenceAlignmentWithSyntax.cpp</name>
|
| 60 |
+
<type>1</type>
|
| 61 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SentenceAlignmentWithSyntax.cpp</locationURI>
|
| 62 |
+
</link>
|
| 63 |
+
<link>
|
| 64 |
+
<name>SentenceAlignmentWithSyntax.h</name>
|
| 65 |
+
<type>1</type>
|
| 66 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SentenceAlignmentWithSyntax.h</locationURI>
|
| 67 |
+
</link>
|
| 68 |
+
<link>
|
| 69 |
+
<name>SyntaxNodeCollection.cpp</name>
|
| 70 |
+
<type>1</type>
|
| 71 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SyntaxNodeCollection.cpp</locationURI>
|
| 72 |
+
</link>
|
| 73 |
+
<link>
|
| 74 |
+
<name>SyntaxNodeCollection.h</name>
|
| 75 |
+
<type>1</type>
|
| 76 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/SyntaxNodeCollection.h</locationURI>
|
| 77 |
+
</link>
|
| 78 |
+
<link>
|
| 79 |
+
<name>XmlException.h</name>
|
| 80 |
+
<type>1</type>
|
| 81 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/XmlException.h</locationURI>
|
| 82 |
+
</link>
|
| 83 |
+
<link>
|
| 84 |
+
<name>XmlTree.cpp</name>
|
| 85 |
+
<type>1</type>
|
| 86 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/XmlTree.cpp</locationURI>
|
| 87 |
+
</link>
|
| 88 |
+
<link>
|
| 89 |
+
<name>XmlTree.h</name>
|
| 90 |
+
<type>1</type>
|
| 91 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/XmlTree.h</locationURI>
|
| 92 |
+
</link>
|
| 93 |
+
<link>
|
| 94 |
+
<name>extract-main.cpp</name>
|
| 95 |
+
<type>1</type>
|
| 96 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/extract-main.cpp</locationURI>
|
| 97 |
+
</link>
|
| 98 |
+
<link>
|
| 99 |
+
<name>tables-core.cpp</name>
|
| 100 |
+
<type>1</type>
|
| 101 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/tables-core.cpp</locationURI>
|
| 102 |
+
</link>
|
| 103 |
+
<link>
|
| 104 |
+
<name>tables-core.h</name>
|
| 105 |
+
<type>1</type>
|
| 106 |
+
<locationURI>PARENT-3-PROJECT_LOC/phrase-extract/tables-core.h</locationURI>
|
| 107 |
+
</link>
|
| 108 |
+
</linkedResources>
|
| 109 |
+
</projectDescription>
|
mosesdecoder/contrib/other-builds/extract/extract.project
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<CodeLite_Project Name="extract" InternalType="Console">
|
| 3 |
+
<Plugins>
|
| 4 |
+
<Plugin Name="qmake">
|
| 5 |
+
<![CDATA[00010001N0005Debug000000000000]]>
|
| 6 |
+
</Plugin>
|
| 7 |
+
<Plugin Name="CMakePlugin">
|
| 8 |
+
<![CDATA[[{
|
| 9 |
+
"name": "Debug",
|
| 10 |
+
"enabled": false,
|
| 11 |
+
"buildDirectory": "build",
|
| 12 |
+
"sourceDirectory": "$(ProjectPath)",
|
| 13 |
+
"generator": "",
|
| 14 |
+
"buildType": "",
|
| 15 |
+
"arguments": [],
|
| 16 |
+
"parentProject": ""
|
| 17 |
+
}]]]>
|
| 18 |
+
</Plugin>
|
| 19 |
+
</Plugins>
|
| 20 |
+
<Description/>
|
| 21 |
+
<Dependencies/>
|
| 22 |
+
<VirtualDirectory Name="src">
|
| 23 |
+
<File Name="../../../phrase-extract/extract-main.cpp"/>
|
| 24 |
+
<File Name="../../../phrase-extract/InputFileStream.cpp"/>
|
| 25 |
+
<File Name="../../../phrase-extract/InputFileStream.h"/>
|
| 26 |
+
<File Name="../../../phrase-extract/OutputFileStream.cpp"/>
|
| 27 |
+
<File Name="../../../phrase-extract/OutputFileStream.h"/>
|
| 28 |
+
<File Name="../../../phrase-extract/SentenceAlignment.cpp"/>
|
| 29 |
+
<File Name="../../../phrase-extract/SentenceAlignment.h"/>
|
| 30 |
+
<File Name="../../../phrase-extract/tables-core.cpp"/>
|
| 31 |
+
<File Name="../../../phrase-extract/tables-core.h"/>
|
| 32 |
+
</VirtualDirectory>
|
| 33 |
+
<Dependencies Name="Debug"/>
|
| 34 |
+
<Dependencies Name="Release"/>
|
| 35 |
+
<Settings Type="Executable">
|
| 36 |
+
<GlobalSettings>
|
| 37 |
+
<Compiler Options="" C_Options="" Assembler="">
|
| 38 |
+
<IncludePath Value="."/>
|
| 39 |
+
</Compiler>
|
| 40 |
+
<Linker Options="">
|
| 41 |
+
<LibraryPath Value="."/>
|
| 42 |
+
</Linker>
|
| 43 |
+
<ResourceCompiler Options=""/>
|
| 44 |
+
</GlobalSettings>
|
| 45 |
+
<Configuration Name="Debug" CompilerType="GCC" DebuggerType="LLDB Debugger" Type="Executable" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append">
|
| 46 |
+
<Compiler Options="-g;-O0;-Wall" C_Options="-g;-O0;-Wall" Assembler="" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" PCHFlags="" PCHFlagsPolicy="0">
|
| 47 |
+
<IncludePath Value="."/>
|
| 48 |
+
<IncludePath Value="../../../"/>
|
| 49 |
+
<IncludePath Value="../../../boost/include"/>
|
| 50 |
+
</Compiler>
|
| 51 |
+
<Linker Options="" Required="yes">
|
| 52 |
+
<LibraryPath Value="../../../boost/lib64"/>
|
| 53 |
+
<Library Value="boost_iostreams"/>
|
| 54 |
+
<Library Value="z"/>
|
| 55 |
+
</Linker>
|
| 56 |
+
<ResourceCompiler Options="" Required="no"/>
|
| 57 |
+
<General OutputFile="$(IntermediateDirectory)/$(ProjectName)" IntermediateDirectory="./Debug" Command="./$(ProjectName)" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="yes" IsGUIProgram="no" IsEnabled="yes"/>
|
| 58 |
+
<Environment EnvVarSetName="<Use Defaults>" DbgSetName="<Use Defaults>">
|
| 59 |
+
<![CDATA[]]>
|
| 60 |
+
</Environment>
|
| 61 |
+
<Debugger IsRemote="no" RemoteHostName="" RemoteHostPort="" DebuggerPath="" IsExtended="no">
|
| 62 |
+
<DebuggerSearchPaths/>
|
| 63 |
+
<PostConnectCommands/>
|
| 64 |
+
<StartupCommands/>
|
| 65 |
+
</Debugger>
|
| 66 |
+
<PreBuild/>
|
| 67 |
+
<PostBuild/>
|
| 68 |
+
<CustomBuild Enabled="no">
|
| 69 |
+
<RebuildCommand/>
|
| 70 |
+
<CleanCommand/>
|
| 71 |
+
<BuildCommand/>
|
| 72 |
+
<PreprocessFileCommand/>
|
| 73 |
+
<SingleFileCommand/>
|
| 74 |
+
<MakefileGenerationCommand/>
|
| 75 |
+
<ThirdPartyToolName>None</ThirdPartyToolName>
|
| 76 |
+
<WorkingDirectory/>
|
| 77 |
+
</CustomBuild>
|
| 78 |
+
<AdditionalRules>
|
| 79 |
+
<CustomPostBuild/>
|
| 80 |
+
<CustomPreBuild/>
|
| 81 |
+
</AdditionalRules>
|
| 82 |
+
<Completion EnableCpp11="no" EnableCpp14="no">
|
| 83 |
+
<ClangCmpFlagsC/>
|
| 84 |
+
<ClangCmpFlags/>
|
| 85 |
+
<ClangPP/>
|
| 86 |
+
<SearchPaths/>
|
| 87 |
+
</Completion>
|
| 88 |
+
</Configuration>
|
| 89 |
+
<Configuration Name="Release" CompilerType="GCC" DebuggerType="LLDB Debugger" Type="Executable" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append">
|
| 90 |
+
<Compiler Options="-O2;-Wall" C_Options="-O2;-Wall" Assembler="" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" PCHFlags="" PCHFlagsPolicy="0">
|
| 91 |
+
<IncludePath Value="."/>
|
| 92 |
+
<Preprocessor Value="NDEBUG"/>
|
| 93 |
+
</Compiler>
|
| 94 |
+
<Linker Options="" Required="yes"/>
|
| 95 |
+
<ResourceCompiler Options="" Required="no"/>
|
| 96 |
+
<General OutputFile="$(IntermediateDirectory)/$(ProjectName)" IntermediateDirectory="./Release" Command="./$(ProjectName)" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="yes" IsGUIProgram="no" IsEnabled="yes"/>
|
| 97 |
+
<Environment EnvVarSetName="<Use Defaults>" DbgSetName="<Use Defaults>">
|
| 98 |
+
<![CDATA[]]>
|
| 99 |
+
</Environment>
|
| 100 |
+
<Debugger IsRemote="no" RemoteHostName="" RemoteHostPort="" DebuggerPath="" IsExtended="no">
|
| 101 |
+
<DebuggerSearchPaths/>
|
| 102 |
+
<PostConnectCommands/>
|
| 103 |
+
<StartupCommands/>
|
| 104 |
+
</Debugger>
|
| 105 |
+
<PreBuild/>
|
| 106 |
+
<PostBuild/>
|
| 107 |
+
<CustomBuild Enabled="no">
|
| 108 |
+
<RebuildCommand/>
|
| 109 |
+
<CleanCommand/>
|
| 110 |
+
<BuildCommand/>
|
| 111 |
+
<PreprocessFileCommand/>
|
| 112 |
+
<SingleFileCommand/>
|
| 113 |
+
<MakefileGenerationCommand/>
|
| 114 |
+
<ThirdPartyToolName>None</ThirdPartyToolName>
|
| 115 |
+
<WorkingDirectory/>
|
| 116 |
+
</CustomBuild>
|
| 117 |
+
<AdditionalRules>
|
| 118 |
+
<CustomPostBuild/>
|
| 119 |
+
<CustomPreBuild/>
|
| 120 |
+
</AdditionalRules>
|
| 121 |
+
<Completion EnableCpp11="no" EnableCpp14="no">
|
| 122 |
+
<ClangCmpFlagsC/>
|
| 123 |
+
<ClangCmpFlags/>
|
| 124 |
+
<ClangPP/>
|
| 125 |
+
<SearchPaths/>
|
| 126 |
+
</Completion>
|
| 127 |
+
</Configuration>
|
| 128 |
+
</Settings>
|
| 129 |
+
</CodeLite_Project>
|
mosesdecoder/contrib/other-builds/lm/.cproject
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
| 2 |
+
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
|
| 3 |
+
<storageModule moduleId="org.eclipse.cdt.core.settings">
|
| 4 |
+
<cconfiguration id="cdt.managedbuild.config.gnu.macosx.exe.debug.351042750">
|
| 5 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.macosx.exe.debug.351042750" moduleId="org.eclipse.cdt.core.settings" name="Debug">
|
| 6 |
+
<externalSettings>
|
| 7 |
+
<externalSetting>
|
| 8 |
+
<entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/lm"/>
|
| 9 |
+
<entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/lm/Debug"/>
|
| 10 |
+
<entry flags="RESOLVED" kind="libraryFile" name="lm" srcPrefixMapping="" srcRootPath=""/>
|
| 11 |
+
</externalSetting>
|
| 12 |
+
</externalSettings>
|
| 13 |
+
<extensions>
|
| 14 |
+
<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 15 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 16 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 17 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 18 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 19 |
+
</extensions>
|
| 20 |
+
</storageModule>
|
| 21 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 22 |
+
<configuration artifactExtension="a" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.staticLib" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.staticLib,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.macosx.exe.debug.351042750" name="Debug" parent="cdt.managedbuild.config.gnu.macosx.exe.debug">
|
| 23 |
+
<folderInfo id="cdt.managedbuild.config.gnu.macosx.exe.debug.351042750." name="/" resourcePath="">
|
| 24 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.base.466736338" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.base">
|
| 25 |
+
<targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.GNU_ELF" id="cdt.managedbuild.target.gnu.platform.base.575622862" name="Debug Platform" osList="linux,hpux,aix,qnx" superClass="cdt.managedbuild.target.gnu.platform.base"/>
|
| 26 |
+
<builder buildPath="${workspace_loc:/lm}/Debug" id="cdt.managedbuild.target.gnu.builder.base.1207623358" name="Gnu Make Builder.Debug" parallelBuildOn="true" parallelizationNumber="optimal" superClass="cdt.managedbuild.target.gnu.builder.base"/>
|
| 27 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.base.1252942710" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/>
|
| 28 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.base.1191873216" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.base">
|
| 29 |
+
<option id="gnu.cpp.compiler.option.include.paths.419600143" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath">
|
| 30 |
+
<listOptionValue builtIn="false" value="/opt/local/include"/>
|
| 31 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../boost/include""/>
|
| 32 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../""/>
|
| 33 |
+
</option>
|
| 34 |
+
<option id="gnu.cpp.compiler.option.preprocessor.def.52887884" superClass="gnu.cpp.compiler.option.preprocessor.def" valueType="definedSymbols">
|
| 35 |
+
<listOptionValue builtIn="false" value="HAVE_BOOST"/>
|
| 36 |
+
<listOptionValue builtIn="false" value="KENLM_MAX_ORDER=7"/>
|
| 37 |
+
<listOptionValue builtIn="false" value="MAX_NUM_FACTORS=4"/>
|
| 38 |
+
<listOptionValue builtIn="false" value="TRACE_ENABLE"/>
|
| 39 |
+
</option>
|
| 40 |
+
<option id="gnu.cpp.compiler.option.optimization.level.545804354" superClass="gnu.cpp.compiler.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/>
|
| 41 |
+
<option id="gnu.cpp.compiler.option.debugging.level.947271092" superClass="gnu.cpp.compiler.option.debugging.level" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/>
|
| 42 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.73126958" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 43 |
+
</tool>
|
| 44 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.base.963190445" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.base">
|
| 45 |
+
<option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.option.optimization.level.708245996" superClass="gnu.c.compiler.option.optimization.level" valueType="enumerated"/>
|
| 46 |
+
<option id="gnu.c.compiler.option.debugging.level.1433982476" superClass="gnu.c.compiler.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/>
|
| 47 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.100461087" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 48 |
+
</tool>
|
| 49 |
+
<tool id="cdt.managedbuild.tool.gnu.c.linker.base.646836632" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.base"/>
|
| 50 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.linker.base.1400322204" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.base"/>
|
| 51 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.base.1669010297" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.base">
|
| 52 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.1426573444" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 53 |
+
</tool>
|
| 54 |
+
</toolChain>
|
| 55 |
+
</folderInfo>
|
| 56 |
+
<sourceEntries>
|
| 57 |
+
<entry excluding="builder/corpus_count_test.cc|builder/adjust_counts_test.cc|wrappers|left_test.cc|model_test.cc" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
| 58 |
+
</sourceEntries>
|
| 59 |
+
</configuration>
|
| 60 |
+
</storageModule>
|
| 61 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 62 |
+
</cconfiguration>
|
| 63 |
+
<cconfiguration id="cdt.managedbuild.config.macosx.exe.release.203229648">
|
| 64 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.macosx.exe.release.203229648" moduleId="org.eclipse.cdt.core.settings" name="Release">
|
| 65 |
+
<externalSettings/>
|
| 66 |
+
<extensions>
|
| 67 |
+
<extension id="org.eclipse.cdt.core.MachO64" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 68 |
+
<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 69 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 70 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 71 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 72 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 73 |
+
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 74 |
+
</extensions>
|
| 75 |
+
</storageModule>
|
| 76 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 77 |
+
<configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.macosx.exe.release.203229648" name="Release" parent="cdt.managedbuild.config.macosx.exe.release">
|
| 78 |
+
<folderInfo id="cdt.managedbuild.config.macosx.exe.release.203229648." name="/" resourcePath="">
|
| 79 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.macosx.exe.release.1942852701" name="MacOSX GCC" superClass="cdt.managedbuild.toolchain.gnu.macosx.exe.release">
|
| 80 |
+
<targetPlatform binaryParser="org.eclipse.cdt.core.MachO64;org.eclipse.cdt.core.ELF" id="cdt.managedbuild.target.gnu.platform.macosx.exe.release.2107180060" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.macosx.exe.release"/>
|
| 81 |
+
<builder buildPath="${workspace_loc:/lm/Release}" id="cdt.managedbuild.target.gnu.builder.macosx.exe.release.127652112" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.macosx.exe.release"/>
|
| 82 |
+
<tool id="cdt.managedbuild.tool.macosx.c.linker.macosx.exe.release.1668850519" name="MacOS X C Linker" superClass="cdt.managedbuild.tool.macosx.c.linker.macosx.exe.release"/>
|
| 83 |
+
<tool id="cdt.managedbuild.tool.macosx.cpp.linker.macosx.exe.release.934899611" name="MacOS X C++ Linker" superClass="cdt.managedbuild.tool.macosx.cpp.linker.macosx.exe.release">
|
| 84 |
+
<inputType id="cdt.managedbuild.tool.macosx.cpp.linker.input.794276660" superClass="cdt.managedbuild.tool.macosx.cpp.linker.input">
|
| 85 |
+
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
|
| 86 |
+
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
|
| 87 |
+
</inputType>
|
| 88 |
+
</tool>
|
| 89 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.macosx.exe.release.362272521" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.macosx.exe.release">
|
| 90 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.370659018" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 91 |
+
</tool>
|
| 92 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.macosx.base.2103660404" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.macosx.base"/>
|
| 93 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.macosx.exe.release.2026817795" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.macosx.exe.release">
|
| 94 |
+
<option id="gnu.cpp.compiler.macosx.exe.release.option.optimization.level.1671568858" name="Optimization Level" superClass="gnu.cpp.compiler.macosx.exe.release.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/>
|
| 95 |
+
<option id="gnu.cpp.compiler.macosx.exe.release.option.debugging.level.230723898" name="Debug Level" superClass="gnu.cpp.compiler.macosx.exe.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/>
|
| 96 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1058671602" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 97 |
+
</tool>
|
| 98 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.macosx.exe.release.990116990" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.macosx.exe.release">
|
| 99 |
+
<option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.macosx.exe.release.option.optimization.level.1934130159" name="Optimization Level" superClass="gnu.c.compiler.macosx.exe.release.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
| 100 |
+
<option id="gnu.c.compiler.macosx.exe.release.option.debugging.level.1848737807" name="Debug Level" superClass="gnu.c.compiler.macosx.exe.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.none" valueType="enumerated"/>
|
| 101 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1294441742" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 102 |
+
</tool>
|
| 103 |
+
</toolChain>
|
| 104 |
+
</folderInfo>
|
| 105 |
+
</configuration>
|
| 106 |
+
</storageModule>
|
| 107 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 108 |
+
</cconfiguration>
|
| 109 |
+
</storageModule>
|
| 110 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 111 |
+
<project id="lm.cdt.managedbuild.target.macosx.exe.1399596076" name="Executable" projectType="cdt.managedbuild.target.macosx.exe"/>
|
| 112 |
+
</storageModule>
|
| 113 |
+
<storageModule moduleId="scannerConfiguration">
|
| 114 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 115 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.macosx.exe.debug.351042750;cdt.managedbuild.config.gnu.macosx.exe.debug.351042750.;cdt.managedbuild.tool.gnu.cpp.compiler.macosx.exe.debug.1024092140;cdt.managedbuild.tool.gnu.cpp.compiler.input.20502600">
|
| 116 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/>
|
| 117 |
+
</scannerConfigBuildInfo>
|
| 118 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.macosx.exe.release.203229648;cdt.managedbuild.config.macosx.exe.release.203229648.;cdt.managedbuild.tool.gnu.c.compiler.macosx.exe.release.990116990;cdt.managedbuild.tool.gnu.c.compiler.input.1294441742">
|
| 119 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/>
|
| 120 |
+
</scannerConfigBuildInfo>
|
| 121 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.macosx.exe.debug.351042750;cdt.managedbuild.config.gnu.macosx.exe.debug.351042750.;cdt.managedbuild.tool.gnu.c.compiler.macosx.exe.debug.34201722;cdt.managedbuild.tool.gnu.c.compiler.input.1028526865">
|
| 122 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/>
|
| 123 |
+
</scannerConfigBuildInfo>
|
| 124 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.macosx.exe.release.203229648;cdt.managedbuild.config.macosx.exe.release.203229648.;cdt.managedbuild.tool.gnu.cpp.compiler.macosx.exe.release.2026817795;cdt.managedbuild.tool.gnu.cpp.compiler.input.1058671602">
|
| 125 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/>
|
| 126 |
+
</scannerConfigBuildInfo>
|
| 127 |
+
</storageModule>
|
| 128 |
+
<storageModule moduleId="refreshScope" versionNumber="2">
|
| 129 |
+
<configuration configurationName="Release">
|
| 130 |
+
<resource resourceType="PROJECT" workspacePath="/lm"/>
|
| 131 |
+
</configuration>
|
| 132 |
+
<configuration configurationName="Debug">
|
| 133 |
+
<resource resourceType="PROJECT" workspacePath="/lm"/>
|
| 134 |
+
</configuration>
|
| 135 |
+
</storageModule>
|
| 136 |
+
<storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>
|
| 137 |
+
<storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
|
| 138 |
+
</cproject>
|
mosesdecoder/contrib/other-builds/lm/.project
ADDED
|
@@ -0,0 +1,1380 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<projectDescription>
|
| 3 |
+
<name>lm</name>
|
| 4 |
+
<comment></comment>
|
| 5 |
+
<projects>
|
| 6 |
+
</projects>
|
| 7 |
+
<buildSpec>
|
| 8 |
+
<buildCommand>
|
| 9 |
+
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
|
| 10 |
+
<triggers>clean,full,incremental,</triggers>
|
| 11 |
+
<arguments>
|
| 12 |
+
<dictionary>
|
| 13 |
+
<key>?name?</key>
|
| 14 |
+
<value></value>
|
| 15 |
+
</dictionary>
|
| 16 |
+
<dictionary>
|
| 17 |
+
<key>org.eclipse.cdt.make.core.append_environment</key>
|
| 18 |
+
<value>true</value>
|
| 19 |
+
</dictionary>
|
| 20 |
+
<dictionary>
|
| 21 |
+
<key>org.eclipse.cdt.make.core.autoBuildTarget</key>
|
| 22 |
+
<value>all</value>
|
| 23 |
+
</dictionary>
|
| 24 |
+
<dictionary>
|
| 25 |
+
<key>org.eclipse.cdt.make.core.buildArguments</key>
|
| 26 |
+
<value>-j3</value>
|
| 27 |
+
</dictionary>
|
| 28 |
+
<dictionary>
|
| 29 |
+
<key>org.eclipse.cdt.make.core.buildCommand</key>
|
| 30 |
+
<value>make</value>
|
| 31 |
+
</dictionary>
|
| 32 |
+
<dictionary>
|
| 33 |
+
<key>org.eclipse.cdt.make.core.buildLocation</key>
|
| 34 |
+
<value>${workspace_loc:/lm/Debug}</value>
|
| 35 |
+
</dictionary>
|
| 36 |
+
<dictionary>
|
| 37 |
+
<key>org.eclipse.cdt.make.core.cleanBuildTarget</key>
|
| 38 |
+
<value>clean</value>
|
| 39 |
+
</dictionary>
|
| 40 |
+
<dictionary>
|
| 41 |
+
<key>org.eclipse.cdt.make.core.contents</key>
|
| 42 |
+
<value>org.eclipse.cdt.make.core.activeConfigSettings</value>
|
| 43 |
+
</dictionary>
|
| 44 |
+
<dictionary>
|
| 45 |
+
<key>org.eclipse.cdt.make.core.enableAutoBuild</key>
|
| 46 |
+
<value>false</value>
|
| 47 |
+
</dictionary>
|
| 48 |
+
<dictionary>
|
| 49 |
+
<key>org.eclipse.cdt.make.core.enableCleanBuild</key>
|
| 50 |
+
<value>true</value>
|
| 51 |
+
</dictionary>
|
| 52 |
+
<dictionary>
|
| 53 |
+
<key>org.eclipse.cdt.make.core.enableFullBuild</key>
|
| 54 |
+
<value>true</value>
|
| 55 |
+
</dictionary>
|
| 56 |
+
<dictionary>
|
| 57 |
+
<key>org.eclipse.cdt.make.core.fullBuildTarget</key>
|
| 58 |
+
<value>all</value>
|
| 59 |
+
</dictionary>
|
| 60 |
+
<dictionary>
|
| 61 |
+
<key>org.eclipse.cdt.make.core.stopOnError</key>
|
| 62 |
+
<value>true</value>
|
| 63 |
+
</dictionary>
|
| 64 |
+
<dictionary>
|
| 65 |
+
<key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key>
|
| 66 |
+
<value>true</value>
|
| 67 |
+
</dictionary>
|
| 68 |
+
</arguments>
|
| 69 |
+
</buildCommand>
|
| 70 |
+
<buildCommand>
|
| 71 |
+
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
|
| 72 |
+
<triggers>full,incremental,</triggers>
|
| 73 |
+
<arguments>
|
| 74 |
+
</arguments>
|
| 75 |
+
</buildCommand>
|
| 76 |
+
</buildSpec>
|
| 77 |
+
<natures>
|
| 78 |
+
<nature>org.eclipse.cdt.core.cnature</nature>
|
| 79 |
+
<nature>org.eclipse.cdt.core.ccnature</nature>
|
| 80 |
+
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
|
| 81 |
+
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
|
| 82 |
+
</natures>
|
| 83 |
+
<linkedResources>
|
| 84 |
+
<link>
|
| 85 |
+
<name>.DS_Store</name>
|
| 86 |
+
<type>1</type>
|
| 87 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/.DS_Store</locationURI>
|
| 88 |
+
</link>
|
| 89 |
+
<link>
|
| 90 |
+
<name>CMakeLists.txt</name>
|
| 91 |
+
<type>1</type>
|
| 92 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/CMakeLists.txt</locationURI>
|
| 93 |
+
</link>
|
| 94 |
+
<link>
|
| 95 |
+
<name>COPYING</name>
|
| 96 |
+
<type>1</type>
|
| 97 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/COPYING</locationURI>
|
| 98 |
+
</link>
|
| 99 |
+
<link>
|
| 100 |
+
<name>COPYING.LESSER</name>
|
| 101 |
+
<type>1</type>
|
| 102 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/COPYING.LESSER</locationURI>
|
| 103 |
+
</link>
|
| 104 |
+
<link>
|
| 105 |
+
<name>Jamfile</name>
|
| 106 |
+
<type>1</type>
|
| 107 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/Jamfile</locationURI>
|
| 108 |
+
</link>
|
| 109 |
+
<link>
|
| 110 |
+
<name>LICENSE</name>
|
| 111 |
+
<type>1</type>
|
| 112 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/LICENSE</locationURI>
|
| 113 |
+
</link>
|
| 114 |
+
<link>
|
| 115 |
+
<name>README</name>
|
| 116 |
+
<type>1</type>
|
| 117 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/README</locationURI>
|
| 118 |
+
</link>
|
| 119 |
+
<link>
|
| 120 |
+
<name>bhiksha.cc</name>
|
| 121 |
+
<type>1</type>
|
| 122 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bhiksha.cc</locationURI>
|
| 123 |
+
</link>
|
| 124 |
+
<link>
|
| 125 |
+
<name>bhiksha.hh</name>
|
| 126 |
+
<type>1</type>
|
| 127 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bhiksha.hh</locationURI>
|
| 128 |
+
</link>
|
| 129 |
+
<link>
|
| 130 |
+
<name>bin</name>
|
| 131 |
+
<type>2</type>
|
| 132 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 133 |
+
</link>
|
| 134 |
+
<link>
|
| 135 |
+
<name>binary_format.cc</name>
|
| 136 |
+
<type>1</type>
|
| 137 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/binary_format.cc</locationURI>
|
| 138 |
+
</link>
|
| 139 |
+
<link>
|
| 140 |
+
<name>binary_format.hh</name>
|
| 141 |
+
<type>1</type>
|
| 142 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/binary_format.hh</locationURI>
|
| 143 |
+
</link>
|
| 144 |
+
<link>
|
| 145 |
+
<name>blank.hh</name>
|
| 146 |
+
<type>1</type>
|
| 147 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/blank.hh</locationURI>
|
| 148 |
+
</link>
|
| 149 |
+
<link>
|
| 150 |
+
<name>build_binary</name>
|
| 151 |
+
<type>1</type>
|
| 152 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/build_binary</locationURI>
|
| 153 |
+
</link>
|
| 154 |
+
<link>
|
| 155 |
+
<name>build_binary_main.cc</name>
|
| 156 |
+
<type>1</type>
|
| 157 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/build_binary_main.cc</locationURI>
|
| 158 |
+
</link>
|
| 159 |
+
<link>
|
| 160 |
+
<name>builder</name>
|
| 161 |
+
<type>2</type>
|
| 162 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 163 |
+
</link>
|
| 164 |
+
<link>
|
| 165 |
+
<name>clean.sh</name>
|
| 166 |
+
<type>1</type>
|
| 167 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/clean.sh</locationURI>
|
| 168 |
+
</link>
|
| 169 |
+
<link>
|
| 170 |
+
<name>compile.sh</name>
|
| 171 |
+
<type>1</type>
|
| 172 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/compile.sh</locationURI>
|
| 173 |
+
</link>
|
| 174 |
+
<link>
|
| 175 |
+
<name>config.cc</name>
|
| 176 |
+
<type>1</type>
|
| 177 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/config.cc</locationURI>
|
| 178 |
+
</link>
|
| 179 |
+
<link>
|
| 180 |
+
<name>config.hh</name>
|
| 181 |
+
<type>1</type>
|
| 182 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/config.hh</locationURI>
|
| 183 |
+
</link>
|
| 184 |
+
<link>
|
| 185 |
+
<name>enumerate_vocab.hh</name>
|
| 186 |
+
<type>1</type>
|
| 187 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/enumerate_vocab.hh</locationURI>
|
| 188 |
+
</link>
|
| 189 |
+
<link>
|
| 190 |
+
<name>facade.hh</name>
|
| 191 |
+
<type>1</type>
|
| 192 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/facade.hh</locationURI>
|
| 193 |
+
</link>
|
| 194 |
+
<link>
|
| 195 |
+
<name>filter</name>
|
| 196 |
+
<type>2</type>
|
| 197 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 198 |
+
</link>
|
| 199 |
+
<link>
|
| 200 |
+
<name>fragment_main.cc</name>
|
| 201 |
+
<type>1</type>
|
| 202 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/fragment_main.cc</locationURI>
|
| 203 |
+
</link>
|
| 204 |
+
<link>
|
| 205 |
+
<name>left.hh</name>
|
| 206 |
+
<type>1</type>
|
| 207 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/left.hh</locationURI>
|
| 208 |
+
</link>
|
| 209 |
+
<link>
|
| 210 |
+
<name>left_test.cc</name>
|
| 211 |
+
<type>1</type>
|
| 212 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/left_test.cc</locationURI>
|
| 213 |
+
</link>
|
| 214 |
+
<link>
|
| 215 |
+
<name>libkenlm.dylib</name>
|
| 216 |
+
<type>1</type>
|
| 217 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/libkenlm.dylib</locationURI>
|
| 218 |
+
</link>
|
| 219 |
+
<link>
|
| 220 |
+
<name>libkenutil.dylib</name>
|
| 221 |
+
<type>1</type>
|
| 222 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/libkenutil.dylib</locationURI>
|
| 223 |
+
</link>
|
| 224 |
+
<link>
|
| 225 |
+
<name>lm_exception.cc</name>
|
| 226 |
+
<type>1</type>
|
| 227 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/lm_exception.cc</locationURI>
|
| 228 |
+
</link>
|
| 229 |
+
<link>
|
| 230 |
+
<name>lm_exception.hh</name>
|
| 231 |
+
<type>1</type>
|
| 232 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/lm_exception.hh</locationURI>
|
| 233 |
+
</link>
|
| 234 |
+
<link>
|
| 235 |
+
<name>max_order.hh</name>
|
| 236 |
+
<type>1</type>
|
| 237 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/max_order.hh</locationURI>
|
| 238 |
+
</link>
|
| 239 |
+
<link>
|
| 240 |
+
<name>model.cc</name>
|
| 241 |
+
<type>1</type>
|
| 242 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/model.cc</locationURI>
|
| 243 |
+
</link>
|
| 244 |
+
<link>
|
| 245 |
+
<name>model.hh</name>
|
| 246 |
+
<type>1</type>
|
| 247 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/model.hh</locationURI>
|
| 248 |
+
</link>
|
| 249 |
+
<link>
|
| 250 |
+
<name>model_test.cc</name>
|
| 251 |
+
<type>1</type>
|
| 252 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/model_test.cc</locationURI>
|
| 253 |
+
</link>
|
| 254 |
+
<link>
|
| 255 |
+
<name>model_type.hh</name>
|
| 256 |
+
<type>1</type>
|
| 257 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/model_type.hh</locationURI>
|
| 258 |
+
</link>
|
| 259 |
+
<link>
|
| 260 |
+
<name>ngram_query.hh</name>
|
| 261 |
+
<type>1</type>
|
| 262 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/ngram_query.hh</locationURI>
|
| 263 |
+
</link>
|
| 264 |
+
<link>
|
| 265 |
+
<name>partial.hh</name>
|
| 266 |
+
<type>1</type>
|
| 267 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/partial.hh</locationURI>
|
| 268 |
+
</link>
|
| 269 |
+
<link>
|
| 270 |
+
<name>partial_test.cc</name>
|
| 271 |
+
<type>1</type>
|
| 272 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/partial_test.cc</locationURI>
|
| 273 |
+
</link>
|
| 274 |
+
<link>
|
| 275 |
+
<name>quantize.cc</name>
|
| 276 |
+
<type>1</type>
|
| 277 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/quantize.cc</locationURI>
|
| 278 |
+
</link>
|
| 279 |
+
<link>
|
| 280 |
+
<name>quantize.hh</name>
|
| 281 |
+
<type>1</type>
|
| 282 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/quantize.hh</locationURI>
|
| 283 |
+
</link>
|
| 284 |
+
<link>
|
| 285 |
+
<name>query</name>
|
| 286 |
+
<type>1</type>
|
| 287 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/query</locationURI>
|
| 288 |
+
</link>
|
| 289 |
+
<link>
|
| 290 |
+
<name>query_main.cc</name>
|
| 291 |
+
<type>1</type>
|
| 292 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/query_main.cc</locationURI>
|
| 293 |
+
</link>
|
| 294 |
+
<link>
|
| 295 |
+
<name>read_arpa.cc</name>
|
| 296 |
+
<type>1</type>
|
| 297 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/read_arpa.cc</locationURI>
|
| 298 |
+
</link>
|
| 299 |
+
<link>
|
| 300 |
+
<name>read_arpa.hh</name>
|
| 301 |
+
<type>1</type>
|
| 302 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/read_arpa.hh</locationURI>
|
| 303 |
+
</link>
|
| 304 |
+
<link>
|
| 305 |
+
<name>return.hh</name>
|
| 306 |
+
<type>1</type>
|
| 307 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/return.hh</locationURI>
|
| 308 |
+
</link>
|
| 309 |
+
<link>
|
| 310 |
+
<name>search_hashed.cc</name>
|
| 311 |
+
<type>1</type>
|
| 312 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/search_hashed.cc</locationURI>
|
| 313 |
+
</link>
|
| 314 |
+
<link>
|
| 315 |
+
<name>search_hashed.hh</name>
|
| 316 |
+
<type>1</type>
|
| 317 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/search_hashed.hh</locationURI>
|
| 318 |
+
</link>
|
| 319 |
+
<link>
|
| 320 |
+
<name>search_trie.cc</name>
|
| 321 |
+
<type>1</type>
|
| 322 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/search_trie.cc</locationURI>
|
| 323 |
+
</link>
|
| 324 |
+
<link>
|
| 325 |
+
<name>search_trie.hh</name>
|
| 326 |
+
<type>1</type>
|
| 327 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/search_trie.hh</locationURI>
|
| 328 |
+
</link>
|
| 329 |
+
<link>
|
| 330 |
+
<name>sizes.cc</name>
|
| 331 |
+
<type>1</type>
|
| 332 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/sizes.cc</locationURI>
|
| 333 |
+
</link>
|
| 334 |
+
<link>
|
| 335 |
+
<name>sizes.hh</name>
|
| 336 |
+
<type>1</type>
|
| 337 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/sizes.hh</locationURI>
|
| 338 |
+
</link>
|
| 339 |
+
<link>
|
| 340 |
+
<name>state.hh</name>
|
| 341 |
+
<type>1</type>
|
| 342 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/state.hh</locationURI>
|
| 343 |
+
</link>
|
| 344 |
+
<link>
|
| 345 |
+
<name>test.arpa</name>
|
| 346 |
+
<type>1</type>
|
| 347 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/test.arpa</locationURI>
|
| 348 |
+
</link>
|
| 349 |
+
<link>
|
| 350 |
+
<name>test.sh</name>
|
| 351 |
+
<type>1</type>
|
| 352 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/test.sh</locationURI>
|
| 353 |
+
</link>
|
| 354 |
+
<link>
|
| 355 |
+
<name>test_nounk.arpa</name>
|
| 356 |
+
<type>1</type>
|
| 357 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/test_nounk.arpa</locationURI>
|
| 358 |
+
</link>
|
| 359 |
+
<link>
|
| 360 |
+
<name>trie.cc</name>
|
| 361 |
+
<type>1</type>
|
| 362 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/trie.cc</locationURI>
|
| 363 |
+
</link>
|
| 364 |
+
<link>
|
| 365 |
+
<name>trie.hh</name>
|
| 366 |
+
<type>1</type>
|
| 367 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/trie.hh</locationURI>
|
| 368 |
+
</link>
|
| 369 |
+
<link>
|
| 370 |
+
<name>trie_sort.cc</name>
|
| 371 |
+
<type>1</type>
|
| 372 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/trie_sort.cc</locationURI>
|
| 373 |
+
</link>
|
| 374 |
+
<link>
|
| 375 |
+
<name>trie_sort.hh</name>
|
| 376 |
+
<type>1</type>
|
| 377 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/trie_sort.hh</locationURI>
|
| 378 |
+
</link>
|
| 379 |
+
<link>
|
| 380 |
+
<name>value.hh</name>
|
| 381 |
+
<type>1</type>
|
| 382 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/value.hh</locationURI>
|
| 383 |
+
</link>
|
| 384 |
+
<link>
|
| 385 |
+
<name>value_build.cc</name>
|
| 386 |
+
<type>1</type>
|
| 387 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/value_build.cc</locationURI>
|
| 388 |
+
</link>
|
| 389 |
+
<link>
|
| 390 |
+
<name>value_build.hh</name>
|
| 391 |
+
<type>1</type>
|
| 392 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/value_build.hh</locationURI>
|
| 393 |
+
</link>
|
| 394 |
+
<link>
|
| 395 |
+
<name>virtual_interface.cc</name>
|
| 396 |
+
<type>1</type>
|
| 397 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/virtual_interface.cc</locationURI>
|
| 398 |
+
</link>
|
| 399 |
+
<link>
|
| 400 |
+
<name>virtual_interface.hh</name>
|
| 401 |
+
<type>1</type>
|
| 402 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/virtual_interface.hh</locationURI>
|
| 403 |
+
</link>
|
| 404 |
+
<link>
|
| 405 |
+
<name>vocab.cc</name>
|
| 406 |
+
<type>1</type>
|
| 407 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/vocab.cc</locationURI>
|
| 408 |
+
</link>
|
| 409 |
+
<link>
|
| 410 |
+
<name>vocab.hh</name>
|
| 411 |
+
<type>1</type>
|
| 412 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/vocab.hh</locationURI>
|
| 413 |
+
</link>
|
| 414 |
+
<link>
|
| 415 |
+
<name>weights.hh</name>
|
| 416 |
+
<type>1</type>
|
| 417 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/weights.hh</locationURI>
|
| 418 |
+
</link>
|
| 419 |
+
<link>
|
| 420 |
+
<name>word_index.hh</name>
|
| 421 |
+
<type>1</type>
|
| 422 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/word_index.hh</locationURI>
|
| 423 |
+
</link>
|
| 424 |
+
<link>
|
| 425 |
+
<name>wrappers</name>
|
| 426 |
+
<type>2</type>
|
| 427 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 428 |
+
</link>
|
| 429 |
+
<link>
|
| 430 |
+
<name>bin/clang-darwin-4.2.1</name>
|
| 431 |
+
<type>2</type>
|
| 432 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 433 |
+
</link>
|
| 434 |
+
<link>
|
| 435 |
+
<name>bin/darwin-4.2.1</name>
|
| 436 |
+
<type>2</type>
|
| 437 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 438 |
+
</link>
|
| 439 |
+
<link>
|
| 440 |
+
<name>bin/left_test.test</name>
|
| 441 |
+
<type>2</type>
|
| 442 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 443 |
+
</link>
|
| 444 |
+
<link>
|
| 445 |
+
<name>bin/model_test.test</name>
|
| 446 |
+
<type>2</type>
|
| 447 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 448 |
+
</link>
|
| 449 |
+
<link>
|
| 450 |
+
<name>bin/order.log</name>
|
| 451 |
+
<type>1</type>
|
| 452 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/order.log</locationURI>
|
| 453 |
+
</link>
|
| 454 |
+
<link>
|
| 455 |
+
<name>bin/partial_test.test</name>
|
| 456 |
+
<type>2</type>
|
| 457 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 458 |
+
</link>
|
| 459 |
+
<link>
|
| 460 |
+
<name>builder/Jamfile</name>
|
| 461 |
+
<type>1</type>
|
| 462 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/Jamfile</locationURI>
|
| 463 |
+
</link>
|
| 464 |
+
<link>
|
| 465 |
+
<name>builder/README.md</name>
|
| 466 |
+
<type>1</type>
|
| 467 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/README.md</locationURI>
|
| 468 |
+
</link>
|
| 469 |
+
<link>
|
| 470 |
+
<name>builder/TODO</name>
|
| 471 |
+
<type>1</type>
|
| 472 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/TODO</locationURI>
|
| 473 |
+
</link>
|
| 474 |
+
<link>
|
| 475 |
+
<name>builder/adjust_counts.cc</name>
|
| 476 |
+
<type>1</type>
|
| 477 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/adjust_counts.cc</locationURI>
|
| 478 |
+
</link>
|
| 479 |
+
<link>
|
| 480 |
+
<name>builder/adjust_counts.hh</name>
|
| 481 |
+
<type>1</type>
|
| 482 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/adjust_counts.hh</locationURI>
|
| 483 |
+
</link>
|
| 484 |
+
<link>
|
| 485 |
+
<name>builder/adjust_counts_test.cc</name>
|
| 486 |
+
<type>1</type>
|
| 487 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/adjust_counts_test.cc</locationURI>
|
| 488 |
+
</link>
|
| 489 |
+
<link>
|
| 490 |
+
<name>builder/bin</name>
|
| 491 |
+
<type>2</type>
|
| 492 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 493 |
+
</link>
|
| 494 |
+
<link>
|
| 495 |
+
<name>builder/corpus_count.cc</name>
|
| 496 |
+
<type>1</type>
|
| 497 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/corpus_count.cc</locationURI>
|
| 498 |
+
</link>
|
| 499 |
+
<link>
|
| 500 |
+
<name>builder/corpus_count.hh</name>
|
| 501 |
+
<type>1</type>
|
| 502 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/corpus_count.hh</locationURI>
|
| 503 |
+
</link>
|
| 504 |
+
<link>
|
| 505 |
+
<name>builder/corpus_count_test.cc</name>
|
| 506 |
+
<type>1</type>
|
| 507 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/corpus_count_test.cc</locationURI>
|
| 508 |
+
</link>
|
| 509 |
+
<link>
|
| 510 |
+
<name>builder/discount.hh</name>
|
| 511 |
+
<type>1</type>
|
| 512 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/discount.hh</locationURI>
|
| 513 |
+
</link>
|
| 514 |
+
<link>
|
| 515 |
+
<name>builder/dump_counts_main.cc</name>
|
| 516 |
+
<type>1</type>
|
| 517 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/dump_counts_main.cc</locationURI>
|
| 518 |
+
</link>
|
| 519 |
+
<link>
|
| 520 |
+
<name>builder/hash_gamma.hh</name>
|
| 521 |
+
<type>1</type>
|
| 522 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/hash_gamma.hh</locationURI>
|
| 523 |
+
</link>
|
| 524 |
+
<link>
|
| 525 |
+
<name>builder/header_info.hh</name>
|
| 526 |
+
<type>1</type>
|
| 527 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/header_info.hh</locationURI>
|
| 528 |
+
</link>
|
| 529 |
+
<link>
|
| 530 |
+
<name>builder/initial_probabilities.cc</name>
|
| 531 |
+
<type>1</type>
|
| 532 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/initial_probabilities.cc</locationURI>
|
| 533 |
+
</link>
|
| 534 |
+
<link>
|
| 535 |
+
<name>builder/initial_probabilities.hh</name>
|
| 536 |
+
<type>1</type>
|
| 537 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/initial_probabilities.hh</locationURI>
|
| 538 |
+
</link>
|
| 539 |
+
<link>
|
| 540 |
+
<name>builder/interpolate.cc</name>
|
| 541 |
+
<type>1</type>
|
| 542 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/interpolate.cc</locationURI>
|
| 543 |
+
</link>
|
| 544 |
+
<link>
|
| 545 |
+
<name>builder/interpolate.hh</name>
|
| 546 |
+
<type>1</type>
|
| 547 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/interpolate.hh</locationURI>
|
| 548 |
+
</link>
|
| 549 |
+
<link>
|
| 550 |
+
<name>builder/lmplz_main.cc</name>
|
| 551 |
+
<type>1</type>
|
| 552 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/lmplz_main.cc</locationURI>
|
| 553 |
+
</link>
|
| 554 |
+
<link>
|
| 555 |
+
<name>builder/pipeline.cc</name>
|
| 556 |
+
<type>1</type>
|
| 557 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/pipeline.cc</locationURI>
|
| 558 |
+
</link>
|
| 559 |
+
<link>
|
| 560 |
+
<name>builder/pipeline.hh</name>
|
| 561 |
+
<type>1</type>
|
| 562 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/pipeline.hh</locationURI>
|
| 563 |
+
</link>
|
| 564 |
+
<link>
|
| 565 |
+
<name>filter/Jamfile</name>
|
| 566 |
+
<type>1</type>
|
| 567 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/Jamfile</locationURI>
|
| 568 |
+
</link>
|
| 569 |
+
<link>
|
| 570 |
+
<name>filter/arpa_io.cc</name>
|
| 571 |
+
<type>1</type>
|
| 572 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/arpa_io.cc</locationURI>
|
| 573 |
+
</link>
|
| 574 |
+
<link>
|
| 575 |
+
<name>filter/arpa_io.hh</name>
|
| 576 |
+
<type>1</type>
|
| 577 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/arpa_io.hh</locationURI>
|
| 578 |
+
</link>
|
| 579 |
+
<link>
|
| 580 |
+
<name>filter/bin</name>
|
| 581 |
+
<type>2</type>
|
| 582 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 583 |
+
</link>
|
| 584 |
+
<link>
|
| 585 |
+
<name>filter/count_io.hh</name>
|
| 586 |
+
<type>1</type>
|
| 587 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/count_io.hh</locationURI>
|
| 588 |
+
</link>
|
| 589 |
+
<link>
|
| 590 |
+
<name>filter/filter_main.cc</name>
|
| 591 |
+
<type>1</type>
|
| 592 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/filter_main.cc</locationURI>
|
| 593 |
+
</link>
|
| 594 |
+
<link>
|
| 595 |
+
<name>filter/format.hh</name>
|
| 596 |
+
<type>1</type>
|
| 597 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/format.hh</locationURI>
|
| 598 |
+
</link>
|
| 599 |
+
<link>
|
| 600 |
+
<name>filter/phrase.cc</name>
|
| 601 |
+
<type>1</type>
|
| 602 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/phrase.cc</locationURI>
|
| 603 |
+
</link>
|
| 604 |
+
<link>
|
| 605 |
+
<name>filter/phrase.hh</name>
|
| 606 |
+
<type>1</type>
|
| 607 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/phrase.hh</locationURI>
|
| 608 |
+
</link>
|
| 609 |
+
<link>
|
| 610 |
+
<name>filter/phrase_table_vocab_main.cc</name>
|
| 611 |
+
<type>1</type>
|
| 612 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/phrase_table_vocab_main.cc</locationURI>
|
| 613 |
+
</link>
|
| 614 |
+
<link>
|
| 615 |
+
<name>filter/thread.hh</name>
|
| 616 |
+
<type>1</type>
|
| 617 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/thread.hh</locationURI>
|
| 618 |
+
</link>
|
| 619 |
+
<link>
|
| 620 |
+
<name>filter/vocab.cc</name>
|
| 621 |
+
<type>1</type>
|
| 622 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/vocab.cc</locationURI>
|
| 623 |
+
</link>
|
| 624 |
+
<link>
|
| 625 |
+
<name>filter/vocab.hh</name>
|
| 626 |
+
<type>1</type>
|
| 627 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/vocab.hh</locationURI>
|
| 628 |
+
</link>
|
| 629 |
+
<link>
|
| 630 |
+
<name>filter/wrapper.hh</name>
|
| 631 |
+
<type>1</type>
|
| 632 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/wrapper.hh</locationURI>
|
| 633 |
+
</link>
|
| 634 |
+
<link>
|
| 635 |
+
<name>wrappers/README</name>
|
| 636 |
+
<type>1</type>
|
| 637 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/wrappers/README</locationURI>
|
| 638 |
+
</link>
|
| 639 |
+
<link>
|
| 640 |
+
<name>wrappers/nplm.cc</name>
|
| 641 |
+
<type>1</type>
|
| 642 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/wrappers/nplm.cc</locationURI>
|
| 643 |
+
</link>
|
| 644 |
+
<link>
|
| 645 |
+
<name>wrappers/nplm.hh</name>
|
| 646 |
+
<type>1</type>
|
| 647 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/wrappers/nplm.hh</locationURI>
|
| 648 |
+
</link>
|
| 649 |
+
<link>
|
| 650 |
+
<name>bin/clang-darwin-4.2.1/release</name>
|
| 651 |
+
<type>2</type>
|
| 652 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 653 |
+
</link>
|
| 654 |
+
<link>
|
| 655 |
+
<name>bin/darwin-4.2.1/release</name>
|
| 656 |
+
<type>2</type>
|
| 657 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 658 |
+
</link>
|
| 659 |
+
<link>
|
| 660 |
+
<name>bin/left_test.test/clang-darwin-4.2.1</name>
|
| 661 |
+
<type>2</type>
|
| 662 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 663 |
+
</link>
|
| 664 |
+
<link>
|
| 665 |
+
<name>bin/left_test.test/darwin-4.2.1</name>
|
| 666 |
+
<type>2</type>
|
| 667 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 668 |
+
</link>
|
| 669 |
+
<link>
|
| 670 |
+
<name>bin/model_test.test/clang-darwin-4.2.1</name>
|
| 671 |
+
<type>2</type>
|
| 672 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 673 |
+
</link>
|
| 674 |
+
<link>
|
| 675 |
+
<name>bin/model_test.test/darwin-4.2.1</name>
|
| 676 |
+
<type>2</type>
|
| 677 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 678 |
+
</link>
|
| 679 |
+
<link>
|
| 680 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1</name>
|
| 681 |
+
<type>2</type>
|
| 682 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 683 |
+
</link>
|
| 684 |
+
<link>
|
| 685 |
+
<name>bin/partial_test.test/darwin-4.2.1</name>
|
| 686 |
+
<type>2</type>
|
| 687 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 688 |
+
</link>
|
| 689 |
+
<link>
|
| 690 |
+
<name>builder/bin/clang-darwin-4.2.1</name>
|
| 691 |
+
<type>2</type>
|
| 692 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 693 |
+
</link>
|
| 694 |
+
<link>
|
| 695 |
+
<name>builder/bin/darwin-4.2.1</name>
|
| 696 |
+
<type>2</type>
|
| 697 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 698 |
+
</link>
|
| 699 |
+
<link>
|
| 700 |
+
<name>filter/bin/clang-darwin-4.2.1</name>
|
| 701 |
+
<type>2</type>
|
| 702 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 703 |
+
</link>
|
| 704 |
+
<link>
|
| 705 |
+
<name>filter/bin/darwin-4.2.1</name>
|
| 706 |
+
<type>2</type>
|
| 707 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 708 |
+
</link>
|
| 709 |
+
<link>
|
| 710 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on</name>
|
| 711 |
+
<type>2</type>
|
| 712 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 713 |
+
</link>
|
| 714 |
+
<link>
|
| 715 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on</name>
|
| 716 |
+
<type>2</type>
|
| 717 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 718 |
+
</link>
|
| 719 |
+
<link>
|
| 720 |
+
<name>bin/left_test.test/clang-darwin-4.2.1/release</name>
|
| 721 |
+
<type>2</type>
|
| 722 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 723 |
+
</link>
|
| 724 |
+
<link>
|
| 725 |
+
<name>bin/left_test.test/darwin-4.2.1/release</name>
|
| 726 |
+
<type>2</type>
|
| 727 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 728 |
+
</link>
|
| 729 |
+
<link>
|
| 730 |
+
<name>bin/model_test.test/clang-darwin-4.2.1/release</name>
|
| 731 |
+
<type>2</type>
|
| 732 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 733 |
+
</link>
|
| 734 |
+
<link>
|
| 735 |
+
<name>bin/model_test.test/darwin-4.2.1/release</name>
|
| 736 |
+
<type>2</type>
|
| 737 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 738 |
+
</link>
|
| 739 |
+
<link>
|
| 740 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1/release</name>
|
| 741 |
+
<type>2</type>
|
| 742 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 743 |
+
</link>
|
| 744 |
+
<link>
|
| 745 |
+
<name>bin/partial_test.test/darwin-4.2.1/release</name>
|
| 746 |
+
<type>2</type>
|
| 747 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 748 |
+
</link>
|
| 749 |
+
<link>
|
| 750 |
+
<name>builder/bin/clang-darwin-4.2.1/release</name>
|
| 751 |
+
<type>2</type>
|
| 752 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 753 |
+
</link>
|
| 754 |
+
<link>
|
| 755 |
+
<name>builder/bin/darwin-4.2.1/release</name>
|
| 756 |
+
<type>2</type>
|
| 757 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 758 |
+
</link>
|
| 759 |
+
<link>
|
| 760 |
+
<name>filter/bin/clang-darwin-4.2.1/release</name>
|
| 761 |
+
<type>2</type>
|
| 762 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 763 |
+
</link>
|
| 764 |
+
<link>
|
| 765 |
+
<name>filter/bin/darwin-4.2.1/release</name>
|
| 766 |
+
<type>2</type>
|
| 767 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 768 |
+
</link>
|
| 769 |
+
<link>
|
| 770 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 771 |
+
<type>2</type>
|
| 772 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 773 |
+
</link>
|
| 774 |
+
<link>
|
| 775 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 776 |
+
<type>2</type>
|
| 777 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 778 |
+
</link>
|
| 779 |
+
<link>
|
| 780 |
+
<name>bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on</name>
|
| 781 |
+
<type>2</type>
|
| 782 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 783 |
+
</link>
|
| 784 |
+
<link>
|
| 785 |
+
<name>bin/left_test.test/darwin-4.2.1/release/debug-symbols-on</name>
|
| 786 |
+
<type>2</type>
|
| 787 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 788 |
+
</link>
|
| 789 |
+
<link>
|
| 790 |
+
<name>bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on</name>
|
| 791 |
+
<type>2</type>
|
| 792 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 793 |
+
</link>
|
| 794 |
+
<link>
|
| 795 |
+
<name>bin/model_test.test/darwin-4.2.1/release/debug-symbols-on</name>
|
| 796 |
+
<type>2</type>
|
| 797 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 798 |
+
</link>
|
| 799 |
+
<link>
|
| 800 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on</name>
|
| 801 |
+
<type>2</type>
|
| 802 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 803 |
+
</link>
|
| 804 |
+
<link>
|
| 805 |
+
<name>bin/partial_test.test/darwin-4.2.1/release/debug-symbols-on</name>
|
| 806 |
+
<type>2</type>
|
| 807 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 808 |
+
</link>
|
| 809 |
+
<link>
|
| 810 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on</name>
|
| 811 |
+
<type>2</type>
|
| 812 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 813 |
+
</link>
|
| 814 |
+
<link>
|
| 815 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on</name>
|
| 816 |
+
<type>2</type>
|
| 817 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 818 |
+
</link>
|
| 819 |
+
<link>
|
| 820 |
+
<name>filter/bin/clang-darwin-4.2.1/release/debug-symbols-on</name>
|
| 821 |
+
<type>2</type>
|
| 822 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 823 |
+
</link>
|
| 824 |
+
<link>
|
| 825 |
+
<name>filter/bin/darwin-4.2.1/release/debug-symbols-on</name>
|
| 826 |
+
<type>2</type>
|
| 827 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 828 |
+
</link>
|
| 829 |
+
<link>
|
| 830 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 831 |
+
<type>2</type>
|
| 832 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 833 |
+
</link>
|
| 834 |
+
<link>
|
| 835 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 836 |
+
<type>2</type>
|
| 837 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 838 |
+
</link>
|
| 839 |
+
<link>
|
| 840 |
+
<name>bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 841 |
+
<type>2</type>
|
| 842 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 843 |
+
</link>
|
| 844 |
+
<link>
|
| 845 |
+
<name>bin/left_test.test/darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 846 |
+
<type>2</type>
|
| 847 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 848 |
+
</link>
|
| 849 |
+
<link>
|
| 850 |
+
<name>bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 851 |
+
<type>2</type>
|
| 852 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 853 |
+
</link>
|
| 854 |
+
<link>
|
| 855 |
+
<name>bin/model_test.test/darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 856 |
+
<type>2</type>
|
| 857 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 858 |
+
</link>
|
| 859 |
+
<link>
|
| 860 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 861 |
+
<type>2</type>
|
| 862 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 863 |
+
</link>
|
| 864 |
+
<link>
|
| 865 |
+
<name>bin/partial_test.test/darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 866 |
+
<type>2</type>
|
| 867 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 868 |
+
</link>
|
| 869 |
+
<link>
|
| 870 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 871 |
+
<type>2</type>
|
| 872 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 873 |
+
</link>
|
| 874 |
+
<link>
|
| 875 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 876 |
+
<type>2</type>
|
| 877 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 878 |
+
</link>
|
| 879 |
+
<link>
|
| 880 |
+
<name>filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 881 |
+
<type>2</type>
|
| 882 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 883 |
+
</link>
|
| 884 |
+
<link>
|
| 885 |
+
<name>filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static</name>
|
| 886 |
+
<type>2</type>
|
| 887 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 888 |
+
</link>
|
| 889 |
+
<link>
|
| 890 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/bhiksha.o</name>
|
| 891 |
+
<type>1</type>
|
| 892 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/bhiksha.o</locationURI>
|
| 893 |
+
</link>
|
| 894 |
+
<link>
|
| 895 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/binary_format.o</name>
|
| 896 |
+
<type>1</type>
|
| 897 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/binary_format.o</locationURI>
|
| 898 |
+
</link>
|
| 899 |
+
<link>
|
| 900 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/build_binary</name>
|
| 901 |
+
<type>1</type>
|
| 902 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/build_binary</locationURI>
|
| 903 |
+
</link>
|
| 904 |
+
<link>
|
| 905 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/build_binary_main.o</name>
|
| 906 |
+
<type>1</type>
|
| 907 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/build_binary_main.o</locationURI>
|
| 908 |
+
</link>
|
| 909 |
+
<link>
|
| 910 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/config.o</name>
|
| 911 |
+
<type>1</type>
|
| 912 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/config.o</locationURI>
|
| 913 |
+
</link>
|
| 914 |
+
<link>
|
| 915 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/fragment</name>
|
| 916 |
+
<type>1</type>
|
| 917 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/fragment</locationURI>
|
| 918 |
+
</link>
|
| 919 |
+
<link>
|
| 920 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/fragment_main.o</name>
|
| 921 |
+
<type>1</type>
|
| 922 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/fragment_main.o</locationURI>
|
| 923 |
+
</link>
|
| 924 |
+
<link>
|
| 925 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lm_exception.o</name>
|
| 926 |
+
<type>1</type>
|
| 927 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lm_exception.o</locationURI>
|
| 928 |
+
</link>
|
| 929 |
+
<link>
|
| 930 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model.o</name>
|
| 931 |
+
<type>1</type>
|
| 932 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model.o</locationURI>
|
| 933 |
+
</link>
|
| 934 |
+
<link>
|
| 935 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/quantize.o</name>
|
| 936 |
+
<type>1</type>
|
| 937 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/quantize.o</locationURI>
|
| 938 |
+
</link>
|
| 939 |
+
<link>
|
| 940 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/query</name>
|
| 941 |
+
<type>1</type>
|
| 942 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/query</locationURI>
|
| 943 |
+
</link>
|
| 944 |
+
<link>
|
| 945 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/query_main.o</name>
|
| 946 |
+
<type>1</type>
|
| 947 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/query_main.o</locationURI>
|
| 948 |
+
</link>
|
| 949 |
+
<link>
|
| 950 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/read_arpa.o</name>
|
| 951 |
+
<type>1</type>
|
| 952 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/read_arpa.o</locationURI>
|
| 953 |
+
</link>
|
| 954 |
+
<link>
|
| 955 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/search_hashed.o</name>
|
| 956 |
+
<type>1</type>
|
| 957 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/search_hashed.o</locationURI>
|
| 958 |
+
</link>
|
| 959 |
+
<link>
|
| 960 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/search_trie.o</name>
|
| 961 |
+
<type>1</type>
|
| 962 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/search_trie.o</locationURI>
|
| 963 |
+
</link>
|
| 964 |
+
<link>
|
| 965 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/sizes.o</name>
|
| 966 |
+
<type>1</type>
|
| 967 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/sizes.o</locationURI>
|
| 968 |
+
</link>
|
| 969 |
+
<link>
|
| 970 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/trie.o</name>
|
| 971 |
+
<type>1</type>
|
| 972 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/trie.o</locationURI>
|
| 973 |
+
</link>
|
| 974 |
+
<link>
|
| 975 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/trie_sort.o</name>
|
| 976 |
+
<type>1</type>
|
| 977 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/trie_sort.o</locationURI>
|
| 978 |
+
</link>
|
| 979 |
+
<link>
|
| 980 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/value_build.o</name>
|
| 981 |
+
<type>1</type>
|
| 982 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/value_build.o</locationURI>
|
| 983 |
+
</link>
|
| 984 |
+
<link>
|
| 985 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/virtual_interface.o</name>
|
| 986 |
+
<type>1</type>
|
| 987 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/virtual_interface.o</locationURI>
|
| 988 |
+
</link>
|
| 989 |
+
<link>
|
| 990 |
+
<name>bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/vocab.o</name>
|
| 991 |
+
<type>1</type>
|
| 992 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/vocab.o</locationURI>
|
| 993 |
+
</link>
|
| 994 |
+
<link>
|
| 995 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/bhiksha.o</name>
|
| 996 |
+
<type>1</type>
|
| 997 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/bhiksha.o</locationURI>
|
| 998 |
+
</link>
|
| 999 |
+
<link>
|
| 1000 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/binary_format.o</name>
|
| 1001 |
+
<type>1</type>
|
| 1002 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/binary_format.o</locationURI>
|
| 1003 |
+
</link>
|
| 1004 |
+
<link>
|
| 1005 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/build_binary</name>
|
| 1006 |
+
<type>1</type>
|
| 1007 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/build_binary</locationURI>
|
| 1008 |
+
</link>
|
| 1009 |
+
<link>
|
| 1010 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/build_binary_main.o</name>
|
| 1011 |
+
<type>1</type>
|
| 1012 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/build_binary_main.o</locationURI>
|
| 1013 |
+
</link>
|
| 1014 |
+
<link>
|
| 1015 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/config.o</name>
|
| 1016 |
+
<type>1</type>
|
| 1017 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/config.o</locationURI>
|
| 1018 |
+
</link>
|
| 1019 |
+
<link>
|
| 1020 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/fragment</name>
|
| 1021 |
+
<type>1</type>
|
| 1022 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/fragment</locationURI>
|
| 1023 |
+
</link>
|
| 1024 |
+
<link>
|
| 1025 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/fragment_main.o</name>
|
| 1026 |
+
<type>1</type>
|
| 1027 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/fragment_main.o</locationURI>
|
| 1028 |
+
</link>
|
| 1029 |
+
<link>
|
| 1030 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lm_exception.o</name>
|
| 1031 |
+
<type>1</type>
|
| 1032 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lm_exception.o</locationURI>
|
| 1033 |
+
</link>
|
| 1034 |
+
<link>
|
| 1035 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model.o</name>
|
| 1036 |
+
<type>1</type>
|
| 1037 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model.o</locationURI>
|
| 1038 |
+
</link>
|
| 1039 |
+
<link>
|
| 1040 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/quantize.o</name>
|
| 1041 |
+
<type>1</type>
|
| 1042 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/quantize.o</locationURI>
|
| 1043 |
+
</link>
|
| 1044 |
+
<link>
|
| 1045 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/query</name>
|
| 1046 |
+
<type>1</type>
|
| 1047 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/query</locationURI>
|
| 1048 |
+
</link>
|
| 1049 |
+
<link>
|
| 1050 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/query_main.o</name>
|
| 1051 |
+
<type>1</type>
|
| 1052 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/query_main.o</locationURI>
|
| 1053 |
+
</link>
|
| 1054 |
+
<link>
|
| 1055 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/read_arpa.o</name>
|
| 1056 |
+
<type>1</type>
|
| 1057 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/read_arpa.o</locationURI>
|
| 1058 |
+
</link>
|
| 1059 |
+
<link>
|
| 1060 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/search_hashed.o</name>
|
| 1061 |
+
<type>1</type>
|
| 1062 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/search_hashed.o</locationURI>
|
| 1063 |
+
</link>
|
| 1064 |
+
<link>
|
| 1065 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/search_trie.o</name>
|
| 1066 |
+
<type>1</type>
|
| 1067 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/search_trie.o</locationURI>
|
| 1068 |
+
</link>
|
| 1069 |
+
<link>
|
| 1070 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/sizes.o</name>
|
| 1071 |
+
<type>1</type>
|
| 1072 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/sizes.o</locationURI>
|
| 1073 |
+
</link>
|
| 1074 |
+
<link>
|
| 1075 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/trie.o</name>
|
| 1076 |
+
<type>1</type>
|
| 1077 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/trie.o</locationURI>
|
| 1078 |
+
</link>
|
| 1079 |
+
<link>
|
| 1080 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/trie_sort.o</name>
|
| 1081 |
+
<type>1</type>
|
| 1082 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/trie_sort.o</locationURI>
|
| 1083 |
+
</link>
|
| 1084 |
+
<link>
|
| 1085 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/value_build.o</name>
|
| 1086 |
+
<type>1</type>
|
| 1087 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/value_build.o</locationURI>
|
| 1088 |
+
</link>
|
| 1089 |
+
<link>
|
| 1090 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/virtual_interface.o</name>
|
| 1091 |
+
<type>1</type>
|
| 1092 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/virtual_interface.o</locationURI>
|
| 1093 |
+
</link>
|
| 1094 |
+
<link>
|
| 1095 |
+
<name>bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/vocab.o</name>
|
| 1096 |
+
<type>1</type>
|
| 1097 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/vocab.o</locationURI>
|
| 1098 |
+
</link>
|
| 1099 |
+
<link>
|
| 1100 |
+
<name>bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1101 |
+
<type>2</type>
|
| 1102 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1103 |
+
</link>
|
| 1104 |
+
<link>
|
| 1105 |
+
<name>bin/left_test.test/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1106 |
+
<type>2</type>
|
| 1107 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1108 |
+
</link>
|
| 1109 |
+
<link>
|
| 1110 |
+
<name>bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1111 |
+
<type>2</type>
|
| 1112 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1113 |
+
</link>
|
| 1114 |
+
<link>
|
| 1115 |
+
<name>bin/model_test.test/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1116 |
+
<type>2</type>
|
| 1117 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1118 |
+
</link>
|
| 1119 |
+
<link>
|
| 1120 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1121 |
+
<type>2</type>
|
| 1122 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1123 |
+
</link>
|
| 1124 |
+
<link>
|
| 1125 |
+
<name>bin/partial_test.test/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1126 |
+
<type>2</type>
|
| 1127 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1128 |
+
</link>
|
| 1129 |
+
<link>
|
| 1130 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1131 |
+
<type>2</type>
|
| 1132 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1133 |
+
</link>
|
| 1134 |
+
<link>
|
| 1135 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1136 |
+
<type>2</type>
|
| 1137 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1138 |
+
</link>
|
| 1139 |
+
<link>
|
| 1140 |
+
<name>filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1141 |
+
<type>2</type>
|
| 1142 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1143 |
+
</link>
|
| 1144 |
+
<link>
|
| 1145 |
+
<name>filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi</name>
|
| 1146 |
+
<type>2</type>
|
| 1147 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1148 |
+
</link>
|
| 1149 |
+
<link>
|
| 1150 |
+
<name>bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test</name>
|
| 1151 |
+
<type>1</type>
|
| 1152 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test</locationURI>
|
| 1153 |
+
</link>
|
| 1154 |
+
<link>
|
| 1155 |
+
<name>bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.o</name>
|
| 1156 |
+
<type>1</type>
|
| 1157 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.o</locationURI>
|
| 1158 |
+
</link>
|
| 1159 |
+
<link>
|
| 1160 |
+
<name>bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.output</name>
|
| 1161 |
+
<type>1</type>
|
| 1162 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.output</locationURI>
|
| 1163 |
+
</link>
|
| 1164 |
+
<link>
|
| 1165 |
+
<name>bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.run</name>
|
| 1166 |
+
<type>1</type>
|
| 1167 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.run</locationURI>
|
| 1168 |
+
</link>
|
| 1169 |
+
<link>
|
| 1170 |
+
<name>bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.test</name>
|
| 1171 |
+
<type>1</type>
|
| 1172 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/left_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.test</locationURI>
|
| 1173 |
+
</link>
|
| 1174 |
+
<link>
|
| 1175 |
+
<name>bin/left_test.test/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.o</name>
|
| 1176 |
+
<type>1</type>
|
| 1177 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/left_test.test/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/left_test.o</locationURI>
|
| 1178 |
+
</link>
|
| 1179 |
+
<link>
|
| 1180 |
+
<name>bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test</name>
|
| 1181 |
+
<type>1</type>
|
| 1182 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test</locationURI>
|
| 1183 |
+
</link>
|
| 1184 |
+
<link>
|
| 1185 |
+
<name>bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.o</name>
|
| 1186 |
+
<type>1</type>
|
| 1187 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.o</locationURI>
|
| 1188 |
+
</link>
|
| 1189 |
+
<link>
|
| 1190 |
+
<name>bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.output</name>
|
| 1191 |
+
<type>1</type>
|
| 1192 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.output</locationURI>
|
| 1193 |
+
</link>
|
| 1194 |
+
<link>
|
| 1195 |
+
<name>bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.run</name>
|
| 1196 |
+
<type>1</type>
|
| 1197 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.run</locationURI>
|
| 1198 |
+
</link>
|
| 1199 |
+
<link>
|
| 1200 |
+
<name>bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.test</name>
|
| 1201 |
+
<type>1</type>
|
| 1202 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/model_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.test</locationURI>
|
| 1203 |
+
</link>
|
| 1204 |
+
<link>
|
| 1205 |
+
<name>bin/model_test.test/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.o</name>
|
| 1206 |
+
<type>1</type>
|
| 1207 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/model_test.test/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/model_test.o</locationURI>
|
| 1208 |
+
</link>
|
| 1209 |
+
<link>
|
| 1210 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test</name>
|
| 1211 |
+
<type>1</type>
|
| 1212 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test</locationURI>
|
| 1213 |
+
</link>
|
| 1214 |
+
<link>
|
| 1215 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.o</name>
|
| 1216 |
+
<type>1</type>
|
| 1217 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.o</locationURI>
|
| 1218 |
+
</link>
|
| 1219 |
+
<link>
|
| 1220 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.output</name>
|
| 1221 |
+
<type>1</type>
|
| 1222 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.output</locationURI>
|
| 1223 |
+
</link>
|
| 1224 |
+
<link>
|
| 1225 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.run</name>
|
| 1226 |
+
<type>1</type>
|
| 1227 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.run</locationURI>
|
| 1228 |
+
</link>
|
| 1229 |
+
<link>
|
| 1230 |
+
<name>bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.test</name>
|
| 1231 |
+
<type>1</type>
|
| 1232 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/partial_test.test/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.test</locationURI>
|
| 1233 |
+
</link>
|
| 1234 |
+
<link>
|
| 1235 |
+
<name>bin/partial_test.test/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.o</name>
|
| 1236 |
+
<type>1</type>
|
| 1237 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/bin/partial_test.test/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/partial_test.o</locationURI>
|
| 1238 |
+
</link>
|
| 1239 |
+
<link>
|
| 1240 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/adjust_counts.o</name>
|
| 1241 |
+
<type>1</type>
|
| 1242 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/adjust_counts.o</locationURI>
|
| 1243 |
+
</link>
|
| 1244 |
+
<link>
|
| 1245 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/corpus_count.o</name>
|
| 1246 |
+
<type>1</type>
|
| 1247 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/corpus_count.o</locationURI>
|
| 1248 |
+
</link>
|
| 1249 |
+
<link>
|
| 1250 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/dump_counts</name>
|
| 1251 |
+
<type>1</type>
|
| 1252 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/dump_counts</locationURI>
|
| 1253 |
+
</link>
|
| 1254 |
+
<link>
|
| 1255 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/dump_counts_main.o</name>
|
| 1256 |
+
<type>1</type>
|
| 1257 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/dump_counts_main.o</locationURI>
|
| 1258 |
+
</link>
|
| 1259 |
+
<link>
|
| 1260 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/initial_probabilities.o</name>
|
| 1261 |
+
<type>1</type>
|
| 1262 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/initial_probabilities.o</locationURI>
|
| 1263 |
+
</link>
|
| 1264 |
+
<link>
|
| 1265 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/interpolate.o</name>
|
| 1266 |
+
<type>1</type>
|
| 1267 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/interpolate.o</locationURI>
|
| 1268 |
+
</link>
|
| 1269 |
+
<link>
|
| 1270 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lmplz</name>
|
| 1271 |
+
<type>1</type>
|
| 1272 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lmplz</locationURI>
|
| 1273 |
+
</link>
|
| 1274 |
+
<link>
|
| 1275 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lmplz_main.o</name>
|
| 1276 |
+
<type>1</type>
|
| 1277 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lmplz_main.o</locationURI>
|
| 1278 |
+
</link>
|
| 1279 |
+
<link>
|
| 1280 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/pipeline.o</name>
|
| 1281 |
+
<type>1</type>
|
| 1282 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/pipeline.o</locationURI>
|
| 1283 |
+
</link>
|
| 1284 |
+
<link>
|
| 1285 |
+
<name>builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/print.o</name>
|
| 1286 |
+
<type>1</type>
|
| 1287 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/print.o</locationURI>
|
| 1288 |
+
</link>
|
| 1289 |
+
<link>
|
| 1290 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/adjust_counts.o</name>
|
| 1291 |
+
<type>1</type>
|
| 1292 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/adjust_counts.o</locationURI>
|
| 1293 |
+
</link>
|
| 1294 |
+
<link>
|
| 1295 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/corpus_count.o</name>
|
| 1296 |
+
<type>1</type>
|
| 1297 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/corpus_count.o</locationURI>
|
| 1298 |
+
</link>
|
| 1299 |
+
<link>
|
| 1300 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/initial_probabilities.o</name>
|
| 1301 |
+
<type>1</type>
|
| 1302 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/initial_probabilities.o</locationURI>
|
| 1303 |
+
</link>
|
| 1304 |
+
<link>
|
| 1305 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/interpolate.o</name>
|
| 1306 |
+
<type>1</type>
|
| 1307 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/interpolate.o</locationURI>
|
| 1308 |
+
</link>
|
| 1309 |
+
<link>
|
| 1310 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lmplz</name>
|
| 1311 |
+
<type>1</type>
|
| 1312 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lmplz</locationURI>
|
| 1313 |
+
</link>
|
| 1314 |
+
<link>
|
| 1315 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lmplz_main.o</name>
|
| 1316 |
+
<type>1</type>
|
| 1317 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/lmplz_main.o</locationURI>
|
| 1318 |
+
</link>
|
| 1319 |
+
<link>
|
| 1320 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/pipeline.o</name>
|
| 1321 |
+
<type>1</type>
|
| 1322 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/pipeline.o</locationURI>
|
| 1323 |
+
</link>
|
| 1324 |
+
<link>
|
| 1325 |
+
<name>builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/print.o</name>
|
| 1326 |
+
<type>1</type>
|
| 1327 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/builder/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/print.o</locationURI>
|
| 1328 |
+
</link>
|
| 1329 |
+
<link>
|
| 1330 |
+
<name>filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/arpa_io.o</name>
|
| 1331 |
+
<type>1</type>
|
| 1332 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/arpa_io.o</locationURI>
|
| 1333 |
+
</link>
|
| 1334 |
+
<link>
|
| 1335 |
+
<name>filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/filter</name>
|
| 1336 |
+
<type>1</type>
|
| 1337 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/filter</locationURI>
|
| 1338 |
+
</link>
|
| 1339 |
+
<link>
|
| 1340 |
+
<name>filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/main.o</name>
|
| 1341 |
+
<type>1</type>
|
| 1342 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/main.o</locationURI>
|
| 1343 |
+
</link>
|
| 1344 |
+
<link>
|
| 1345 |
+
<name>filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/phrase.o</name>
|
| 1346 |
+
<type>1</type>
|
| 1347 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/phrase.o</locationURI>
|
| 1348 |
+
</link>
|
| 1349 |
+
<link>
|
| 1350 |
+
<name>filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/vocab.o</name>
|
| 1351 |
+
<type>1</type>
|
| 1352 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/clang-darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/vocab.o</locationURI>
|
| 1353 |
+
</link>
|
| 1354 |
+
<link>
|
| 1355 |
+
<name>filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/arpa_io.o</name>
|
| 1356 |
+
<type>1</type>
|
| 1357 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/arpa_io.o</locationURI>
|
| 1358 |
+
</link>
|
| 1359 |
+
<link>
|
| 1360 |
+
<name>filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/filter</name>
|
| 1361 |
+
<type>1</type>
|
| 1362 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/filter</locationURI>
|
| 1363 |
+
</link>
|
| 1364 |
+
<link>
|
| 1365 |
+
<name>filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/main.o</name>
|
| 1366 |
+
<type>1</type>
|
| 1367 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/main.o</locationURI>
|
| 1368 |
+
</link>
|
| 1369 |
+
<link>
|
| 1370 |
+
<name>filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/phrase.o</name>
|
| 1371 |
+
<type>1</type>
|
| 1372 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/phrase.o</locationURI>
|
| 1373 |
+
</link>
|
| 1374 |
+
<link>
|
| 1375 |
+
<name>filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/vocab.o</name>
|
| 1376 |
+
<type>1</type>
|
| 1377 |
+
<locationURI>PARENT-3-PROJECT_LOC/lm/filter/bin/darwin-4.2.1/release/debug-symbols-on/link-static/threading-multi/vocab.o</locationURI>
|
| 1378 |
+
</link>
|
| 1379 |
+
</linkedResources>
|
| 1380 |
+
</projectDescription>
|
mosesdecoder/contrib/other-builds/mert_lib/.cproject
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
| 2 |
+
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
|
| 3 |
+
<storageModule moduleId="org.eclipse.cdt.core.settings">
|
| 4 |
+
<cconfiguration id="cdt.managedbuild.config.gnu.lib.debug.1721952013">
|
| 5 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.lib.debug.1721952013" moduleId="org.eclipse.cdt.core.settings" name="Debug">
|
| 6 |
+
<externalSettings>
|
| 7 |
+
<externalSetting>
|
| 8 |
+
<entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/mert_lib"/>
|
| 9 |
+
<entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/mert_lib/Debug"/>
|
| 10 |
+
<entry flags="RESOLVED" kind="libraryFile" name="mert_lib" srcPrefixMapping="" srcRootPath=""/>
|
| 11 |
+
</externalSetting>
|
| 12 |
+
</externalSettings>
|
| 13 |
+
<extensions>
|
| 14 |
+
<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 15 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 16 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 17 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 18 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 19 |
+
</extensions>
|
| 20 |
+
</storageModule>
|
| 21 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 22 |
+
<configuration artifactExtension="a" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.staticLib" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.staticLib,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.lib.debug.1721952013" name="Debug" parent="cdt.managedbuild.config.gnu.lib.debug">
|
| 23 |
+
<folderInfo id="cdt.managedbuild.config.gnu.lib.debug.1721952013." name="/" resourcePath="">
|
| 24 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.lib.debug.1932340583" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.lib.debug">
|
| 25 |
+
<targetPlatform id="cdt.managedbuild.target.gnu.platform.lib.debug.296711714" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.lib.debug"/>
|
| 26 |
+
<builder buildPath="${workspace_loc:/mert_lib/Debug}" id="cdt.managedbuild.target.gnu.builder.lib.debug.1369910974" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" parallelBuildOn="true" parallelizationNumber="optimal" superClass="cdt.managedbuild.target.gnu.builder.lib.debug"/>
|
| 27 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.lib.debug.89397980" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.lib.debug"/>
|
| 28 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.lib.debug.329920537" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.lib.debug">
|
| 29 |
+
<option id="gnu.cpp.compiler.lib.debug.option.optimization.level.469164841" name="Optimization Level" superClass="gnu.cpp.compiler.lib.debug.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/>
|
| 30 |
+
<option id="gnu.cpp.compiler.lib.debug.option.debugging.level.1050747398" name="Debug Level" superClass="gnu.cpp.compiler.lib.debug.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/>
|
| 31 |
+
<option id="gnu.cpp.compiler.option.include.paths.1565260476" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath">
|
| 32 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../""/>
|
| 33 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../boost/include""/>
|
| 34 |
+
</option>
|
| 35 |
+
<option id="gnu.cpp.compiler.option.preprocessor.def.2072043013" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" useByScannerDiscovery="false" valueType="definedSymbols">
|
| 36 |
+
<listOptionValue builtIn="false" value="MAX_NUM_FACTORS=4"/>
|
| 37 |
+
</option>
|
| 38 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1183866856" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 39 |
+
</tool>
|
| 40 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.lib.debug.1365367786" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.lib.debug">
|
| 41 |
+
<option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.lib.debug.option.optimization.level.2015372664" name="Optimization Level" superClass="gnu.c.compiler.lib.debug.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
| 42 |
+
<option id="gnu.c.compiler.lib.debug.option.debugging.level.1305426004" name="Debug Level" superClass="gnu.c.compiler.lib.debug.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.max" valueType="enumerated"/>
|
| 43 |
+
<option id="gnu.c.compiler.option.dialect.std.1074385956" superClass="gnu.c.compiler.option.dialect.std" useByScannerDiscovery="true" value="gnu.c.compiler.dialect.c11" valueType="enumerated"/>
|
| 44 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1773858729" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 45 |
+
</tool>
|
| 46 |
+
<tool id="cdt.managedbuild.tool.gnu.c.linker.base.665057130" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.base"/>
|
| 47 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.linker.base.1789905364" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.base"/>
|
| 48 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.lib.debug.1882786968" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.lib.debug">
|
| 49 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.1434113323" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 50 |
+
</tool>
|
| 51 |
+
</toolChain>
|
| 52 |
+
</folderInfo>
|
| 53 |
+
<sourceEntries>
|
| 54 |
+
<entry excluding="mert/PreProcessFilter.h|mert/PreProcessFilter.cpp|mert/UtilTest.cpp|mert/TimerTest.cpp|mert/SingletonTest.cpp|mert/PointTest.cpp|mert/OptimizerFactoryTest.cpp|mert/NgramTest.cpp|mert/FeatureDataTest.cpp|mert/DataTest.cpp|mert/ReferenceTest.cpp|mert/VocabularyTest.cpp|mert/extractor.cpp" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
| 55 |
+
</sourceEntries>
|
| 56 |
+
</configuration>
|
| 57 |
+
</storageModule>
|
| 58 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 59 |
+
</cconfiguration>
|
| 60 |
+
<cconfiguration id="cdt.managedbuild.config.gnu.lib.release.3250316">
|
| 61 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.lib.release.3250316" moduleId="org.eclipse.cdt.core.settings" name="Release">
|
| 62 |
+
<externalSettings>
|
| 63 |
+
<externalSetting>
|
| 64 |
+
<entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/mert_lib"/>
|
| 65 |
+
<entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/mert_lib/Release"/>
|
| 66 |
+
<entry flags="RESOLVED" kind="libraryFile" name="mert_lib" srcPrefixMapping="" srcRootPath=""/>
|
| 67 |
+
</externalSetting>
|
| 68 |
+
</externalSettings>
|
| 69 |
+
<extensions>
|
| 70 |
+
<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 71 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 72 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 73 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 74 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 75 |
+
</extensions>
|
| 76 |
+
</storageModule>
|
| 77 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 78 |
+
<configuration artifactExtension="a" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.staticLib" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.staticLib,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.lib.release.3250316" name="Release" parent="cdt.managedbuild.config.gnu.lib.release">
|
| 79 |
+
<folderInfo id="cdt.managedbuild.config.gnu.lib.release.3250316." name="/" resourcePath="">
|
| 80 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.lib.release.1996805666" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.lib.release">
|
| 81 |
+
<targetPlatform id="cdt.managedbuild.target.gnu.platform.lib.release.106685808" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.lib.release"/>
|
| 82 |
+
<builder buildPath="${workspace_loc:/mert_lib/Release}" id="cdt.managedbuild.target.gnu.builder.lib.release.1571526654" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.lib.release"/>
|
| 83 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.lib.release.135514273" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.lib.release"/>
|
| 84 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.lib.release.1908677536" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.lib.release">
|
| 85 |
+
<option id="gnu.cpp.compiler.lib.release.option.optimization.level.2066806653" name="Optimization Level" superClass="gnu.cpp.compiler.lib.release.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/>
|
| 86 |
+
<option id="gnu.cpp.compiler.lib.release.option.debugging.level.1745834437" name="Debug Level" superClass="gnu.cpp.compiler.lib.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/>
|
| 87 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1107467937" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 88 |
+
</tool>
|
| 89 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.lib.release.698587478" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.lib.release">
|
| 90 |
+
<option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.lib.release.option.optimization.level.1553399912" name="Optimization Level" superClass="gnu.c.compiler.lib.release.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
| 91 |
+
<option id="gnu.c.compiler.lib.release.option.debugging.level.1151183164" name="Debug Level" superClass="gnu.c.compiler.lib.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.none" valueType="enumerated"/>
|
| 92 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.599680392" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 93 |
+
</tool>
|
| 94 |
+
<tool id="cdt.managedbuild.tool.gnu.c.linker.base.612246593" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.base"/>
|
| 95 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.linker.base.2026662700" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.base"/>
|
| 96 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.lib.release.555071186" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.lib.release">
|
| 97 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.1705818315" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 98 |
+
</tool>
|
| 99 |
+
</toolChain>
|
| 100 |
+
</folderInfo>
|
| 101 |
+
</configuration>
|
| 102 |
+
</storageModule>
|
| 103 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 104 |
+
</cconfiguration>
|
| 105 |
+
</storageModule>
|
| 106 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 107 |
+
<project id="mert_lib.cdt.managedbuild.target.gnu.lib.1030455003" name="Static Library" projectType="cdt.managedbuild.target.gnu.lib"/>
|
| 108 |
+
</storageModule>
|
| 109 |
+
<storageModule moduleId="scannerConfiguration">
|
| 110 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 111 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.lib.release.3250316;cdt.managedbuild.config.gnu.lib.release.3250316.;cdt.managedbuild.tool.gnu.cpp.compiler.lib.release.1908677536;cdt.managedbuild.tool.gnu.cpp.compiler.input.1107467937">
|
| 112 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/>
|
| 113 |
+
</scannerConfigBuildInfo>
|
| 114 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.lib.release.3250316;cdt.managedbuild.config.gnu.lib.release.3250316.;cdt.managedbuild.tool.gnu.c.compiler.lib.release.698587478;cdt.managedbuild.tool.gnu.c.compiler.input.599680392">
|
| 115 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/>
|
| 116 |
+
</scannerConfigBuildInfo>
|
| 117 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.lib.debug.1721952013;cdt.managedbuild.config.gnu.lib.debug.1721952013.;cdt.managedbuild.tool.gnu.cpp.compiler.lib.debug.329920537;cdt.managedbuild.tool.gnu.cpp.compiler.input.1183866856">
|
| 118 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/>
|
| 119 |
+
</scannerConfigBuildInfo>
|
| 120 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.lib.debug.1721952013;cdt.managedbuild.config.gnu.lib.debug.1721952013.;cdt.managedbuild.tool.gnu.c.compiler.lib.debug.1365367786;cdt.managedbuild.tool.gnu.c.compiler.input.1773858729">
|
| 121 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/>
|
| 122 |
+
</scannerConfigBuildInfo>
|
| 123 |
+
</storageModule>
|
| 124 |
+
<storageModule moduleId="refreshScope" versionNumber="2">
|
| 125 |
+
<configuration configurationName="Release">
|
| 126 |
+
<resource resourceType="PROJECT" workspacePath="/mert_lib"/>
|
| 127 |
+
</configuration>
|
| 128 |
+
<configuration configurationName="Debug">
|
| 129 |
+
<resource resourceType="PROJECT" workspacePath="/mert_lib"/>
|
| 130 |
+
</configuration>
|
| 131 |
+
</storageModule>
|
| 132 |
+
<storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
|
| 133 |
+
<storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>
|
| 134 |
+
</cproject>
|
mosesdecoder/contrib/other-builds/mert_lib/.project
ADDED
|
@@ -0,0 +1,1350 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<projectDescription>
|
| 3 |
+
<name>mert_lib</name>
|
| 4 |
+
<comment></comment>
|
| 5 |
+
<projects>
|
| 6 |
+
</projects>
|
| 7 |
+
<buildSpec>
|
| 8 |
+
<buildCommand>
|
| 9 |
+
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
|
| 10 |
+
<triggers>clean,full,incremental,</triggers>
|
| 11 |
+
<arguments>
|
| 12 |
+
<dictionary>
|
| 13 |
+
<key>?name?</key>
|
| 14 |
+
<value></value>
|
| 15 |
+
</dictionary>
|
| 16 |
+
<dictionary>
|
| 17 |
+
<key>org.eclipse.cdt.make.core.append_environment</key>
|
| 18 |
+
<value>true</value>
|
| 19 |
+
</dictionary>
|
| 20 |
+
<dictionary>
|
| 21 |
+
<key>org.eclipse.cdt.make.core.autoBuildTarget</key>
|
| 22 |
+
<value>all</value>
|
| 23 |
+
</dictionary>
|
| 24 |
+
<dictionary>
|
| 25 |
+
<key>org.eclipse.cdt.make.core.buildArguments</key>
|
| 26 |
+
<value></value>
|
| 27 |
+
</dictionary>
|
| 28 |
+
<dictionary>
|
| 29 |
+
<key>org.eclipse.cdt.make.core.buildCommand</key>
|
| 30 |
+
<value>make</value>
|
| 31 |
+
</dictionary>
|
| 32 |
+
<dictionary>
|
| 33 |
+
<key>org.eclipse.cdt.make.core.buildLocation</key>
|
| 34 |
+
<value>${workspace_loc:/mert_lib/Debug}</value>
|
| 35 |
+
</dictionary>
|
| 36 |
+
<dictionary>
|
| 37 |
+
<key>org.eclipse.cdt.make.core.cleanBuildTarget</key>
|
| 38 |
+
<value>clean</value>
|
| 39 |
+
</dictionary>
|
| 40 |
+
<dictionary>
|
| 41 |
+
<key>org.eclipse.cdt.make.core.contents</key>
|
| 42 |
+
<value>org.eclipse.cdt.make.core.activeConfigSettings</value>
|
| 43 |
+
</dictionary>
|
| 44 |
+
<dictionary>
|
| 45 |
+
<key>org.eclipse.cdt.make.core.enableAutoBuild</key>
|
| 46 |
+
<value>false</value>
|
| 47 |
+
</dictionary>
|
| 48 |
+
<dictionary>
|
| 49 |
+
<key>org.eclipse.cdt.make.core.enableCleanBuild</key>
|
| 50 |
+
<value>true</value>
|
| 51 |
+
</dictionary>
|
| 52 |
+
<dictionary>
|
| 53 |
+
<key>org.eclipse.cdt.make.core.enableFullBuild</key>
|
| 54 |
+
<value>true</value>
|
| 55 |
+
</dictionary>
|
| 56 |
+
<dictionary>
|
| 57 |
+
<key>org.eclipse.cdt.make.core.fullBuildTarget</key>
|
| 58 |
+
<value>all</value>
|
| 59 |
+
</dictionary>
|
| 60 |
+
<dictionary>
|
| 61 |
+
<key>org.eclipse.cdt.make.core.stopOnError</key>
|
| 62 |
+
<value>true</value>
|
| 63 |
+
</dictionary>
|
| 64 |
+
<dictionary>
|
| 65 |
+
<key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key>
|
| 66 |
+
<value>true</value>
|
| 67 |
+
</dictionary>
|
| 68 |
+
</arguments>
|
| 69 |
+
</buildCommand>
|
| 70 |
+
<buildCommand>
|
| 71 |
+
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
|
| 72 |
+
<triggers>full,incremental,</triggers>
|
| 73 |
+
<arguments>
|
| 74 |
+
</arguments>
|
| 75 |
+
</buildCommand>
|
| 76 |
+
</buildSpec>
|
| 77 |
+
<natures>
|
| 78 |
+
<nature>org.eclipse.cdt.core.cnature</nature>
|
| 79 |
+
<nature>org.eclipse.cdt.core.ccnature</nature>
|
| 80 |
+
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
|
| 81 |
+
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
|
| 82 |
+
</natures>
|
| 83 |
+
<linkedResources>
|
| 84 |
+
<link>
|
| 85 |
+
<name>BleuDocScorer.cpp</name>
|
| 86 |
+
<type>1</type>
|
| 87 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/BleuDocScorer.cpp</locationURI>
|
| 88 |
+
</link>
|
| 89 |
+
<link>
|
| 90 |
+
<name>BleuDocScorer.h</name>
|
| 91 |
+
<type>1</type>
|
| 92 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/BleuDocScorer.h</locationURI>
|
| 93 |
+
</link>
|
| 94 |
+
<link>
|
| 95 |
+
<name>BleuScorer.cpp</name>
|
| 96 |
+
<type>1</type>
|
| 97 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/BleuScorer.cpp</locationURI>
|
| 98 |
+
</link>
|
| 99 |
+
<link>
|
| 100 |
+
<name>BleuScorer.h</name>
|
| 101 |
+
<type>1</type>
|
| 102 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/BleuScorer.h</locationURI>
|
| 103 |
+
</link>
|
| 104 |
+
<link>
|
| 105 |
+
<name>BleuScorerTest.cpp</name>
|
| 106 |
+
<type>1</type>
|
| 107 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/BleuScorerTest.cpp</locationURI>
|
| 108 |
+
</link>
|
| 109 |
+
<link>
|
| 110 |
+
<name>CderScorer.cpp</name>
|
| 111 |
+
<type>1</type>
|
| 112 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/CderScorer.cpp</locationURI>
|
| 113 |
+
</link>
|
| 114 |
+
<link>
|
| 115 |
+
<name>CderScorer.h</name>
|
| 116 |
+
<type>1</type>
|
| 117 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/CderScorer.h</locationURI>
|
| 118 |
+
</link>
|
| 119 |
+
<link>
|
| 120 |
+
<name>Data.cpp</name>
|
| 121 |
+
<type>1</type>
|
| 122 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Data.cpp</locationURI>
|
| 123 |
+
</link>
|
| 124 |
+
<link>
|
| 125 |
+
<name>Data.h</name>
|
| 126 |
+
<type>1</type>
|
| 127 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Data.h</locationURI>
|
| 128 |
+
</link>
|
| 129 |
+
<link>
|
| 130 |
+
<name>DataTest.cpp</name>
|
| 131 |
+
<type>1</type>
|
| 132 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/DataTest.cpp</locationURI>
|
| 133 |
+
</link>
|
| 134 |
+
<link>
|
| 135 |
+
<name>Fdstream.h</name>
|
| 136 |
+
<type>1</type>
|
| 137 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Fdstream.h</locationURI>
|
| 138 |
+
</link>
|
| 139 |
+
<link>
|
| 140 |
+
<name>FeatureArray.cpp</name>
|
| 141 |
+
<type>1</type>
|
| 142 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FeatureArray.cpp</locationURI>
|
| 143 |
+
</link>
|
| 144 |
+
<link>
|
| 145 |
+
<name>FeatureArray.h</name>
|
| 146 |
+
<type>1</type>
|
| 147 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FeatureArray.h</locationURI>
|
| 148 |
+
</link>
|
| 149 |
+
<link>
|
| 150 |
+
<name>FeatureData.cpp</name>
|
| 151 |
+
<type>1</type>
|
| 152 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FeatureData.cpp</locationURI>
|
| 153 |
+
</link>
|
| 154 |
+
<link>
|
| 155 |
+
<name>FeatureData.h</name>
|
| 156 |
+
<type>1</type>
|
| 157 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FeatureData.h</locationURI>
|
| 158 |
+
</link>
|
| 159 |
+
<link>
|
| 160 |
+
<name>FeatureDataIterator.cpp</name>
|
| 161 |
+
<type>1</type>
|
| 162 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FeatureDataIterator.cpp</locationURI>
|
| 163 |
+
</link>
|
| 164 |
+
<link>
|
| 165 |
+
<name>FeatureDataIterator.h</name>
|
| 166 |
+
<type>1</type>
|
| 167 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FeatureDataIterator.h</locationURI>
|
| 168 |
+
</link>
|
| 169 |
+
<link>
|
| 170 |
+
<name>FeatureDataTest.cpp</name>
|
| 171 |
+
<type>1</type>
|
| 172 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FeatureDataTest.cpp</locationURI>
|
| 173 |
+
</link>
|
| 174 |
+
<link>
|
| 175 |
+
<name>FeatureStats.cpp</name>
|
| 176 |
+
<type>1</type>
|
| 177 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FeatureStats.cpp</locationURI>
|
| 178 |
+
</link>
|
| 179 |
+
<link>
|
| 180 |
+
<name>FeatureStats.h</name>
|
| 181 |
+
<type>1</type>
|
| 182 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FeatureStats.h</locationURI>
|
| 183 |
+
</link>
|
| 184 |
+
<link>
|
| 185 |
+
<name>FileStream.cpp</name>
|
| 186 |
+
<type>1</type>
|
| 187 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FileStream.cpp</locationURI>
|
| 188 |
+
</link>
|
| 189 |
+
<link>
|
| 190 |
+
<name>FileStream.h</name>
|
| 191 |
+
<type>1</type>
|
| 192 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/FileStream.h</locationURI>
|
| 193 |
+
</link>
|
| 194 |
+
<link>
|
| 195 |
+
<name>GzFileBuf.cpp</name>
|
| 196 |
+
<type>1</type>
|
| 197 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/GzFileBuf.cpp</locationURI>
|
| 198 |
+
</link>
|
| 199 |
+
<link>
|
| 200 |
+
<name>GzFileBuf.h</name>
|
| 201 |
+
<type>1</type>
|
| 202 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/GzFileBuf.h</locationURI>
|
| 203 |
+
</link>
|
| 204 |
+
<link>
|
| 205 |
+
<name>HwcmScorer.cpp</name>
|
| 206 |
+
<type>1</type>
|
| 207 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/HwcmScorer.cpp</locationURI>
|
| 208 |
+
</link>
|
| 209 |
+
<link>
|
| 210 |
+
<name>HwcmScorer.h</name>
|
| 211 |
+
<type>1</type>
|
| 212 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/HwcmScorer.h</locationURI>
|
| 213 |
+
</link>
|
| 214 |
+
<link>
|
| 215 |
+
<name>HypPackEnumerator.cpp</name>
|
| 216 |
+
<type>1</type>
|
| 217 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/HypPackEnumerator.cpp</locationURI>
|
| 218 |
+
</link>
|
| 219 |
+
<link>
|
| 220 |
+
<name>HypPackEnumerator.h</name>
|
| 221 |
+
<type>1</type>
|
| 222 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/HypPackEnumerator.h</locationURI>
|
| 223 |
+
</link>
|
| 224 |
+
<link>
|
| 225 |
+
<name>InternalTree.cpp</name>
|
| 226 |
+
<type>1</type>
|
| 227 |
+
<locationURI>PARENT-3-PROJECT_LOC/moses/FF/InternalTree.cpp</locationURI>
|
| 228 |
+
</link>
|
| 229 |
+
<link>
|
| 230 |
+
<name>InternalTree.h</name>
|
| 231 |
+
<type>1</type>
|
| 232 |
+
<locationURI>PARENT-3-PROJECT_LOC/moses/FF/InternalTree.h</locationURI>
|
| 233 |
+
</link>
|
| 234 |
+
<link>
|
| 235 |
+
<name>InterpolatedScorer.cpp</name>
|
| 236 |
+
<type>1</type>
|
| 237 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/InterpolatedScorer.cpp</locationURI>
|
| 238 |
+
</link>
|
| 239 |
+
<link>
|
| 240 |
+
<name>InterpolatedScorer.h</name>
|
| 241 |
+
<type>1</type>
|
| 242 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/InterpolatedScorer.h</locationURI>
|
| 243 |
+
</link>
|
| 244 |
+
<link>
|
| 245 |
+
<name>Jamfile</name>
|
| 246 |
+
<type>1</type>
|
| 247 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Jamfile</locationURI>
|
| 248 |
+
</link>
|
| 249 |
+
<link>
|
| 250 |
+
<name>M2.cpp</name>
|
| 251 |
+
<type>1</type>
|
| 252 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/M2.cpp</locationURI>
|
| 253 |
+
</link>
|
| 254 |
+
<link>
|
| 255 |
+
<name>M2.h</name>
|
| 256 |
+
<type>1</type>
|
| 257 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/M2.h</locationURI>
|
| 258 |
+
</link>
|
| 259 |
+
<link>
|
| 260 |
+
<name>M2Scorer.cpp</name>
|
| 261 |
+
<type>1</type>
|
| 262 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/M2Scorer.cpp</locationURI>
|
| 263 |
+
</link>
|
| 264 |
+
<link>
|
| 265 |
+
<name>M2Scorer.h</name>
|
| 266 |
+
<type>1</type>
|
| 267 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/M2Scorer.h</locationURI>
|
| 268 |
+
</link>
|
| 269 |
+
<link>
|
| 270 |
+
<name>MeteorScorer.cpp</name>
|
| 271 |
+
<type>1</type>
|
| 272 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/MeteorScorer.cpp</locationURI>
|
| 273 |
+
</link>
|
| 274 |
+
<link>
|
| 275 |
+
<name>MeteorScorer.h</name>
|
| 276 |
+
<type>1</type>
|
| 277 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/MeteorScorer.h</locationURI>
|
| 278 |
+
</link>
|
| 279 |
+
<link>
|
| 280 |
+
<name>MiraFeatureVector.cpp</name>
|
| 281 |
+
<type>1</type>
|
| 282 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/MiraFeatureVector.cpp</locationURI>
|
| 283 |
+
</link>
|
| 284 |
+
<link>
|
| 285 |
+
<name>MiraFeatureVector.h</name>
|
| 286 |
+
<type>1</type>
|
| 287 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/MiraFeatureVector.h</locationURI>
|
| 288 |
+
</link>
|
| 289 |
+
<link>
|
| 290 |
+
<name>MiraWeightVector.cpp</name>
|
| 291 |
+
<type>1</type>
|
| 292 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/MiraWeightVector.cpp</locationURI>
|
| 293 |
+
</link>
|
| 294 |
+
<link>
|
| 295 |
+
<name>MiraWeightVector.h</name>
|
| 296 |
+
<type>1</type>
|
| 297 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/MiraWeightVector.h</locationURI>
|
| 298 |
+
</link>
|
| 299 |
+
<link>
|
| 300 |
+
<name>Ngram.h</name>
|
| 301 |
+
<type>1</type>
|
| 302 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Ngram.h</locationURI>
|
| 303 |
+
</link>
|
| 304 |
+
<link>
|
| 305 |
+
<name>NgramTest.cpp</name>
|
| 306 |
+
<type>1</type>
|
| 307 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/NgramTest.cpp</locationURI>
|
| 308 |
+
</link>
|
| 309 |
+
<link>
|
| 310 |
+
<name>Optimizer.cpp</name>
|
| 311 |
+
<type>1</type>
|
| 312 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Optimizer.cpp</locationURI>
|
| 313 |
+
</link>
|
| 314 |
+
<link>
|
| 315 |
+
<name>Optimizer.h</name>
|
| 316 |
+
<type>1</type>
|
| 317 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Optimizer.h</locationURI>
|
| 318 |
+
</link>
|
| 319 |
+
<link>
|
| 320 |
+
<name>OptimizerFactory.cpp</name>
|
| 321 |
+
<type>1</type>
|
| 322 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/OptimizerFactory.cpp</locationURI>
|
| 323 |
+
</link>
|
| 324 |
+
<link>
|
| 325 |
+
<name>OptimizerFactory.h</name>
|
| 326 |
+
<type>1</type>
|
| 327 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/OptimizerFactory.h</locationURI>
|
| 328 |
+
</link>
|
| 329 |
+
<link>
|
| 330 |
+
<name>OptimizerFactoryTest.cpp</name>
|
| 331 |
+
<type>1</type>
|
| 332 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/OptimizerFactoryTest.cpp</locationURI>
|
| 333 |
+
</link>
|
| 334 |
+
<link>
|
| 335 |
+
<name>PerScorer.cpp</name>
|
| 336 |
+
<type>1</type>
|
| 337 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/PerScorer.cpp</locationURI>
|
| 338 |
+
</link>
|
| 339 |
+
<link>
|
| 340 |
+
<name>PerScorer.h</name>
|
| 341 |
+
<type>1</type>
|
| 342 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/PerScorer.h</locationURI>
|
| 343 |
+
</link>
|
| 344 |
+
<link>
|
| 345 |
+
<name>Permutation.cpp</name>
|
| 346 |
+
<type>1</type>
|
| 347 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Permutation.cpp</locationURI>
|
| 348 |
+
</link>
|
| 349 |
+
<link>
|
| 350 |
+
<name>Permutation.h</name>
|
| 351 |
+
<type>1</type>
|
| 352 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Permutation.h</locationURI>
|
| 353 |
+
</link>
|
| 354 |
+
<link>
|
| 355 |
+
<name>PermutationScorer.cpp</name>
|
| 356 |
+
<type>1</type>
|
| 357 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/PermutationScorer.cpp</locationURI>
|
| 358 |
+
</link>
|
| 359 |
+
<link>
|
| 360 |
+
<name>PermutationScorer.h</name>
|
| 361 |
+
<type>1</type>
|
| 362 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/PermutationScorer.h</locationURI>
|
| 363 |
+
</link>
|
| 364 |
+
<link>
|
| 365 |
+
<name>Point.cpp</name>
|
| 366 |
+
<type>1</type>
|
| 367 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Point.cpp</locationURI>
|
| 368 |
+
</link>
|
| 369 |
+
<link>
|
| 370 |
+
<name>Point.h</name>
|
| 371 |
+
<type>1</type>
|
| 372 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Point.h</locationURI>
|
| 373 |
+
</link>
|
| 374 |
+
<link>
|
| 375 |
+
<name>PointTest.cpp</name>
|
| 376 |
+
<type>1</type>
|
| 377 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/PointTest.cpp</locationURI>
|
| 378 |
+
</link>
|
| 379 |
+
<link>
|
| 380 |
+
<name>PreProcessFilter.cpp</name>
|
| 381 |
+
<type>1</type>
|
| 382 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/PreProcessFilter.cpp</locationURI>
|
| 383 |
+
</link>
|
| 384 |
+
<link>
|
| 385 |
+
<name>PreProcessFilter.h</name>
|
| 386 |
+
<type>1</type>
|
| 387 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/PreProcessFilter.h</locationURI>
|
| 388 |
+
</link>
|
| 389 |
+
<link>
|
| 390 |
+
<name>Reference.h</name>
|
| 391 |
+
<type>1</type>
|
| 392 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Reference.h</locationURI>
|
| 393 |
+
</link>
|
| 394 |
+
<link>
|
| 395 |
+
<name>ReferenceTest.cpp</name>
|
| 396 |
+
<type>1</type>
|
| 397 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ReferenceTest.cpp</locationURI>
|
| 398 |
+
</link>
|
| 399 |
+
<link>
|
| 400 |
+
<name>ScopedVector.h</name>
|
| 401 |
+
<type>1</type>
|
| 402 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScopedVector.h</locationURI>
|
| 403 |
+
</link>
|
| 404 |
+
<link>
|
| 405 |
+
<name>ScoreArray.cpp</name>
|
| 406 |
+
<type>1</type>
|
| 407 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScoreArray.cpp</locationURI>
|
| 408 |
+
</link>
|
| 409 |
+
<link>
|
| 410 |
+
<name>ScoreArray.h</name>
|
| 411 |
+
<type>1</type>
|
| 412 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScoreArray.h</locationURI>
|
| 413 |
+
</link>
|
| 414 |
+
<link>
|
| 415 |
+
<name>ScoreData.cpp</name>
|
| 416 |
+
<type>1</type>
|
| 417 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScoreData.cpp</locationURI>
|
| 418 |
+
</link>
|
| 419 |
+
<link>
|
| 420 |
+
<name>ScoreData.h</name>
|
| 421 |
+
<type>1</type>
|
| 422 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScoreData.h</locationURI>
|
| 423 |
+
</link>
|
| 424 |
+
<link>
|
| 425 |
+
<name>ScoreDataIterator.cpp</name>
|
| 426 |
+
<type>1</type>
|
| 427 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScoreDataIterator.cpp</locationURI>
|
| 428 |
+
</link>
|
| 429 |
+
<link>
|
| 430 |
+
<name>ScoreDataIterator.h</name>
|
| 431 |
+
<type>1</type>
|
| 432 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScoreDataIterator.h</locationURI>
|
| 433 |
+
</link>
|
| 434 |
+
<link>
|
| 435 |
+
<name>ScoreStats.cpp</name>
|
| 436 |
+
<type>1</type>
|
| 437 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScoreStats.cpp</locationURI>
|
| 438 |
+
</link>
|
| 439 |
+
<link>
|
| 440 |
+
<name>ScoreStats.h</name>
|
| 441 |
+
<type>1</type>
|
| 442 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScoreStats.h</locationURI>
|
| 443 |
+
</link>
|
| 444 |
+
<link>
|
| 445 |
+
<name>Scorer.cpp</name>
|
| 446 |
+
<type>1</type>
|
| 447 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Scorer.cpp</locationURI>
|
| 448 |
+
</link>
|
| 449 |
+
<link>
|
| 450 |
+
<name>Scorer.h</name>
|
| 451 |
+
<type>1</type>
|
| 452 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Scorer.h</locationURI>
|
| 453 |
+
</link>
|
| 454 |
+
<link>
|
| 455 |
+
<name>ScorerFactory.cpp</name>
|
| 456 |
+
<type>1</type>
|
| 457 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScorerFactory.cpp</locationURI>
|
| 458 |
+
</link>
|
| 459 |
+
<link>
|
| 460 |
+
<name>ScorerFactory.h</name>
|
| 461 |
+
<type>1</type>
|
| 462 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/ScorerFactory.h</locationURI>
|
| 463 |
+
</link>
|
| 464 |
+
<link>
|
| 465 |
+
<name>SemposOverlapping.cpp</name>
|
| 466 |
+
<type>1</type>
|
| 467 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/SemposOverlapping.cpp</locationURI>
|
| 468 |
+
</link>
|
| 469 |
+
<link>
|
| 470 |
+
<name>SemposOverlapping.h</name>
|
| 471 |
+
<type>1</type>
|
| 472 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/SemposOverlapping.h</locationURI>
|
| 473 |
+
</link>
|
| 474 |
+
<link>
|
| 475 |
+
<name>SemposScorer.cpp</name>
|
| 476 |
+
<type>1</type>
|
| 477 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/SemposScorer.cpp</locationURI>
|
| 478 |
+
</link>
|
| 479 |
+
<link>
|
| 480 |
+
<name>SemposScorer.h</name>
|
| 481 |
+
<type>1</type>
|
| 482 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/SemposScorer.h</locationURI>
|
| 483 |
+
</link>
|
| 484 |
+
<link>
|
| 485 |
+
<name>SentenceLevelScorer.cpp</name>
|
| 486 |
+
<type>1</type>
|
| 487 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/SentenceLevelScorer.cpp</locationURI>
|
| 488 |
+
</link>
|
| 489 |
+
<link>
|
| 490 |
+
<name>SentenceLevelScorer.h</name>
|
| 491 |
+
<type>1</type>
|
| 492 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/SentenceLevelScorer.h</locationURI>
|
| 493 |
+
</link>
|
| 494 |
+
<link>
|
| 495 |
+
<name>Singleton.h</name>
|
| 496 |
+
<type>1</type>
|
| 497 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Singleton.h</locationURI>
|
| 498 |
+
</link>
|
| 499 |
+
<link>
|
| 500 |
+
<name>SingletonTest.cpp</name>
|
| 501 |
+
<type>1</type>
|
| 502 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/SingletonTest.cpp</locationURI>
|
| 503 |
+
</link>
|
| 504 |
+
<link>
|
| 505 |
+
<name>StatisticsBasedScorer.cpp</name>
|
| 506 |
+
<type>1</type>
|
| 507 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/StatisticsBasedScorer.cpp</locationURI>
|
| 508 |
+
</link>
|
| 509 |
+
<link>
|
| 510 |
+
<name>StatisticsBasedScorer.h</name>
|
| 511 |
+
<type>1</type>
|
| 512 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/StatisticsBasedScorer.h</locationURI>
|
| 513 |
+
</link>
|
| 514 |
+
<link>
|
| 515 |
+
<name>TER</name>
|
| 516 |
+
<type>2</type>
|
| 517 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 518 |
+
</link>
|
| 519 |
+
<link>
|
| 520 |
+
<name>TODO</name>
|
| 521 |
+
<type>1</type>
|
| 522 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TODO</locationURI>
|
| 523 |
+
</link>
|
| 524 |
+
<link>
|
| 525 |
+
<name>TerScorer.cpp</name>
|
| 526 |
+
<type>1</type>
|
| 527 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TerScorer.cpp</locationURI>
|
| 528 |
+
</link>
|
| 529 |
+
<link>
|
| 530 |
+
<name>TerScorer.h</name>
|
| 531 |
+
<type>1</type>
|
| 532 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TerScorer.h</locationURI>
|
| 533 |
+
</link>
|
| 534 |
+
<link>
|
| 535 |
+
<name>Timer.cpp</name>
|
| 536 |
+
<type>1</type>
|
| 537 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Timer.cpp</locationURI>
|
| 538 |
+
</link>
|
| 539 |
+
<link>
|
| 540 |
+
<name>Timer.h</name>
|
| 541 |
+
<type>1</type>
|
| 542 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Timer.h</locationURI>
|
| 543 |
+
</link>
|
| 544 |
+
<link>
|
| 545 |
+
<name>TimerTest.cpp</name>
|
| 546 |
+
<type>1</type>
|
| 547 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TimerTest.cpp</locationURI>
|
| 548 |
+
</link>
|
| 549 |
+
<link>
|
| 550 |
+
<name>Types.h</name>
|
| 551 |
+
<type>1</type>
|
| 552 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Types.h</locationURI>
|
| 553 |
+
</link>
|
| 554 |
+
<link>
|
| 555 |
+
<name>Util.cpp</name>
|
| 556 |
+
<type>1</type>
|
| 557 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Util.cpp</locationURI>
|
| 558 |
+
</link>
|
| 559 |
+
<link>
|
| 560 |
+
<name>Util.h</name>
|
| 561 |
+
<type>1</type>
|
| 562 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Util.h</locationURI>
|
| 563 |
+
</link>
|
| 564 |
+
<link>
|
| 565 |
+
<name>UtilTest.cpp</name>
|
| 566 |
+
<type>1</type>
|
| 567 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/UtilTest.cpp</locationURI>
|
| 568 |
+
</link>
|
| 569 |
+
<link>
|
| 570 |
+
<name>Vocabulary.cpp</name>
|
| 571 |
+
<type>1</type>
|
| 572 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Vocabulary.cpp</locationURI>
|
| 573 |
+
</link>
|
| 574 |
+
<link>
|
| 575 |
+
<name>Vocabulary.h</name>
|
| 576 |
+
<type>1</type>
|
| 577 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/Vocabulary.h</locationURI>
|
| 578 |
+
</link>
|
| 579 |
+
<link>
|
| 580 |
+
<name>VocabularyTest.cpp</name>
|
| 581 |
+
<type>1</type>
|
| 582 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/VocabularyTest.cpp</locationURI>
|
| 583 |
+
</link>
|
| 584 |
+
<link>
|
| 585 |
+
<name>bin</name>
|
| 586 |
+
<type>2</type>
|
| 587 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 588 |
+
</link>
|
| 589 |
+
<link>
|
| 590 |
+
<name>evaluator</name>
|
| 591 |
+
<type>1</type>
|
| 592 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/evaluator</locationURI>
|
| 593 |
+
</link>
|
| 594 |
+
<link>
|
| 595 |
+
<name>evaluator.cpp</name>
|
| 596 |
+
<type>1</type>
|
| 597 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/evaluator.cpp</locationURI>
|
| 598 |
+
</link>
|
| 599 |
+
<link>
|
| 600 |
+
<name>example</name>
|
| 601 |
+
<type>2</type>
|
| 602 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 603 |
+
</link>
|
| 604 |
+
<link>
|
| 605 |
+
<name>extractor</name>
|
| 606 |
+
<type>1</type>
|
| 607 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/extractor</locationURI>
|
| 608 |
+
</link>
|
| 609 |
+
<link>
|
| 610 |
+
<name>extractor.cpp</name>
|
| 611 |
+
<type>1</type>
|
| 612 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/extractor.cpp</locationURI>
|
| 613 |
+
</link>
|
| 614 |
+
<link>
|
| 615 |
+
<name>kbmira</name>
|
| 616 |
+
<type>1</type>
|
| 617 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/kbmira</locationURI>
|
| 618 |
+
</link>
|
| 619 |
+
<link>
|
| 620 |
+
<name>kbmira.cpp</name>
|
| 621 |
+
<type>1</type>
|
| 622 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/kbmira.cpp</locationURI>
|
| 623 |
+
</link>
|
| 624 |
+
<link>
|
| 625 |
+
<name>mert</name>
|
| 626 |
+
<type>1</type>
|
| 627 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/mert</locationURI>
|
| 628 |
+
</link>
|
| 629 |
+
<link>
|
| 630 |
+
<name>mert.cpp</name>
|
| 631 |
+
<type>1</type>
|
| 632 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/mert.cpp</locationURI>
|
| 633 |
+
</link>
|
| 634 |
+
<link>
|
| 635 |
+
<name>pro</name>
|
| 636 |
+
<type>1</type>
|
| 637 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/pro</locationURI>
|
| 638 |
+
</link>
|
| 639 |
+
<link>
|
| 640 |
+
<name>pro.cpp</name>
|
| 641 |
+
<type>1</type>
|
| 642 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/pro.cpp</locationURI>
|
| 643 |
+
</link>
|
| 644 |
+
<link>
|
| 645 |
+
<name>sentence-bleu</name>
|
| 646 |
+
<type>1</type>
|
| 647 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/sentence-bleu</locationURI>
|
| 648 |
+
</link>
|
| 649 |
+
<link>
|
| 650 |
+
<name>sentence-bleu.cpp</name>
|
| 651 |
+
<type>1</type>
|
| 652 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/sentence-bleu.cpp</locationURI>
|
| 653 |
+
</link>
|
| 654 |
+
<link>
|
| 655 |
+
<name>test_scorer_data</name>
|
| 656 |
+
<type>2</type>
|
| 657 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 658 |
+
</link>
|
| 659 |
+
<link>
|
| 660 |
+
<name>TER/alignmentStruct.cpp</name>
|
| 661 |
+
<type>1</type>
|
| 662 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/alignmentStruct.cpp</locationURI>
|
| 663 |
+
</link>
|
| 664 |
+
<link>
|
| 665 |
+
<name>TER/alignmentStruct.h</name>
|
| 666 |
+
<type>1</type>
|
| 667 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/alignmentStruct.h</locationURI>
|
| 668 |
+
</link>
|
| 669 |
+
<link>
|
| 670 |
+
<name>TER/bestShiftStruct.cpp</name>
|
| 671 |
+
<type>1</type>
|
| 672 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/bestShiftStruct.cpp</locationURI>
|
| 673 |
+
</link>
|
| 674 |
+
<link>
|
| 675 |
+
<name>TER/bestShiftStruct.h</name>
|
| 676 |
+
<type>1</type>
|
| 677 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/bestShiftStruct.h</locationURI>
|
| 678 |
+
</link>
|
| 679 |
+
<link>
|
| 680 |
+
<name>TER/hashMap.cpp</name>
|
| 681 |
+
<type>1</type>
|
| 682 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/hashMap.cpp</locationURI>
|
| 683 |
+
</link>
|
| 684 |
+
<link>
|
| 685 |
+
<name>TER/hashMap.h</name>
|
| 686 |
+
<type>1</type>
|
| 687 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/hashMap.h</locationURI>
|
| 688 |
+
</link>
|
| 689 |
+
<link>
|
| 690 |
+
<name>TER/hashMapInfos.cpp</name>
|
| 691 |
+
<type>1</type>
|
| 692 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/hashMapInfos.cpp</locationURI>
|
| 693 |
+
</link>
|
| 694 |
+
<link>
|
| 695 |
+
<name>TER/hashMapInfos.h</name>
|
| 696 |
+
<type>1</type>
|
| 697 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/hashMapInfos.h</locationURI>
|
| 698 |
+
</link>
|
| 699 |
+
<link>
|
| 700 |
+
<name>TER/hashMapStringInfos.cpp</name>
|
| 701 |
+
<type>1</type>
|
| 702 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/hashMapStringInfos.cpp</locationURI>
|
| 703 |
+
</link>
|
| 704 |
+
<link>
|
| 705 |
+
<name>TER/hashMapStringInfos.h</name>
|
| 706 |
+
<type>1</type>
|
| 707 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/hashMapStringInfos.h</locationURI>
|
| 708 |
+
</link>
|
| 709 |
+
<link>
|
| 710 |
+
<name>TER/infosHasher.cpp</name>
|
| 711 |
+
<type>1</type>
|
| 712 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/infosHasher.cpp</locationURI>
|
| 713 |
+
</link>
|
| 714 |
+
<link>
|
| 715 |
+
<name>TER/infosHasher.h</name>
|
| 716 |
+
<type>1</type>
|
| 717 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/infosHasher.h</locationURI>
|
| 718 |
+
</link>
|
| 719 |
+
<link>
|
| 720 |
+
<name>TER/stringHasher.cpp</name>
|
| 721 |
+
<type>1</type>
|
| 722 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/stringHasher.cpp</locationURI>
|
| 723 |
+
</link>
|
| 724 |
+
<link>
|
| 725 |
+
<name>TER/stringHasher.h</name>
|
| 726 |
+
<type>1</type>
|
| 727 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/stringHasher.h</locationURI>
|
| 728 |
+
</link>
|
| 729 |
+
<link>
|
| 730 |
+
<name>TER/stringInfosHasher.cpp</name>
|
| 731 |
+
<type>1</type>
|
| 732 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/stringInfosHasher.cpp</locationURI>
|
| 733 |
+
</link>
|
| 734 |
+
<link>
|
| 735 |
+
<name>TER/stringInfosHasher.h</name>
|
| 736 |
+
<type>1</type>
|
| 737 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/stringInfosHasher.h</locationURI>
|
| 738 |
+
</link>
|
| 739 |
+
<link>
|
| 740 |
+
<name>TER/terAlignment.cpp</name>
|
| 741 |
+
<type>1</type>
|
| 742 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/terAlignment.cpp</locationURI>
|
| 743 |
+
</link>
|
| 744 |
+
<link>
|
| 745 |
+
<name>TER/terAlignment.h</name>
|
| 746 |
+
<type>1</type>
|
| 747 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/terAlignment.h</locationURI>
|
| 748 |
+
</link>
|
| 749 |
+
<link>
|
| 750 |
+
<name>TER/terShift.cpp</name>
|
| 751 |
+
<type>1</type>
|
| 752 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/terShift.cpp</locationURI>
|
| 753 |
+
</link>
|
| 754 |
+
<link>
|
| 755 |
+
<name>TER/terShift.h</name>
|
| 756 |
+
<type>1</type>
|
| 757 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/terShift.h</locationURI>
|
| 758 |
+
</link>
|
| 759 |
+
<link>
|
| 760 |
+
<name>TER/tercalc.cpp</name>
|
| 761 |
+
<type>1</type>
|
| 762 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/tercalc.cpp</locationURI>
|
| 763 |
+
</link>
|
| 764 |
+
<link>
|
| 765 |
+
<name>TER/tercalc.h</name>
|
| 766 |
+
<type>1</type>
|
| 767 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/tercalc.h</locationURI>
|
| 768 |
+
</link>
|
| 769 |
+
<link>
|
| 770 |
+
<name>TER/tools.cpp</name>
|
| 771 |
+
<type>1</type>
|
| 772 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/tools.cpp</locationURI>
|
| 773 |
+
</link>
|
| 774 |
+
<link>
|
| 775 |
+
<name>TER/tools.h</name>
|
| 776 |
+
<type>1</type>
|
| 777 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/TER/tools.h</locationURI>
|
| 778 |
+
</link>
|
| 779 |
+
<link>
|
| 780 |
+
<name>bin/gcc-4.8</name>
|
| 781 |
+
<type>2</type>
|
| 782 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 783 |
+
</link>
|
| 784 |
+
<link>
|
| 785 |
+
<name>example/NBEST</name>
|
| 786 |
+
<type>1</type>
|
| 787 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/NBEST</locationURI>
|
| 788 |
+
</link>
|
| 789 |
+
<link>
|
| 790 |
+
<name>example/README.oldmert</name>
|
| 791 |
+
<type>1</type>
|
| 792 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/README.oldmert</locationURI>
|
| 793 |
+
</link>
|
| 794 |
+
<link>
|
| 795 |
+
<name>example/REF</name>
|
| 796 |
+
<type>1</type>
|
| 797 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/REF</locationURI>
|
| 798 |
+
</link>
|
| 799 |
+
<link>
|
| 800 |
+
<name>example/REF.0</name>
|
| 801 |
+
<type>1</type>
|
| 802 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/REF.0</locationURI>
|
| 803 |
+
</link>
|
| 804 |
+
<link>
|
| 805 |
+
<name>example/REF.1</name>
|
| 806 |
+
<type>1</type>
|
| 807 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/REF.1</locationURI>
|
| 808 |
+
</link>
|
| 809 |
+
<link>
|
| 810 |
+
<name>example/REF.2</name>
|
| 811 |
+
<type>1</type>
|
| 812 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/REF.2</locationURI>
|
| 813 |
+
</link>
|
| 814 |
+
<link>
|
| 815 |
+
<name>example/gzipped_test.sh</name>
|
| 816 |
+
<type>1</type>
|
| 817 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/gzipped_test.sh</locationURI>
|
| 818 |
+
</link>
|
| 819 |
+
<link>
|
| 820 |
+
<name>example/init.opt</name>
|
| 821 |
+
<type>1</type>
|
| 822 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/init.opt</locationURI>
|
| 823 |
+
</link>
|
| 824 |
+
<link>
|
| 825 |
+
<name>example/memcheck_extractor.sh</name>
|
| 826 |
+
<type>1</type>
|
| 827 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/memcheck_extractor.sh</locationURI>
|
| 828 |
+
</link>
|
| 829 |
+
<link>
|
| 830 |
+
<name>example/memcheck_mert.sh</name>
|
| 831 |
+
<type>1</type>
|
| 832 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/memcheck_mert.sh</locationURI>
|
| 833 |
+
</link>
|
| 834 |
+
<link>
|
| 835 |
+
<name>example/normal_test.sh</name>
|
| 836 |
+
<type>1</type>
|
| 837 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/normal_test.sh</locationURI>
|
| 838 |
+
</link>
|
| 839 |
+
<link>
|
| 840 |
+
<name>example/smoke_test.sh</name>
|
| 841 |
+
<type>1</type>
|
| 842 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/example/smoke_test.sh</locationURI>
|
| 843 |
+
</link>
|
| 844 |
+
<link>
|
| 845 |
+
<name>test_scorer_data/nbest.out</name>
|
| 846 |
+
<type>1</type>
|
| 847 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/test_scorer_data/nbest.out</locationURI>
|
| 848 |
+
</link>
|
| 849 |
+
<link>
|
| 850 |
+
<name>test_scorer_data/reference.txt</name>
|
| 851 |
+
<type>1</type>
|
| 852 |
+
<locationURI>PARENT-3-PROJECT_LOC/mert/test_scorer_data/reference.txt</locationURI>
|
| 853 |
+
</link>
|
| 854 |
+
<link>
|
| 855 |
+
<name>bin/gcc-4.8/release</name>
|
| 856 |
+
<type>2</type>
|
| 857 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 858 |
+
</link>
|
| 859 |
+
<link>
|
| 860 |
+
<name>bin/gcc-4.8/release/debug-symbols-on</name>
|
| 861 |
+
<type>2</type>
|
| 862 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 863 |
+
</link>
|
| 864 |
+
<link>
|
| 865 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static</name>
|
| 866 |
+
<type>2</type>
|
| 867 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 868 |
+
</link>
|
| 869 |
+
<link>
|
| 870 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi</name>
|
| 871 |
+
<type>2</type>
|
| 872 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 873 |
+
</link>
|
| 874 |
+
<link>
|
| 875 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/BleuDocScorer.o</name>
|
| 876 |
+
<type>1</type>
|
| 877 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/BleuDocScorer.o</location>
|
| 878 |
+
</link>
|
| 879 |
+
<link>
|
| 880 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/BleuScorer.o</name>
|
| 881 |
+
<type>1</type>
|
| 882 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/BleuScorer.o</location>
|
| 883 |
+
</link>
|
| 884 |
+
<link>
|
| 885 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/BleuScorerTest.o</name>
|
| 886 |
+
<type>1</type>
|
| 887 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/BleuScorerTest.o</location>
|
| 888 |
+
</link>
|
| 889 |
+
<link>
|
| 890 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/CderScorer.o</name>
|
| 891 |
+
<type>1</type>
|
| 892 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/CderScorer.o</location>
|
| 893 |
+
</link>
|
| 894 |
+
<link>
|
| 895 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Data.o</name>
|
| 896 |
+
<type>1</type>
|
| 897 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Data.o</location>
|
| 898 |
+
</link>
|
| 899 |
+
<link>
|
| 900 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/DataTest.o</name>
|
| 901 |
+
<type>1</type>
|
| 902 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/DataTest.o</location>
|
| 903 |
+
</link>
|
| 904 |
+
<link>
|
| 905 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureArray.o</name>
|
| 906 |
+
<type>1</type>
|
| 907 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureArray.o</location>
|
| 908 |
+
</link>
|
| 909 |
+
<link>
|
| 910 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureData.o</name>
|
| 911 |
+
<type>1</type>
|
| 912 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureData.o</location>
|
| 913 |
+
</link>
|
| 914 |
+
<link>
|
| 915 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureDataIterator.o</name>
|
| 916 |
+
<type>1</type>
|
| 917 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureDataIterator.o</location>
|
| 918 |
+
</link>
|
| 919 |
+
<link>
|
| 920 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureDataTest.o</name>
|
| 921 |
+
<type>1</type>
|
| 922 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureDataTest.o</location>
|
| 923 |
+
</link>
|
| 924 |
+
<link>
|
| 925 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureStats.o</name>
|
| 926 |
+
<type>1</type>
|
| 927 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FeatureStats.o</location>
|
| 928 |
+
</link>
|
| 929 |
+
<link>
|
| 930 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FileStream.o</name>
|
| 931 |
+
<type>1</type>
|
| 932 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/FileStream.o</location>
|
| 933 |
+
</link>
|
| 934 |
+
<link>
|
| 935 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/GzFileBuf.o</name>
|
| 936 |
+
<type>1</type>
|
| 937 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/GzFileBuf.o</location>
|
| 938 |
+
</link>
|
| 939 |
+
<link>
|
| 940 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/HypPackEnumerator.o</name>
|
| 941 |
+
<type>1</type>
|
| 942 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/HypPackEnumerator.o</location>
|
| 943 |
+
</link>
|
| 944 |
+
<link>
|
| 945 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/InterpolatedScorer.o</name>
|
| 946 |
+
<type>1</type>
|
| 947 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/InterpolatedScorer.o</location>
|
| 948 |
+
</link>
|
| 949 |
+
<link>
|
| 950 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/MeteorScorer.o</name>
|
| 951 |
+
<type>1</type>
|
| 952 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/MeteorScorer.o</location>
|
| 953 |
+
</link>
|
| 954 |
+
<link>
|
| 955 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/MiraFeatureVector.o</name>
|
| 956 |
+
<type>1</type>
|
| 957 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/MiraFeatureVector.o</location>
|
| 958 |
+
</link>
|
| 959 |
+
<link>
|
| 960 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/MiraWeightVector.o</name>
|
| 961 |
+
<type>1</type>
|
| 962 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/MiraWeightVector.o</location>
|
| 963 |
+
</link>
|
| 964 |
+
<link>
|
| 965 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/NgramTest.o</name>
|
| 966 |
+
<type>1</type>
|
| 967 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/NgramTest.o</location>
|
| 968 |
+
</link>
|
| 969 |
+
<link>
|
| 970 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Optimizer.o</name>
|
| 971 |
+
<type>1</type>
|
| 972 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Optimizer.o</location>
|
| 973 |
+
</link>
|
| 974 |
+
<link>
|
| 975 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/OptimizerFactory.o</name>
|
| 976 |
+
<type>1</type>
|
| 977 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/OptimizerFactory.o</location>
|
| 978 |
+
</link>
|
| 979 |
+
<link>
|
| 980 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/OptimizerFactoryTest.o</name>
|
| 981 |
+
<type>1</type>
|
| 982 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/OptimizerFactoryTest.o</location>
|
| 983 |
+
</link>
|
| 984 |
+
<link>
|
| 985 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/PerScorer.o</name>
|
| 986 |
+
<type>1</type>
|
| 987 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/PerScorer.o</location>
|
| 988 |
+
</link>
|
| 989 |
+
<link>
|
| 990 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Permutation.o</name>
|
| 991 |
+
<type>1</type>
|
| 992 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Permutation.o</location>
|
| 993 |
+
</link>
|
| 994 |
+
<link>
|
| 995 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/PermutationScorer.o</name>
|
| 996 |
+
<type>1</type>
|
| 997 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/PermutationScorer.o</location>
|
| 998 |
+
</link>
|
| 999 |
+
<link>
|
| 1000 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Point.o</name>
|
| 1001 |
+
<type>1</type>
|
| 1002 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Point.o</location>
|
| 1003 |
+
</link>
|
| 1004 |
+
<link>
|
| 1005 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/PointTest.o</name>
|
| 1006 |
+
<type>1</type>
|
| 1007 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/PointTest.o</location>
|
| 1008 |
+
</link>
|
| 1009 |
+
<link>
|
| 1010 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/PreProcessFilter.o</name>
|
| 1011 |
+
<type>1</type>
|
| 1012 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/PreProcessFilter.o</location>
|
| 1013 |
+
</link>
|
| 1014 |
+
<link>
|
| 1015 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ReferenceTest.o</name>
|
| 1016 |
+
<type>1</type>
|
| 1017 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ReferenceTest.o</location>
|
| 1018 |
+
</link>
|
| 1019 |
+
<link>
|
| 1020 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScoreArray.o</name>
|
| 1021 |
+
<type>1</type>
|
| 1022 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScoreArray.o</location>
|
| 1023 |
+
</link>
|
| 1024 |
+
<link>
|
| 1025 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScoreData.o</name>
|
| 1026 |
+
<type>1</type>
|
| 1027 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScoreData.o</location>
|
| 1028 |
+
</link>
|
| 1029 |
+
<link>
|
| 1030 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScoreDataIterator.o</name>
|
| 1031 |
+
<type>1</type>
|
| 1032 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScoreDataIterator.o</location>
|
| 1033 |
+
</link>
|
| 1034 |
+
<link>
|
| 1035 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScoreStats.o</name>
|
| 1036 |
+
<type>1</type>
|
| 1037 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScoreStats.o</location>
|
| 1038 |
+
</link>
|
| 1039 |
+
<link>
|
| 1040 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Scorer.o</name>
|
| 1041 |
+
<type>1</type>
|
| 1042 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Scorer.o</location>
|
| 1043 |
+
</link>
|
| 1044 |
+
<link>
|
| 1045 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScorerFactory.o</name>
|
| 1046 |
+
<type>1</type>
|
| 1047 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ScorerFactory.o</location>
|
| 1048 |
+
</link>
|
| 1049 |
+
<link>
|
| 1050 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/SemposOverlapping.o</name>
|
| 1051 |
+
<type>1</type>
|
| 1052 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/SemposOverlapping.o</location>
|
| 1053 |
+
</link>
|
| 1054 |
+
<link>
|
| 1055 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/SemposScorer.o</name>
|
| 1056 |
+
<type>1</type>
|
| 1057 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/SemposScorer.o</location>
|
| 1058 |
+
</link>
|
| 1059 |
+
<link>
|
| 1060 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/SentenceLevelScorer.o</name>
|
| 1061 |
+
<type>1</type>
|
| 1062 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/SentenceLevelScorer.o</location>
|
| 1063 |
+
</link>
|
| 1064 |
+
<link>
|
| 1065 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/SingletonTest.o</name>
|
| 1066 |
+
<type>1</type>
|
| 1067 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/SingletonTest.o</location>
|
| 1068 |
+
</link>
|
| 1069 |
+
<link>
|
| 1070 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/StatisticsBasedScorer.o</name>
|
| 1071 |
+
<type>1</type>
|
| 1072 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/StatisticsBasedScorer.o</location>
|
| 1073 |
+
</link>
|
| 1074 |
+
<link>
|
| 1075 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER</name>
|
| 1076 |
+
<type>2</type>
|
| 1077 |
+
<locationURI>virtual:/virtual</locationURI>
|
| 1078 |
+
</link>
|
| 1079 |
+
<link>
|
| 1080 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TerScorer.o</name>
|
| 1081 |
+
<type>1</type>
|
| 1082 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TerScorer.o</location>
|
| 1083 |
+
</link>
|
| 1084 |
+
<link>
|
| 1085 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ThreadPool.o</name>
|
| 1086 |
+
<type>1</type>
|
| 1087 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ThreadPool.o</location>
|
| 1088 |
+
</link>
|
| 1089 |
+
<link>
|
| 1090 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Timer.o</name>
|
| 1091 |
+
<type>1</type>
|
| 1092 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Timer.o</location>
|
| 1093 |
+
</link>
|
| 1094 |
+
<link>
|
| 1095 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TimerTest.o</name>
|
| 1096 |
+
<type>1</type>
|
| 1097 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TimerTest.o</location>
|
| 1098 |
+
</link>
|
| 1099 |
+
<link>
|
| 1100 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Util.o</name>
|
| 1101 |
+
<type>1</type>
|
| 1102 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Util.o</location>
|
| 1103 |
+
</link>
|
| 1104 |
+
<link>
|
| 1105 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/UtilTest.o</name>
|
| 1106 |
+
<type>1</type>
|
| 1107 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/UtilTest.o</location>
|
| 1108 |
+
</link>
|
| 1109 |
+
<link>
|
| 1110 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Vocabulary.o</name>
|
| 1111 |
+
<type>1</type>
|
| 1112 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/Vocabulary.o</location>
|
| 1113 |
+
</link>
|
| 1114 |
+
<link>
|
| 1115 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/VocabularyTest.o</name>
|
| 1116 |
+
<type>1</type>
|
| 1117 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/VocabularyTest.o</location>
|
| 1118 |
+
</link>
|
| 1119 |
+
<link>
|
| 1120 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/bleu_scorer_test</name>
|
| 1121 |
+
<type>1</type>
|
| 1122 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/bleu_scorer_test</location>
|
| 1123 |
+
</link>
|
| 1124 |
+
<link>
|
| 1125 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/bleu_scorer_test.passed</name>
|
| 1126 |
+
<type>1</type>
|
| 1127 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/bleu_scorer_test.passed</location>
|
| 1128 |
+
</link>
|
| 1129 |
+
<link>
|
| 1130 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/data_test</name>
|
| 1131 |
+
<type>1</type>
|
| 1132 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/data_test</location>
|
| 1133 |
+
</link>
|
| 1134 |
+
<link>
|
| 1135 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/data_test.passed</name>
|
| 1136 |
+
<type>1</type>
|
| 1137 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/data_test.passed</location>
|
| 1138 |
+
</link>
|
| 1139 |
+
<link>
|
| 1140 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/evaluator</name>
|
| 1141 |
+
<type>1</type>
|
| 1142 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/evaluator</location>
|
| 1143 |
+
</link>
|
| 1144 |
+
<link>
|
| 1145 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/evaluator.o</name>
|
| 1146 |
+
<type>1</type>
|
| 1147 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/evaluator.o</location>
|
| 1148 |
+
</link>
|
| 1149 |
+
<link>
|
| 1150 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/extractor</name>
|
| 1151 |
+
<type>1</type>
|
| 1152 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/extractor</location>
|
| 1153 |
+
</link>
|
| 1154 |
+
<link>
|
| 1155 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/extractor.o</name>
|
| 1156 |
+
<type>1</type>
|
| 1157 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/extractor.o</location>
|
| 1158 |
+
</link>
|
| 1159 |
+
<link>
|
| 1160 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/feature_data_test</name>
|
| 1161 |
+
<type>1</type>
|
| 1162 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/feature_data_test</location>
|
| 1163 |
+
</link>
|
| 1164 |
+
<link>
|
| 1165 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/feature_data_test.passed</name>
|
| 1166 |
+
<type>1</type>
|
| 1167 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/feature_data_test.passed</location>
|
| 1168 |
+
</link>
|
| 1169 |
+
<link>
|
| 1170 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/kbmira</name>
|
| 1171 |
+
<type>1</type>
|
| 1172 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/kbmira</location>
|
| 1173 |
+
</link>
|
| 1174 |
+
<link>
|
| 1175 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/kbmira.o</name>
|
| 1176 |
+
<type>1</type>
|
| 1177 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/kbmira.o</location>
|
| 1178 |
+
</link>
|
| 1179 |
+
<link>
|
| 1180 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/libmert_lib.a</name>
|
| 1181 |
+
<type>1</type>
|
| 1182 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/libmert_lib.a</location>
|
| 1183 |
+
</link>
|
| 1184 |
+
<link>
|
| 1185 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/mert</name>
|
| 1186 |
+
<type>1</type>
|
| 1187 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/mert</location>
|
| 1188 |
+
</link>
|
| 1189 |
+
<link>
|
| 1190 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/mert.o</name>
|
| 1191 |
+
<type>1</type>
|
| 1192 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/mert.o</location>
|
| 1193 |
+
</link>
|
| 1194 |
+
<link>
|
| 1195 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ngram_test</name>
|
| 1196 |
+
<type>1</type>
|
| 1197 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ngram_test</location>
|
| 1198 |
+
</link>
|
| 1199 |
+
<link>
|
| 1200 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ngram_test.passed</name>
|
| 1201 |
+
<type>1</type>
|
| 1202 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/ngram_test.passed</location>
|
| 1203 |
+
</link>
|
| 1204 |
+
<link>
|
| 1205 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/optimizer_factory_test</name>
|
| 1206 |
+
<type>1</type>
|
| 1207 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/optimizer_factory_test</location>
|
| 1208 |
+
</link>
|
| 1209 |
+
<link>
|
| 1210 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/optimizer_factory_test.passed</name>
|
| 1211 |
+
<type>1</type>
|
| 1212 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/optimizer_factory_test.passed</location>
|
| 1213 |
+
</link>
|
| 1214 |
+
<link>
|
| 1215 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/point_test</name>
|
| 1216 |
+
<type>1</type>
|
| 1217 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/point_test</location>
|
| 1218 |
+
</link>
|
| 1219 |
+
<link>
|
| 1220 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/point_test.passed</name>
|
| 1221 |
+
<type>1</type>
|
| 1222 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/point_test.passed</location>
|
| 1223 |
+
</link>
|
| 1224 |
+
<link>
|
| 1225 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/pro</name>
|
| 1226 |
+
<type>1</type>
|
| 1227 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/pro</location>
|
| 1228 |
+
</link>
|
| 1229 |
+
<link>
|
| 1230 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/pro.o</name>
|
| 1231 |
+
<type>1</type>
|
| 1232 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/pro.o</location>
|
| 1233 |
+
</link>
|
| 1234 |
+
<link>
|
| 1235 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/reference_test</name>
|
| 1236 |
+
<type>1</type>
|
| 1237 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/reference_test</location>
|
| 1238 |
+
</link>
|
| 1239 |
+
<link>
|
| 1240 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/reference_test.passed</name>
|
| 1241 |
+
<type>1</type>
|
| 1242 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/reference_test.passed</location>
|
| 1243 |
+
</link>
|
| 1244 |
+
<link>
|
| 1245 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/sentence-bleu</name>
|
| 1246 |
+
<type>1</type>
|
| 1247 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/sentence-bleu</location>
|
| 1248 |
+
</link>
|
| 1249 |
+
<link>
|
| 1250 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/sentence-bleu.o</name>
|
| 1251 |
+
<type>1</type>
|
| 1252 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/sentence-bleu.o</location>
|
| 1253 |
+
</link>
|
| 1254 |
+
<link>
|
| 1255 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/singleton_test</name>
|
| 1256 |
+
<type>1</type>
|
| 1257 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/singleton_test</location>
|
| 1258 |
+
</link>
|
| 1259 |
+
<link>
|
| 1260 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/singleton_test.passed</name>
|
| 1261 |
+
<type>1</type>
|
| 1262 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/singleton_test.passed</location>
|
| 1263 |
+
</link>
|
| 1264 |
+
<link>
|
| 1265 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/timer_test</name>
|
| 1266 |
+
<type>1</type>
|
| 1267 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/timer_test</location>
|
| 1268 |
+
</link>
|
| 1269 |
+
<link>
|
| 1270 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/timer_test.passed</name>
|
| 1271 |
+
<type>1</type>
|
| 1272 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/timer_test.passed</location>
|
| 1273 |
+
</link>
|
| 1274 |
+
<link>
|
| 1275 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/util_test</name>
|
| 1276 |
+
<type>1</type>
|
| 1277 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/util_test</location>
|
| 1278 |
+
</link>
|
| 1279 |
+
<link>
|
| 1280 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/util_test.passed</name>
|
| 1281 |
+
<type>1</type>
|
| 1282 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/util_test.passed</location>
|
| 1283 |
+
</link>
|
| 1284 |
+
<link>
|
| 1285 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/vocabulary_test</name>
|
| 1286 |
+
<type>1</type>
|
| 1287 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/vocabulary_test</location>
|
| 1288 |
+
</link>
|
| 1289 |
+
<link>
|
| 1290 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/vocabulary_test.passed</name>
|
| 1291 |
+
<type>1</type>
|
| 1292 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/vocabulary_test.passed</location>
|
| 1293 |
+
</link>
|
| 1294 |
+
<link>
|
| 1295 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/alignmentStruct.o</name>
|
| 1296 |
+
<type>1</type>
|
| 1297 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/alignmentStruct.o</location>
|
| 1298 |
+
</link>
|
| 1299 |
+
<link>
|
| 1300 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/hashMap.o</name>
|
| 1301 |
+
<type>1</type>
|
| 1302 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/hashMap.o</location>
|
| 1303 |
+
</link>
|
| 1304 |
+
<link>
|
| 1305 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/hashMapInfos.o</name>
|
| 1306 |
+
<type>1</type>
|
| 1307 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/hashMapInfos.o</location>
|
| 1308 |
+
</link>
|
| 1309 |
+
<link>
|
| 1310 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/hashMapStringInfos.o</name>
|
| 1311 |
+
<type>1</type>
|
| 1312 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/hashMapStringInfos.o</location>
|
| 1313 |
+
</link>
|
| 1314 |
+
<link>
|
| 1315 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/infosHasher.o</name>
|
| 1316 |
+
<type>1</type>
|
| 1317 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/infosHasher.o</location>
|
| 1318 |
+
</link>
|
| 1319 |
+
<link>
|
| 1320 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/stringHasher.o</name>
|
| 1321 |
+
<type>1</type>
|
| 1322 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/stringHasher.o</location>
|
| 1323 |
+
</link>
|
| 1324 |
+
<link>
|
| 1325 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/stringInfosHasher.o</name>
|
| 1326 |
+
<type>1</type>
|
| 1327 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/stringInfosHasher.o</location>
|
| 1328 |
+
</link>
|
| 1329 |
+
<link>
|
| 1330 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/terAlignment.o</name>
|
| 1331 |
+
<type>1</type>
|
| 1332 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/terAlignment.o</location>
|
| 1333 |
+
</link>
|
| 1334 |
+
<link>
|
| 1335 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/terShift.o</name>
|
| 1336 |
+
<type>1</type>
|
| 1337 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/terShift.o</location>
|
| 1338 |
+
</link>
|
| 1339 |
+
<link>
|
| 1340 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/tercalc.o</name>
|
| 1341 |
+
<type>1</type>
|
| 1342 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/tercalc.o</location>
|
| 1343 |
+
</link>
|
| 1344 |
+
<link>
|
| 1345 |
+
<name>bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/tools.o</name>
|
| 1346 |
+
<type>1</type>
|
| 1347 |
+
<location>/home/hieu/workspace/github/mosesdecoder/mert/bin/gcc-4.8/release/debug-symbols-on/link-static/threading-multi/TER/tools.o</location>
|
| 1348 |
+
</link>
|
| 1349 |
+
</linkedResources>
|
| 1350 |
+
</projectDescription>
|
mosesdecoder/contrib/other-builds/moses/.cproject
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
| 2 |
+
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
|
| 3 |
+
<storageModule moduleId="org.eclipse.cdt.core.settings">
|
| 4 |
+
<cconfiguration id="cdt.managedbuild.config.gnu.exe.debug.1846963597">
|
| 5 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.debug.1846963597" moduleId="org.eclipse.cdt.core.settings" name="Debug">
|
| 6 |
+
<externalSettings>
|
| 7 |
+
<externalSetting>
|
| 8 |
+
<entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/moses"/>
|
| 9 |
+
<entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/moses/Debug"/>
|
| 10 |
+
<entry flags="RESOLVED" kind="libraryFile" name="moses" srcPrefixMapping="" srcRootPath=""/>
|
| 11 |
+
</externalSetting>
|
| 12 |
+
</externalSettings>
|
| 13 |
+
<extensions>
|
| 14 |
+
<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 15 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 16 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 17 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 18 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 19 |
+
</extensions>
|
| 20 |
+
</storageModule>
|
| 21 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 22 |
+
<configuration artifactExtension="a" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.staticLib" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.staticLib,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.debug.1846963597" name="Debug" parent="cdt.managedbuild.config.gnu.exe.debug">
|
| 23 |
+
<folderInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597." name="/" resourcePath="">
|
| 24 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.exe.debug.1167373278" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.debug">
|
| 25 |
+
<targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.debug.397694981" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.debug"/>
|
| 26 |
+
<builder buildPath="${workspace_loc:/moses}/Debug" id="cdt.managedbuild.target.gnu.builder.exe.debug.1778877633" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" parallelBuildOn="true" parallelizationNumber="optimal" superClass="cdt.managedbuild.target.gnu.builder.exe.debug"/>
|
| 27 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.base.1097285966" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/>
|
| 28 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1729217620" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug">
|
| 29 |
+
<option id="gnu.cpp.compiler.exe.debug.option.optimization.level.1455257477" name="Optimization Level" superClass="gnu.cpp.compiler.exe.debug.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/>
|
| 30 |
+
<option id="gnu.cpp.compiler.exe.debug.option.debugging.level.227767392" name="Debug Level" superClass="gnu.cpp.compiler.exe.debug.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/>
|
| 31 |
+
<option id="gnu.cpp.compiler.option.include.paths.876218169" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath">
|
| 32 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../..""/>
|
| 33 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../boost/include""/>
|
| 34 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../cmph/include""/>
|
| 35 |
+
<listOptionValue builtIn="false" value=""${workspace_loc}/../../xmlrpc-c/include""/>
|
| 36 |
+
</option>
|
| 37 |
+
<option id="gnu.cpp.compiler.option.preprocessor.def.53427549" name="Defined symbols (-D)" superClass="gnu.cpp.compiler.option.preprocessor.def" useByScannerDiscovery="false" valueType="definedSymbols">
|
| 38 |
+
<listOptionValue builtIn="false" value="HAVE_XMLRPC_C"/>
|
| 39 |
+
<listOptionValue builtIn="false" value="MOSES_VERSION_ID=0"/>
|
| 40 |
+
<listOptionValue builtIn="false" value="HAVE_CMPH"/>
|
| 41 |
+
<listOptionValue builtIn="false" value="MAX_NUM_FACTORS=4"/>
|
| 42 |
+
<listOptionValue builtIn="false" value="KENLM_MAX_ORDER=7"/>
|
| 43 |
+
<listOptionValue builtIn="false" value="WITH_THREADS"/>
|
| 44 |
+
<listOptionValue builtIn="false" value="_FILE_OFFSET_BITS=64"/>
|
| 45 |
+
<listOptionValue builtIn="false" value="_LARGE_FILES"/>
|
| 46 |
+
</option>
|
| 47 |
+
<option id="gnu.cpp.compiler.option.dialect.std.1869920346" name="Language standard" superClass="gnu.cpp.compiler.option.dialect.std" useByScannerDiscovery="true" value="gnu.cpp.compiler.dialect.default" valueType="enumerated"/>
|
| 48 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1023855536" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 49 |
+
</tool>
|
| 50 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1313249282" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug">
|
| 51 |
+
<option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.exe.debug.option.optimization.level.146557271" name="Optimization Level" superClass="gnu.c.compiler.exe.debug.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
| 52 |
+
<option id="gnu.c.compiler.exe.debug.option.debugging.level.1656486500" name="Debug Level" superClass="gnu.c.compiler.exe.debug.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.max" valueType="enumerated"/>
|
| 53 |
+
<option id="gnu.c.compiler.option.dialect.std.1722325939" superClass="gnu.c.compiler.option.dialect.std" useByScannerDiscovery="true" value="gnu.c.compiler.dialect.c11" valueType="enumerated"/>
|
| 54 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.570559630" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 55 |
+
</tool>
|
| 56 |
+
<tool id="cdt.managedbuild.tool.gnu.c.linker.exe.debug.1471271407" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.debug"/>
|
| 57 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug.1144959654" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.debug">
|
| 58 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.323925091" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input">
|
| 59 |
+
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
|
| 60 |
+
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
|
| 61 |
+
</inputType>
|
| 62 |
+
</tool>
|
| 63 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.exe.debug.1362368838" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug">
|
| 64 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.383587863" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 65 |
+
</tool>
|
| 66 |
+
</toolChain>
|
| 67 |
+
</folderInfo>
|
| 68 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.1761300858" name="ParallelBackoff.h" rcbsApplicability="disable" resourcePath="LM/ParallelBackoff.h" toolsToInvoke=""/>
|
| 69 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.1815042864" name="SRI.h" rcbsApplicability="disable" resourcePath="LM/SRI.h" toolsToInvoke=""/>
|
| 70 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.1720439764" name="NeuralLMWrapper.h" rcbsApplicability="disable" resourcePath="LM/NeuralLMWrapper.h" toolsToInvoke=""/>
|
| 71 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.1094892289" name="MaxEntSRI.h" rcbsApplicability="disable" resourcePath="LM/MaxEntSRI.h" toolsToInvoke=""/>
|
| 72 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.1113398114" name="Rand.h" rcbsApplicability="disable" resourcePath="LM/Rand.h" toolsToInvoke=""/>
|
| 73 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.1183410636" name="ORLM.h" rcbsApplicability="disable" resourcePath="LM/ORLM.h" toolsToInvoke=""/>
|
| 74 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.1448475064" name="IRST.h" rcbsApplicability="disable" resourcePath="LM/IRST.h" toolsToInvoke=""/>
|
| 75 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.1272004353" name="BilingualLM.h" rcbsApplicability="disable" resourcePath="LM/BilingualLM.h" toolsToInvoke=""/>
|
| 76 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.1459438132" name="DALMWrapper.h" rcbsApplicability="disable" resourcePath="LM/DALMWrapper.h" toolsToInvoke=""/>
|
| 77 |
+
<fileInfo id="cdt.managedbuild.config.gnu.exe.debug.1846963597.871386239" name="LDHT.h" rcbsApplicability="disable" resourcePath="LM/LDHT.h" toolsToInvoke=""/>
|
| 78 |
+
<sourceEntries>
|
| 79 |
+
<entry excluding="TranslationModel/UG|TranslationModel/UG/ptable-lookup.cc|TranslationModel/UG/ptable-lookup-corpus.cc|TranslationModel/UG/mm/test-http-client.cc|TranslationModel/UG/ptable-describe-features.cc|TranslationModel/UG/count-ptable-features.cc|TranslationModel/UG/try-align2.cc|TranslationModel/UG/try-align.cc|TranslationModel/UG/spe-check-coverage3.cc|TranslationModel/UG/spe-check-coverage2.cc|TranslationModel/UG/spe-check-coverage.cc|TranslationModel/UG/sim-pe.cc|TranslationModel/UG/generic/stringdist|TranslationModel/UG/mm/test-dynamic-im-tsa.cc|TranslationModel/UG/mm/mtt.count.cc|LM/ParallelBackoff.h|LM/ParallelBackoff.cpp|LM/bilingual-lm|LM/MaxEntSRI.h|LM/MaxEntSRI.cpp|LM/BilingualLM.h|LM/BilingualLM.cpp|LM/Rand.h|LM/Rand.cpp|LM/LDHT.h|LM/LDHT.cpp|LM/ORLM.h|LM/ORLM.cpp|LM/NeuralLMWrapper.h|LM/NeuralLMWrapper.cpp|LM/SRI.h|LM/SRI.cpp|LM/IRST.h|LM/IRST.cpp|LM/DALMWrapper.h|LM/DALMWrapper.cpp|LM/oxlm|TranslationModel/UG/util" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
| 80 |
+
</sourceEntries>
|
| 81 |
+
</configuration>
|
| 82 |
+
</storageModule>
|
| 83 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 84 |
+
</cconfiguration>
|
| 85 |
+
<cconfiguration id="cdt.managedbuild.config.gnu.exe.release.1911984684">
|
| 86 |
+
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.exe.release.1911984684" moduleId="org.eclipse.cdt.core.settings" name="Release">
|
| 87 |
+
<externalSettings/>
|
| 88 |
+
<extensions>
|
| 89 |
+
<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
| 90 |
+
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 91 |
+
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 92 |
+
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 93 |
+
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 94 |
+
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
| 95 |
+
</extensions>
|
| 96 |
+
</storageModule>
|
| 97 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 98 |
+
<configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.exe.release.1911984684" name="Release" parent="cdt.managedbuild.config.gnu.exe.release">
|
| 99 |
+
<folderInfo id="cdt.managedbuild.config.gnu.exe.release.1911984684." name="/" resourcePath="">
|
| 100 |
+
<toolChain id="cdt.managedbuild.toolchain.gnu.exe.release.1552241309" name="Linux GCC" superClass="cdt.managedbuild.toolchain.gnu.exe.release">
|
| 101 |
+
<targetPlatform id="cdt.managedbuild.target.gnu.platform.exe.release.332871558" name="Debug Platform" superClass="cdt.managedbuild.target.gnu.platform.exe.release"/>
|
| 102 |
+
<builder buildPath="${workspace_loc:/moses}/Release" id="cdt.managedbuild.target.gnu.builder.exe.release.391025866" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="cdt.managedbuild.target.gnu.builder.exe.release"/>
|
| 103 |
+
<tool id="cdt.managedbuild.tool.gnu.archiver.base.1623685179" name="GCC Archiver" superClass="cdt.managedbuild.tool.gnu.archiver.base"/>
|
| 104 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1914197251" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.release">
|
| 105 |
+
<option id="gnu.cpp.compiler.exe.release.option.optimization.level.2144875045" name="Optimization Level" superClass="gnu.cpp.compiler.exe.release.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/>
|
| 106 |
+
<option id="gnu.cpp.compiler.exe.release.option.debugging.level.9472765" name="Debug Level" superClass="gnu.cpp.compiler.exe.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/>
|
| 107 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.1143887599" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
|
| 108 |
+
</tool>
|
| 109 |
+
<tool id="cdt.managedbuild.tool.gnu.c.compiler.exe.release.1469504539" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.release">
|
| 110 |
+
<option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.exe.release.option.optimization.level.1950806117" name="Optimization Level" superClass="gnu.c.compiler.exe.release.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
| 111 |
+
<option id="gnu.c.compiler.exe.release.option.debugging.level.1109082339" name="Debug Level" superClass="gnu.c.compiler.exe.release.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.none" valueType="enumerated"/>
|
| 112 |
+
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.2103068478" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
| 113 |
+
</tool>
|
| 114 |
+
<tool id="cdt.managedbuild.tool.gnu.c.linker.exe.release.105686784" name="GCC C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.exe.release"/>
|
| 115 |
+
<tool id="cdt.managedbuild.tool.gnu.cpp.linker.exe.release.888859695" name="GCC C++ Linker" superClass="cdt.managedbuild.tool.gnu.cpp.linker.exe.release">
|
| 116 |
+
<inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.1025399565" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input">
|
| 117 |
+
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
|
| 118 |
+
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
|
| 119 |
+
</inputType>
|
| 120 |
+
</tool>
|
| 121 |
+
<tool id="cdt.managedbuild.tool.gnu.assembler.exe.release.136178961" name="GCC Assembler" superClass="cdt.managedbuild.tool.gnu.assembler.exe.release">
|
| 122 |
+
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.1636213141" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
| 123 |
+
</tool>
|
| 124 |
+
</toolChain>
|
| 125 |
+
</folderInfo>
|
| 126 |
+
</configuration>
|
| 127 |
+
</storageModule>
|
| 128 |
+
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
| 129 |
+
</cconfiguration>
|
| 130 |
+
</storageModule>
|
| 131 |
+
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
| 132 |
+
<project id="moses.cdt.managedbuild.target.gnu.exe.129952716" name="Executable" projectType="cdt.managedbuild.target.gnu.exe"/>
|
| 133 |
+
</storageModule>
|
| 134 |
+
<storageModule moduleId="scannerConfiguration">
|
| 135 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 136 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1846963597;cdt.managedbuild.config.gnu.exe.debug.1846963597.;cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1313249282;cdt.managedbuild.tool.gnu.c.compiler.input.570559630">
|
| 137 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 138 |
+
</scannerConfigBuildInfo>
|
| 139 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1911984684;cdt.managedbuild.config.gnu.exe.release.1911984684.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.release.1914197251;cdt.managedbuild.tool.gnu.cpp.compiler.input.1143887599">
|
| 140 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 141 |
+
</scannerConfigBuildInfo>
|
| 142 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.debug.1846963597;cdt.managedbuild.config.gnu.exe.debug.1846963597.;cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.1729217620;cdt.managedbuild.tool.gnu.cpp.compiler.input.1023855536">
|
| 143 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 144 |
+
</scannerConfigBuildInfo>
|
| 145 |
+
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.exe.release.1911984684;cdt.managedbuild.config.gnu.exe.release.1911984684.;cdt.managedbuild.tool.gnu.c.compiler.exe.release.1469504539;cdt.managedbuild.tool.gnu.c.compiler.input.2103068478">
|
| 146 |
+
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
| 147 |
+
</scannerConfigBuildInfo>
|
| 148 |
+
</storageModule>
|
| 149 |
+
<storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
|
| 150 |
+
<storageModule moduleId="refreshScope" versionNumber="2">
|
| 151 |
+
<configuration configurationName="Release">
|
| 152 |
+
<resource resourceType="PROJECT" workspacePath="/moses"/>
|
| 153 |
+
</configuration>
|
| 154 |
+
<configuration configurationName="Debug">
|
| 155 |
+
<resource resourceType="PROJECT" workspacePath="/moses"/>
|
| 156 |
+
</configuration>
|
| 157 |
+
</storageModule>
|
| 158 |
+
<storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>
|
| 159 |
+
<storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/>
|
| 160 |
+
</cproject>
|
mosesdecoder/contrib/other-builds/moses/.project
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
mosesdecoder/contrib/other-builds/moses/moses.project
ADDED
|
@@ -0,0 +1,903 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<CodeLite_Project Name="moses" InternalType="Library">
|
| 3 |
+
<Plugins>
|
| 4 |
+
<Plugin Name="qmake">
|
| 5 |
+
<![CDATA[00010001N0005Debug000000000000]]>
|
| 6 |
+
</Plugin>
|
| 7 |
+
<Plugin Name="CMakePlugin">
|
| 8 |
+
<![CDATA[[{
|
| 9 |
+
"name": "Debug",
|
| 10 |
+
"enabled": false,
|
| 11 |
+
"buildDirectory": "build",
|
| 12 |
+
"sourceDirectory": "$(ProjectPath)",
|
| 13 |
+
"generator": "",
|
| 14 |
+
"buildType": "",
|
| 15 |
+
"arguments": [],
|
| 16 |
+
"parentProject": ""
|
| 17 |
+
}]]]>
|
| 18 |
+
</Plugin>
|
| 19 |
+
</Plugins>
|
| 20 |
+
<VirtualDirectory Name="TranslationModel">
|
| 21 |
+
<VirtualDirectory Name="UG">
|
| 22 |
+
<VirtualDirectory Name="mm">
|
| 23 |
+
<VirtualDirectory Name="obsolete">
|
| 24 |
+
<File Name="../../../moses/TranslationModel/UG/mm/obsolete/ug_bitext_base.h"/>
|
| 25 |
+
</VirtualDirectory>
|
| 26 |
+
<File Name="../../../moses/TranslationModel/UG/mm/calc-coverage.cc" ExcludeProjConfig="Debug"/>
|
| 27 |
+
<File Name="../../../moses/TranslationModel/UG/mm/custom-pt.cc" ExcludeProjConfig="Debug"/>
|
| 28 |
+
<File Name="../../../moses/TranslationModel/UG/mm/mam2symal.cc" ExcludeProjConfig="Debug"/>
|
| 29 |
+
<File Name="../../../moses/TranslationModel/UG/mm/mam_verify.cc" ExcludeProjConfig="Debug"/>
|
| 30 |
+
<File Name="../../../moses/TranslationModel/UG/mm/mmlex-build.cc" ExcludeProjConfig="Debug"/>
|
| 31 |
+
<File Name="../../../moses/TranslationModel/UG/mm/mmlex-lookup.cc" ExcludeProjConfig="Debug"/>
|
| 32 |
+
<File Name="../../../moses/TranslationModel/UG/mm/mtt-build.cc" ExcludeProjConfig="Debug"/>
|
| 33 |
+
<File Name="../../../moses/TranslationModel/UG/mm/mtt-count-words.cc" ExcludeProjConfig="Debug"/>
|
| 34 |
+
<File Name="../../../moses/TranslationModel/UG/mm/mtt-demo1.cc" ExcludeProjConfig="Debug"/>
|
| 35 |
+
<File Name="../../../moses/TranslationModel/UG/mm/mtt-dump.cc" ExcludeProjConfig="Debug"/>
|
| 36 |
+
<File Name="../../../moses/TranslationModel/UG/mm/mtt.count.cc" ExcludeProjConfig="Debug"/>
|
| 37 |
+
<File Name="../../../moses/TranslationModel/UG/mm/num_read_write.cc" ExcludeProjConfig="Debug"/>
|
| 38 |
+
<File Name="../../../moses/TranslationModel/UG/mm/num_read_write.h" ExcludeProjConfig="Debug"/>
|
| 39 |
+
<File Name="../../../moses/TranslationModel/UG/mm/symal2mam.cc" ExcludeProjConfig="Debug"/>
|
| 40 |
+
<File Name="../../../moses/TranslationModel/UG/mm/test-dynamic-im-tsa.cc" ExcludeProjConfig="Debug"/>
|
| 41 |
+
<File Name="../../../moses/TranslationModel/UG/mm/tpt_pickler.cc"/>
|
| 42 |
+
<File Name="../../../moses/TranslationModel/UG/mm/tpt_pickler.h"/>
|
| 43 |
+
<File Name="../../../moses/TranslationModel/UG/mm/tpt_tightindex.cc"/>
|
| 44 |
+
<File Name="../../../moses/TranslationModel/UG/mm/tpt_tightindex.h"/>
|
| 45 |
+
<File Name="../../../moses/TranslationModel/UG/mm/tpt_tokenindex.cc"/>
|
| 46 |
+
<File Name="../../../moses/TranslationModel/UG/mm/tpt_tokenindex.h"/>
|
| 47 |
+
<File Name="../../../moses/TranslationModel/UG/mm/tpt_typedefs.h"/>
|
| 48 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_bitext.cc"/>
|
| 49 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_bitext.h"/>
|
| 50 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_conll_bottom_up_token.h"/>
|
| 51 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_conll_record.cc"/>
|
| 52 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_conll_record.h"/>
|
| 53 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_corpus_token.cc"/>
|
| 54 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_corpus_token.h"/>
|
| 55 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_deptree.cc"/>
|
| 56 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_deptree.h"/>
|
| 57 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_im_tsa.h"/>
|
| 58 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_im_ttrack.h"/>
|
| 59 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_lexical_phrase_scorer1.h"/>
|
| 60 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_lexical_phrase_scorer2.h"/>
|
| 61 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_lexical_reordering.cc"/>
|
| 62 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_lexical_reordering.h"/>
|
| 63 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_load_primer.cc"/>
|
| 64 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_load_primer.h"/>
|
| 65 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_lru_cache.h"/>
|
| 66 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_mm_2d_table.h"/>
|
| 67 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_mm_tsa.h"/>
|
| 68 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_mm_tsa_tree_iterator.h"/>
|
| 69 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_mm_ttrack.h"/>
|
| 70 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_mmbitext.cc"/>
|
| 71 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_mmbitext.h"/>
|
| 72 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_phrasepair.cc"/>
|
| 73 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_phrasepair.h"/>
|
| 74 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_tsa_array_entry.cc"/>
|
| 75 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_tsa_array_entry.h"/>
|
| 76 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_tsa_base.h"/>
|
| 77 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_tsa_bitset_cache.h"/>
|
| 78 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_tsa_tree_iterator.h"/>
|
| 79 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_ttrack_base.cc"/>
|
| 80 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_ttrack_base.h"/>
|
| 81 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_ttrack_position.cc"/>
|
| 82 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_ttrack_position.h"/>
|
| 83 |
+
<File Name="../../../moses/TranslationModel/UG/mm/ug_typedefs.h"/>
|
| 84 |
+
</VirtualDirectory>
|
| 85 |
+
<VirtualDirectory Name="generic">
|
| 86 |
+
<VirtualDirectory Name="file_io">
|
| 87 |
+
<File Name="../../../moses/TranslationModel/UG/generic/file_io/ug_stream.cpp"/>
|
| 88 |
+
<File Name="../../../moses/TranslationModel/UG/generic/file_io/ug_stream.h"/>
|
| 89 |
+
</VirtualDirectory>
|
| 90 |
+
<VirtualDirectory Name="program_options">
|
| 91 |
+
<File Name="../../../moses/TranslationModel/UG/generic/program_options/ug_get_options.cpp"/>
|
| 92 |
+
<File Name="../../../moses/TranslationModel/UG/generic/program_options/ug_get_options.h"/>
|
| 93 |
+
<File Name="../../../moses/TranslationModel/UG/generic/program_options/ug_splice_arglist.cc"/>
|
| 94 |
+
<File Name="../../../moses/TranslationModel/UG/generic/program_options/ug_splice_arglist.h"/>
|
| 95 |
+
</VirtualDirectory>
|
| 96 |
+
<VirtualDirectory Name="sampling">
|
| 97 |
+
<File Name="../../../moses/TranslationModel/UG/generic/sampling/Sampling.h"/>
|
| 98 |
+
</VirtualDirectory>
|
| 99 |
+
<VirtualDirectory Name="sorting">
|
| 100 |
+
<File Name="../../../moses/TranslationModel/UG/generic/sorting/NBestList.h"/>
|
| 101 |
+
<File Name="../../../moses/TranslationModel/UG/generic/sorting/VectorIndexSorter.h"/>
|
| 102 |
+
</VirtualDirectory>
|
| 103 |
+
<VirtualDirectory Name="stringdist">
|
| 104 |
+
<File Name="../../../moses/TranslationModel/UG/generic/stringdist/ug_stringdist.cc" ExcludeProjConfig="Debug"/>
|
| 105 |
+
<File Name="../../../moses/TranslationModel/UG/generic/stringdist/ug_stringdist.h" ExcludeProjConfig="Debug"/>
|
| 106 |
+
</VirtualDirectory>
|
| 107 |
+
<VirtualDirectory Name="threading">
|
| 108 |
+
<File Name="../../../moses/TranslationModel/UG/generic/threading/ug_thread_safe_counter.cc"/>
|
| 109 |
+
<File Name="../../../moses/TranslationModel/UG/generic/threading/ug_thread_safe_counter.h"/>
|
| 110 |
+
</VirtualDirectory>
|
| 111 |
+
</VirtualDirectory>
|
| 112 |
+
<VirtualDirectory Name="util">
|
| 113 |
+
<File Name="../../../moses/TranslationModel/UG/util/ibm1-align.cc" ExcludeProjConfig="Debug"/>
|
| 114 |
+
<File Name="../../../moses/TranslationModel/UG/util/tokenindex.dump.cc" ExcludeProjConfig="Debug"/>
|
| 115 |
+
</VirtualDirectory>
|
| 116 |
+
<File Name="../../../moses/TranslationModel/UG/count-ptable-features.cc"/>
|
| 117 |
+
<File Name="../../../moses/TranslationModel/UG/mmsapt.cpp"/>
|
| 118 |
+
<File Name="../../../moses/TranslationModel/UG/mmsapt.h"/>
|
| 119 |
+
<File Name="../../../moses/TranslationModel/UG/mmsapt_align.cc"/>
|
| 120 |
+
<File Name="../../../moses/TranslationModel/UG/ptable-describe-features.cc"/>
|
| 121 |
+
<File Name="../../../moses/TranslationModel/UG/ptable-lookup.cc"/>
|
| 122 |
+
<File Name="../../../moses/TranslationModel/UG/ptable-lookup-corpus.cc"/>
|
| 123 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_phrase_key.h"/>
|
| 124 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_phrase_scorers.h"/>
|
| 125 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_base.h"/>
|
| 126 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_coherence.h"/>
|
| 127 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_lex1.h"/>
|
| 128 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_logcnt.h"/>
|
| 129 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_pbwd.h"/>
|
| 130 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_pfwd.h"/>
|
| 131 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_phrasecount.h"/>
|
| 132 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_provenance.h"/>
|
| 133 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_rareness.h"/>
|
| 134 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_unaligned.h"/>
|
| 135 |
+
<File Name="../../../moses/TranslationModel/UG/sapt_pscore_wordcount.h"/>
|
| 136 |
+
<File Name="../../../moses/TranslationModel/UG/sim-pe.cc" ExcludeProjConfig="Debug"/>
|
| 137 |
+
<File Name="../../../moses/TranslationModel/UG/spe-check-coverage.cc" ExcludeProjConfig="Debug"/>
|
| 138 |
+
<File Name="../../../moses/TranslationModel/UG/spe-check-coverage2.cc" ExcludeProjConfig="Debug"/>
|
| 139 |
+
<File Name="../../../moses/TranslationModel/UG/spe-check-coverage3.cc" ExcludeProjConfig="Debug"/>
|
| 140 |
+
<File Name="../../../moses/TranslationModel/UG/try-align.cc" ExcludeProjConfig="Debug"/>
|
| 141 |
+
<File Name="../../../moses/TranslationModel/UG/try-align2.cc" ExcludeProjConfig="Debug"/>
|
| 142 |
+
</VirtualDirectory>
|
| 143 |
+
<VirtualDirectory Name="CompactPT">
|
| 144 |
+
<File Name="../../../moses/TranslationModel/CompactPT/BlockHashIndex.cpp"/>
|
| 145 |
+
<File Name="../../../moses/TranslationModel/CompactPT/BlockHashIndex.h"/>
|
| 146 |
+
<File Name="../../../moses/TranslationModel/CompactPT/CanonicalHuffman.h"/>
|
| 147 |
+
<File Name="../../../moses/TranslationModel/CompactPT/CmphStringVectorAdapter.cpp"/>
|
| 148 |
+
<File Name="../../../moses/TranslationModel/CompactPT/CmphStringVectorAdapter.h"/>
|
| 149 |
+
<File Name="../../../moses/TranslationModel/CompactPT/ConsistentPhrases.h"/>
|
| 150 |
+
<File Name="../../../moses/TranslationModel/CompactPT/LexicalReorderingTableCompact.cpp"/>
|
| 151 |
+
<File Name="../../../moses/TranslationModel/CompactPT/LexicalReorderingTableCompact.h"/>
|
| 152 |
+
<File Name="../../../moses/TranslationModel/CompactPT/LexicalReorderingTableCreator.cpp"/>
|
| 153 |
+
<File Name="../../../moses/TranslationModel/CompactPT/LexicalReorderingTableCreator.h"/>
|
| 154 |
+
<File Name="../../../moses/TranslationModel/CompactPT/ListCoders.h"/>
|
| 155 |
+
<File Name="../../../moses/TranslationModel/CompactPT/MmapAllocator.h"/>
|
| 156 |
+
<File Name="../../../moses/TranslationModel/CompactPT/MonotonicVector.h"/>
|
| 157 |
+
<File Name="../../../moses/TranslationModel/CompactPT/MurmurHash3.cpp"/>
|
| 158 |
+
<File Name="../../../moses/TranslationModel/CompactPT/MurmurHash3.h"/>
|
| 159 |
+
<File Name="../../../moses/TranslationModel/CompactPT/PackedArray.h"/>
|
| 160 |
+
<File Name="../../../moses/TranslationModel/CompactPT/PhraseDecoder.cpp"/>
|
| 161 |
+
<File Name="../../../moses/TranslationModel/CompactPT/PhraseDecoder.h"/>
|
| 162 |
+
<File Name="../../../moses/TranslationModel/CompactPT/PhraseDictionaryCompact.cpp"/>
|
| 163 |
+
<File Name="../../../moses/TranslationModel/CompactPT/PhraseDictionaryCompact.h"/>
|
| 164 |
+
<File Name="../../../moses/TranslationModel/CompactPT/PhraseTableCreator.cpp"/>
|
| 165 |
+
<File Name="../../../moses/TranslationModel/CompactPT/PhraseTableCreator.h"/>
|
| 166 |
+
<File Name="../../../moses/TranslationModel/CompactPT/StringVector.h"/>
|
| 167 |
+
<File Name="../../../moses/TranslationModel/CompactPT/StringVectorTemp.h"/>
|
| 168 |
+
<File Name="../../../moses/TranslationModel/CompactPT/TargetPhraseCollectionCache.h"/>
|
| 169 |
+
<File Name="../../../moses/TranslationModel/CompactPT/ThrowingFwrite.cpp"/>
|
| 170 |
+
<File Name="../../../moses/TranslationModel/CompactPT/ThrowingFwrite.h"/>
|
| 171 |
+
</VirtualDirectory>
|
| 172 |
+
<VirtualDirectory Name="CYKPlusParser">
|
| 173 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerCYKPlus.cpp"/>
|
| 174 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerCYKPlus.h"/>
|
| 175 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerMemory.cpp"/>
|
| 176 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerMemory.h"/>
|
| 177 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerMemoryPerSentence.cpp"/>
|
| 178 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerMemoryPerSentence.h"/>
|
| 179 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerOnDisk.cpp"/>
|
| 180 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerOnDisk.h"/>
|
| 181 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerSkeleton.cpp"/>
|
| 182 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerSkeleton.h"/>
|
| 183 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/CompletedRuleCollection.cpp"/>
|
| 184 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/CompletedRuleCollection.h"/>
|
| 185 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/DotChart.h"/>
|
| 186 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/DotChartInMemory.cpp"/>
|
| 187 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/DotChartInMemory.h"/>
|
| 188 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/DotChartOnDisk.cpp"/>
|
| 189 |
+
<File Name="../../../moses/TranslationModel/CYKPlusParser/DotChartOnDisk.h"/>
|
| 190 |
+
</VirtualDirectory>
|
| 191 |
+
<VirtualDirectory Name="DynSAInclude">
|
| 192 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/fdstream.h"/>
|
| 193 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/FileHandler.cpp"/>
|
| 194 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/FileHandler.h"/>
|
| 195 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/hash.h"/>
|
| 196 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/onlineRLM.h"/>
|
| 197 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/params.cpp"/>
|
| 198 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/params.h"/>
|
| 199 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/perfectHash.h"/>
|
| 200 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/quantizer.h"/>
|
| 201 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/RandLMCache.h"/>
|
| 202 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/RandLMFilter.h"/>
|
| 203 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/types.h"/>
|
| 204 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/utils.h"/>
|
| 205 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/vocab.cpp"/>
|
| 206 |
+
<File Name="../../../moses/TranslationModel/DynSAInclude/vocab.h"/>
|
| 207 |
+
</VirtualDirectory>
|
| 208 |
+
<VirtualDirectory Name="fuzzy-match">
|
| 209 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/Alignments.cpp"/>
|
| 210 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/Alignments.h"/>
|
| 211 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/create_xml.cpp"/>
|
| 212 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/create_xml.h"/>
|
| 213 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/FuzzyMatchWrapper.cpp"/>
|
| 214 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/FuzzyMatchWrapper.h"/>
|
| 215 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/Match.h"/>
|
| 216 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/SentenceAlignment.cpp"/>
|
| 217 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/SentenceAlignment.h"/>
|
| 218 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/SuffixArray.cpp"/>
|
| 219 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/SuffixArray.h"/>
|
| 220 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/Vocabulary.cpp"/>
|
| 221 |
+
<File Name="../../../moses/TranslationModel/fuzzy-match/Vocabulary.h"/>
|
| 222 |
+
</VirtualDirectory>
|
| 223 |
+
<VirtualDirectory Name="RuleTable">
|
| 224 |
+
<File Name="../../../moses/TranslationModel/RuleTable/Loader.h"/>
|
| 225 |
+
<File Name="../../../moses/TranslationModel/RuleTable/LoaderCompact.cpp"/>
|
| 226 |
+
<File Name="../../../moses/TranslationModel/RuleTable/LoaderCompact.h"/>
|
| 227 |
+
<File Name="../../../moses/TranslationModel/RuleTable/LoaderFactory.cpp"/>
|
| 228 |
+
<File Name="../../../moses/TranslationModel/RuleTable/LoaderFactory.h"/>
|
| 229 |
+
<File Name="../../../moses/TranslationModel/RuleTable/LoaderHiero.cpp"/>
|
| 230 |
+
<File Name="../../../moses/TranslationModel/RuleTable/LoaderHiero.h"/>
|
| 231 |
+
<File Name="../../../moses/TranslationModel/RuleTable/LoaderStandard.cpp"/>
|
| 232 |
+
<File Name="../../../moses/TranslationModel/RuleTable/LoaderStandard.h"/>
|
| 233 |
+
<File Name="../../../moses/TranslationModel/RuleTable/PhraseDictionaryALSuffixArray.cpp"/>
|
| 234 |
+
<File Name="../../../moses/TranslationModel/RuleTable/PhraseDictionaryALSuffixArray.h"/>
|
| 235 |
+
<File Name="../../../moses/TranslationModel/RuleTable/PhraseDictionaryFuzzyMatch.cpp"/>
|
| 236 |
+
<File Name="../../../moses/TranslationModel/RuleTable/PhraseDictionaryFuzzyMatch.h"/>
|
| 237 |
+
<File Name="../../../moses/TranslationModel/RuleTable/PhraseDictionaryOnDisk.cpp"/>
|
| 238 |
+
<File Name="../../../moses/TranslationModel/RuleTable/PhraseDictionaryOnDisk.h"/>
|
| 239 |
+
<File Name="../../../moses/TranslationModel/RuleTable/Trie.cpp"/>
|
| 240 |
+
<File Name="../../../moses/TranslationModel/RuleTable/Trie.h"/>
|
| 241 |
+
<File Name="../../../moses/TranslationModel/RuleTable/UTrie.cpp"/>
|
| 242 |
+
<File Name="../../../moses/TranslationModel/RuleTable/UTrie.h"/>
|
| 243 |
+
<File Name="../../../moses/TranslationModel/RuleTable/UTrieNode.cpp"/>
|
| 244 |
+
<File Name="../../../moses/TranslationModel/RuleTable/UTrieNode.h"/>
|
| 245 |
+
</VirtualDirectory>
|
| 246 |
+
<VirtualDirectory Name="Scope3Parser">
|
| 247 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/ApplicableRuleTrie.cpp"/>
|
| 248 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/ApplicableRuleTrie.h"/>
|
| 249 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/IntermediateVarSpanNode.h"/>
|
| 250 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/Parser.cpp"/>
|
| 251 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/Parser.h"/>
|
| 252 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/SentenceMap.h"/>
|
| 253 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/StackLattice.h"/>
|
| 254 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/StackLatticeBuilder.cpp"/>
|
| 255 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/StackLatticeBuilder.h"/>
|
| 256 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/StackLatticeSearcher.h"/>
|
| 257 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/VarSpanNode.h"/>
|
| 258 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/VarSpanTrieBuilder.cpp"/>
|
| 259 |
+
<File Name="../../../moses/TranslationModel/Scope3Parser/VarSpanTrieBuilder.h"/>
|
| 260 |
+
</VirtualDirectory>
|
| 261 |
+
<File Name="../../../moses/TranslationModel/BilingualDynSuffixArray.cpp"/>
|
| 262 |
+
<File Name="../../../moses/TranslationModel/BilingualDynSuffixArray.h"/>
|
| 263 |
+
<File Name="../../../moses/TranslationModel/DynSuffixArray.cpp"/>
|
| 264 |
+
<File Name="../../../moses/TranslationModel/DynSuffixArray.h"/>
|
| 265 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionary.cpp"/>
|
| 266 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionary.h"/>
|
| 267 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryDynamicCacheBased.cpp"/>
|
| 268 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryDynamicCacheBased.h"/>
|
| 269 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryDynSuffixArray.cpp"/>
|
| 270 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryDynSuffixArray.h"/>
|
| 271 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryMemory.cpp"/>
|
| 272 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryMemory.h"/>
|
| 273 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryMultiModel.cpp"/>
|
| 274 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryMultiModel.h"/>
|
| 275 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryMultiModelCounts.cpp"/>
|
| 276 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryMultiModelCounts.h"/>
|
| 277 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryNodeMemory.cpp"/>
|
| 278 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryNodeMemory.h"/>
|
| 279 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryScope3.cpp"/>
|
| 280 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryScope3.h"/>
|
| 281 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryTransliteration.cpp"/>
|
| 282 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryTransliteration.h"/>
|
| 283 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryTree.cpp"/>
|
| 284 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryTree.h"/>
|
| 285 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryTreeAdaptor.cpp"/>
|
| 286 |
+
<File Name="../../../moses/TranslationModel/PhraseDictionaryTreeAdaptor.h"/>
|
| 287 |
+
<File Name="../../../moses/TranslationModel/SkeletonPT.cpp"/>
|
| 288 |
+
<File Name="../../../moses/TranslationModel/SkeletonPT.h"/>
|
| 289 |
+
<File Name="../../../moses/TranslationModel/WordCoocTable.cpp"/>
|
| 290 |
+
<File Name="../../../moses/TranslationModel/WordCoocTable.h"/>
|
| 291 |
+
</VirtualDirectory>
|
| 292 |
+
<VirtualDirectory Name="Syntax">
|
| 293 |
+
<VirtualDirectory Name="S2T">
|
| 294 |
+
<VirtualDirectory Name="Parsers">
|
| 295 |
+
<VirtualDirectory Name="RecursiveCYKPlusParser">
|
| 296 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/RecursiveCYKPlusParser/RecursiveCYKPlusParser-inl.h"/>
|
| 297 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/RecursiveCYKPlusParser/RecursiveCYKPlusParser.h"/>
|
| 298 |
+
</VirtualDirectory>
|
| 299 |
+
<VirtualDirectory Name="Scope3Parser">
|
| 300 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/Parser-inl.h"/>
|
| 301 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/Parser.h"/>
|
| 302 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/PatternApplicationTrie.cpp"/>
|
| 303 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/PatternApplicationTrie.h"/>
|
| 304 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/SentenceMap.h"/>
|
| 305 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/SymbolRange.h"/>
|
| 306 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/SymbolRangeCalculator.cpp"/>
|
| 307 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/SymbolRangeCalculator.h"/>
|
| 308 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/TailLattice.h"/>
|
| 309 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/TailLatticeBuilder.cpp"/>
|
| 310 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/TailLatticeBuilder.h"/>
|
| 311 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Scope3Parser/TailLatticeSearcher.h"/>
|
| 312 |
+
</VirtualDirectory>
|
| 313 |
+
<File Name="../../../moses/Syntax/S2T/Parsers/Parser.h"/>
|
| 314 |
+
</VirtualDirectory>
|
| 315 |
+
<File Name="../../../moses/Syntax/S2T/DerivationWriter.cpp"/>
|
| 316 |
+
<File Name="../../../moses/Syntax/S2T/DerivationWriter.h"/>
|
| 317 |
+
<File Name="../../../moses/Syntax/S2T/Manager-inl.h"/>
|
| 318 |
+
<File Name="../../../moses/Syntax/S2T/Manager.h"/>
|
| 319 |
+
<File Name="../../../moses/Syntax/S2T/OovHandler-inl.h"/>
|
| 320 |
+
<File Name="../../../moses/Syntax/S2T/OovHandler.h"/>
|
| 321 |
+
<File Name="../../../moses/Syntax/S2T/ParserCallback.h"/>
|
| 322 |
+
<File Name="../../../moses/Syntax/S2T/PChart.cpp"/>
|
| 323 |
+
<File Name="../../../moses/Syntax/S2T/PChart.h"/>
|
| 324 |
+
<File Name="../../../moses/Syntax/S2T/PHyperedgeToSHyperedgeBundle.h"/>
|
| 325 |
+
<File Name="../../../moses/Syntax/S2T/RuleTrie.h"/>
|
| 326 |
+
<File Name="../../../moses/Syntax/S2T/RuleTrieCreator.h"/>
|
| 327 |
+
<File Name="../../../moses/Syntax/S2T/RuleTrieCYKPlus.cpp"/>
|
| 328 |
+
<File Name="../../../moses/Syntax/S2T/RuleTrieCYKPlus.h"/>
|
| 329 |
+
<File Name="../../../moses/Syntax/S2T/RuleTrieLoader.cpp"/>
|
| 330 |
+
<File Name="../../../moses/Syntax/S2T/RuleTrieLoader.h"/>
|
| 331 |
+
<File Name="../../../moses/Syntax/S2T/RuleTrieScope3.cpp"/>
|
| 332 |
+
<File Name="../../../moses/Syntax/S2T/RuleTrieScope3.h"/>
|
| 333 |
+
<File Name="../../../moses/Syntax/S2T/SChart.cpp"/>
|
| 334 |
+
<File Name="../../../moses/Syntax/S2T/SChart.h"/>
|
| 335 |
+
</VirtualDirectory>
|
| 336 |
+
<VirtualDirectory Name="F2S">
|
| 337 |
+
<File Name="../../../moses/Syntax/F2S/DerivationWriter.cpp"/>
|
| 338 |
+
<File Name="../../../moses/Syntax/F2S/DerivationWriter.h"/>
|
| 339 |
+
<File Name="../../../moses/Syntax/F2S/Forest.cpp"/>
|
| 340 |
+
<File Name="../../../moses/Syntax/F2S/Forest.h"/>
|
| 341 |
+
<File Name="../../../moses/Syntax/F2S/GlueRuleSynthesizer.cpp"/>
|
| 342 |
+
<File Name="../../../moses/Syntax/F2S/GlueRuleSynthesizer.h"/>
|
| 343 |
+
<File Name="../../../moses/Syntax/F2S/HyperPath.cpp"/>
|
| 344 |
+
<File Name="../../../moses/Syntax/F2S/HyperPath.h"/>
|
| 345 |
+
<File Name="../../../moses/Syntax/F2S/HyperPathLoader.cpp"/>
|
| 346 |
+
<File Name="../../../moses/Syntax/F2S/HyperPathLoader.h"/>
|
| 347 |
+
<File Name="../../../moses/Syntax/F2S/HyperTree.cpp"/>
|
| 348 |
+
<File Name="../../../moses/Syntax/F2S/HyperTree.h"/>
|
| 349 |
+
<File Name="../../../moses/Syntax/F2S/HyperTreeCreator.h"/>
|
| 350 |
+
<File Name="../../../moses/Syntax/F2S/HyperTreeLoader.cpp"/>
|
| 351 |
+
<File Name="../../../moses/Syntax/F2S/HyperTreeLoader.h"/>
|
| 352 |
+
<File Name="../../../moses/Syntax/F2S/Manager-inl.h"/>
|
| 353 |
+
<File Name="../../../moses/Syntax/F2S/Manager.h"/>
|
| 354 |
+
<File Name="../../../moses/Syntax/F2S/PHyperedgeToSHyperedgeBundle.h"/>
|
| 355 |
+
<File Name="../../../moses/Syntax/F2S/PVertexToStackMap.h"/>
|
| 356 |
+
<File Name="../../../moses/Syntax/F2S/RuleMatcher.h"/>
|
| 357 |
+
<File Name="../../../moses/Syntax/F2S/RuleMatcherCallback.h"/>
|
| 358 |
+
<File Name="../../../moses/Syntax/F2S/RuleMatcherHyperTree-inl.h"/>
|
| 359 |
+
<File Name="../../../moses/Syntax/F2S/RuleMatcherHyperTree.h"/>
|
| 360 |
+
<File Name="../../../moses/Syntax/F2S/TopologicalSorter.cpp"/>
|
| 361 |
+
<File Name="../../../moses/Syntax/F2S/TopologicalSorter.h"/>
|
| 362 |
+
<File Name="../../../moses/Syntax/F2S/TreeFragmentTokenizer.cpp"/>
|
| 363 |
+
<File Name="../../../moses/Syntax/F2S/TreeFragmentTokenizer.h"/>
|
| 364 |
+
</VirtualDirectory>
|
| 365 |
+
<VirtualDirectory Name="T2S">
|
| 366 |
+
<File Name="../../../moses/Syntax/T2S/GlueRuleSynthesizer.cpp"/>
|
| 367 |
+
<File Name="../../../moses/Syntax/T2S/GlueRuleSynthesizer.h"/>
|
| 368 |
+
<File Name="../../../moses/Syntax/T2S/HyperTree.h"/>
|
| 369 |
+
<File Name="../../../moses/Syntax/T2S/InputTree.h"/>
|
| 370 |
+
<File Name="../../../moses/Syntax/T2S/InputTreeBuilder.cpp"/>
|
| 371 |
+
<File Name="../../../moses/Syntax/T2S/InputTreeBuilder.h"/>
|
| 372 |
+
<File Name="../../../moses/Syntax/T2S/InputTreeToForest.cpp"/>
|
| 373 |
+
<File Name="../../../moses/Syntax/T2S/InputTreeToForest.h"/>
|
| 374 |
+
<File Name="../../../moses/Syntax/T2S/Manager-inl.h"/>
|
| 375 |
+
<File Name="../../../moses/Syntax/T2S/Manager.h"/>
|
| 376 |
+
<File Name="../../../moses/Syntax/T2S/RuleMatcher.h"/>
|
| 377 |
+
<File Name="../../../moses/Syntax/T2S/RuleMatcherSCFG-inl.h"/>
|
| 378 |
+
<File Name="../../../moses/Syntax/T2S/RuleMatcherSCFG.h"/>
|
| 379 |
+
<File Name="../../../moses/Syntax/T2S/RuleTrie.cpp"/>
|
| 380 |
+
<File Name="../../../moses/Syntax/T2S/RuleTrie.h"/>
|
| 381 |
+
<File Name="../../../moses/Syntax/T2S/RuleTrieCreator.h"/>
|
| 382 |
+
<File Name="../../../moses/Syntax/T2S/RuleTrieLoader.cpp"/>
|
| 383 |
+
<File Name="../../../moses/Syntax/T2S/RuleTrieLoader.h"/>
|
| 384 |
+
</VirtualDirectory>
|
| 385 |
+
<File Name="../../../moses/Syntax/BoundedPriorityContainer.h"/>
|
| 386 |
+
<File Name="../../../moses/Syntax/Cube.cpp"/>
|
| 387 |
+
<File Name="../../../moses/Syntax/Cube.h"/>
|
| 388 |
+
<File Name="../../../moses/Syntax/CubeQueue.cpp"/>
|
| 389 |
+
<File Name="../../../moses/Syntax/CubeQueue.h"/>
|
| 390 |
+
<File Name="../../../moses/Syntax/InputWeightFF.cpp"/>
|
| 391 |
+
<File Name="../../../moses/Syntax/InputWeightFF.h"/>
|
| 392 |
+
<File Name="../../../moses/Syntax/KBestExtractor.cpp"/>
|
| 393 |
+
<File Name="../../../moses/Syntax/KBestExtractor.h"/>
|
| 394 |
+
<File Name="../../../moses/Syntax/Manager.cpp"/>
|
| 395 |
+
<File Name="../../../moses/Syntax/Manager.h"/>
|
| 396 |
+
<File Name="../../../moses/Syntax/NonTerminalMap.h"/>
|
| 397 |
+
<File Name="../../../moses/Syntax/PHyperedge.h"/>
|
| 398 |
+
<File Name="../../../moses/Syntax/PLabel.h"/>
|
| 399 |
+
<File Name="../../../moses/Syntax/PVertex.h"/>
|
| 400 |
+
<File Name="../../../moses/Syntax/RuleTable.h"/>
|
| 401 |
+
<File Name="../../../moses/Syntax/RuleTableFF.cpp"/>
|
| 402 |
+
<File Name="../../../moses/Syntax/RuleTableFF.h"/>
|
| 403 |
+
<File Name="../../../moses/Syntax/SHyperedge.cpp"/>
|
| 404 |
+
<File Name="../../../moses/Syntax/SHyperedge.h"/>
|
| 405 |
+
<File Name="../../../moses/Syntax/SHyperedgeBundle.h"/>
|
| 406 |
+
<File Name="../../../moses/Syntax/SHyperedgeBundleScorer.h"/>
|
| 407 |
+
<File Name="../../../moses/Syntax/SLabel.h"/>
|
| 408 |
+
<File Name="../../../moses/Syntax/SVertex.cpp"/>
|
| 409 |
+
<File Name="../../../moses/Syntax/SVertex.h"/>
|
| 410 |
+
<File Name="../../../moses/Syntax/SVertexRecombinationOrderer.h"/>
|
| 411 |
+
<File Name="../../../moses/Syntax/SVertexStack.h"/>
|
| 412 |
+
<File Name="../../../moses/Syntax/SymbolEqualityPred.h"/>
|
| 413 |
+
<File Name="../../../moses/Syntax/SymbolHasher.h"/>
|
| 414 |
+
</VirtualDirectory>
|
| 415 |
+
<VirtualDirectory Name="LM">
|
| 416 |
+
<File Name="../../../moses/LM/Backward.cpp"/>
|
| 417 |
+
<File Name="../../../moses/LM/Backward.h"/>
|
| 418 |
+
<File Name="../../../moses/LM/BackwardLMState.cpp"/>
|
| 419 |
+
<File Name="../../../moses/LM/BackwardLMState.h"/>
|
| 420 |
+
<File Name="../../../moses/LM/BackwardTest.cpp"/>
|
| 421 |
+
<File Name="../../../moses/LM/Base.cpp"/>
|
| 422 |
+
<File Name="../../../moses/LM/Base.h"/>
|
| 423 |
+
<File Name="../../../moses/LM/BilingualLM.cpp" ExcludeProjConfig="Debug"/>
|
| 424 |
+
<File Name="../../../moses/LM/BilingualLM.h" ExcludeProjConfig="Debug"/>
|
| 425 |
+
<File Name="../../../moses/LM/ChartState.h"/>
|
| 426 |
+
<File Name="../../../moses/LM/DALMWrapper.cpp" ExcludeProjConfig="Debug"/>
|
| 427 |
+
<File Name="../../../moses/LM/DALMWrapper.h" ExcludeProjConfig="Debug"/>
|
| 428 |
+
<File Name="../../../moses/LM/Implementation.cpp"/>
|
| 429 |
+
<File Name="../../../moses/LM/Implementation.h"/>
|
| 430 |
+
<File Name="../../../moses/LM/IRST.cpp" ExcludeProjConfig="Debug"/>
|
| 431 |
+
<File Name="../../../moses/LM/IRST.h" ExcludeProjConfig="Debug"/>
|
| 432 |
+
<File Name="../../../moses/LM/Ken.cpp"/>
|
| 433 |
+
<File Name="../../../moses/LM/Ken.h"/>
|
| 434 |
+
<File Name="../../../moses/LM/LDHT.cpp" ExcludeProjConfig="Debug"/>
|
| 435 |
+
<File Name="../../../moses/LM/LDHT.h" ExcludeProjConfig="Debug"/>
|
| 436 |
+
<File Name="../../../moses/LM/MaxEntSRI.cpp" ExcludeProjConfig="Debug"/>
|
| 437 |
+
<File Name="../../../moses/LM/MaxEntSRI.h" ExcludeProjConfig="Debug"/>
|
| 438 |
+
<File Name="../../../moses/LM/MultiFactor.cpp"/>
|
| 439 |
+
<File Name="../../../moses/LM/MultiFactor.h"/>
|
| 440 |
+
<File Name="../../../moses/LM/NeuralLMWrapper.cpp" ExcludeProjConfig="Debug"/>
|
| 441 |
+
<File Name="../../../moses/LM/NeuralLMWrapper.h" ExcludeProjConfig="Debug"/>
|
| 442 |
+
<File Name="../../../moses/LM/ORLM.cpp" ExcludeProjConfig="Debug"/>
|
| 443 |
+
<File Name="../../../moses/LM/ORLM.h" ExcludeProjConfig="Debug"/>
|
| 444 |
+
<File Name="../../../moses/LM/ParallelBackoff.cpp" ExcludeProjConfig="Debug"/>
|
| 445 |
+
<File Name="../../../moses/LM/ParallelBackoff.h" ExcludeProjConfig="Debug"/>
|
| 446 |
+
<File Name="../../../moses/LM/PointerState.h"/>
|
| 447 |
+
<File Name="../../../moses/LM/Rand.cpp" ExcludeProjConfig="Debug"/>
|
| 448 |
+
<File Name="../../../moses/LM/Rand.h" ExcludeProjConfig="Debug"/>
|
| 449 |
+
<File Name="../../../moses/LM/Remote.cpp" ExcludeProjConfig="Debug"/>
|
| 450 |
+
<File Name="../../../moses/LM/Remote.h" ExcludeProjConfig="Debug"/>
|
| 451 |
+
<File Name="../../../moses/LM/SingleFactor.cpp"/>
|
| 452 |
+
<File Name="../../../moses/LM/SingleFactor.h"/>
|
| 453 |
+
<File Name="../../../moses/LM/SkeletonLM.cpp"/>
|
| 454 |
+
<File Name="../../../moses/LM/SkeletonLM.h"/>
|
| 455 |
+
<File Name="../../../moses/LM/SRI.cpp" ExcludeProjConfig="Debug"/>
|
| 456 |
+
<File Name="../../../moses/LM/SRI.h" ExcludeProjConfig="Debug"/>
|
| 457 |
+
</VirtualDirectory>
|
| 458 |
+
<VirtualDirectory Name="FF">
|
| 459 |
+
<VirtualDirectory Name="LexicalReordering">
|
| 460 |
+
<File Name="../../../moses/FF/LexicalReordering/LexicalReordering.cpp"/>
|
| 461 |
+
<File Name="../../../moses/FF/LexicalReordering/LexicalReordering.h"/>
|
| 462 |
+
<File Name="../../../moses/FF/LexicalReordering/LexicalReorderingState.cpp"/>
|
| 463 |
+
<File Name="../../../moses/FF/LexicalReordering/LexicalReorderingState.h"/>
|
| 464 |
+
<File Name="../../../moses/FF/LexicalReordering/LexicalReorderingTable.cpp"/>
|
| 465 |
+
<File Name="../../../moses/FF/LexicalReordering/LexicalReorderingTable.h"/>
|
| 466 |
+
<File Name="../../../moses/FF/LexicalReordering/ReorderingStack.cpp"/>
|
| 467 |
+
<File Name="../../../moses/FF/LexicalReordering/ReorderingStack.h"/>
|
| 468 |
+
<File Name="../../../moses/FF/LexicalReordering/SparseReordering.cpp"/>
|
| 469 |
+
<File Name="../../../moses/FF/LexicalReordering/SparseReordering.h"/>
|
| 470 |
+
</VirtualDirectory>
|
| 471 |
+
<VirtualDirectory Name="OSM-Feature">
|
| 472 |
+
<File Name="../../../moses/FF/OSM-Feature/KenOSM.cpp"/>
|
| 473 |
+
<File Name="../../../moses/FF/OSM-Feature/KenOSM.h"/>
|
| 474 |
+
<File Name="../../../moses/FF/OSM-Feature/OpSequenceModel.cpp"/>
|
| 475 |
+
<File Name="../../../moses/FF/OSM-Feature/OpSequenceModel.h"/>
|
| 476 |
+
<File Name="../../../moses/FF/OSM-Feature/osmHyp.cpp"/>
|
| 477 |
+
<File Name="../../../moses/FF/OSM-Feature/osmHyp.h"/>
|
| 478 |
+
</VirtualDirectory>
|
| 479 |
+
<File Name="../../../moses/FF/BleuScoreFeature.cpp"/>
|
| 480 |
+
<File Name="../../../moses/FF/BleuScoreFeature.h"/>
|
| 481 |
+
<File Name="../../../moses/FF/ConstrainedDecoding.cpp"/>
|
| 482 |
+
<File Name="../../../moses/FF/ConstrainedDecoding.h"/>
|
| 483 |
+
<File Name="../../../moses/FF/ControlRecombination.cpp"/>
|
| 484 |
+
<File Name="../../../moses/FF/ControlRecombination.h"/>
|
| 485 |
+
<File Name="../../../moses/FF/CountNonTerms.cpp"/>
|
| 486 |
+
<File Name="../../../moses/FF/CountNonTerms.h"/>
|
| 487 |
+
<File Name="../../../moses/FF/CoveredReferenceFeature.cpp"/>
|
| 488 |
+
<File Name="../../../moses/FF/CoveredReferenceFeature.h"/>
|
| 489 |
+
<File Name="../../../moses/FF/DecodeFeature.cpp"/>
|
| 490 |
+
<File Name="../../../moses/FF/DecodeFeature.h"/>
|
| 491 |
+
<File Name="../../../moses/FF/DistortionScoreProducer.cpp"/>
|
| 492 |
+
<File Name="../../../moses/FF/DistortionScoreProducer.h"/>
|
| 493 |
+
<File Name="../../../moses/FF/DynamicCacheBasedLanguageModel.cpp"/>
|
| 494 |
+
<File Name="../../../moses/FF/DynamicCacheBasedLanguageModel.h"/>
|
| 495 |
+
<File Name="../../../moses/FF/Factory.cpp"/>
|
| 496 |
+
<File Name="../../../moses/FF/Factory.h"/>
|
| 497 |
+
<File Name="../../../moses/FF/FeatureFunction.cpp"/>
|
| 498 |
+
<File Name="../../../moses/FF/FeatureFunction.h"/>
|
| 499 |
+
<File Name="../../../moses/FF/FFState.cpp"/>
|
| 500 |
+
<File Name="../../../moses/FF/FFState.h"/>
|
| 501 |
+
<File Name="../../../moses/FF/GlobalLexicalModel.cpp"/>
|
| 502 |
+
<File Name="../../../moses/FF/GlobalLexicalModel.h"/>
|
| 503 |
+
<File Name="../../../moses/FF/GlobalLexicalModelUnlimited.cpp"/>
|
| 504 |
+
<File Name="../../../moses/FF/GlobalLexicalModelUnlimited.h"/>
|
| 505 |
+
<File Name="../../../moses/FF/HyperParameterAsWeight.cpp"/>
|
| 506 |
+
<File Name="../../../moses/FF/HyperParameterAsWeight.h"/>
|
| 507 |
+
<File Name="../../../moses/FF/InputFeature.cpp"/>
|
| 508 |
+
<File Name="../../../moses/FF/InputFeature.h"/>
|
| 509 |
+
<File Name="../../../moses/FF/InternalTree.cpp"/>
|
| 510 |
+
<File Name="../../../moses/FF/InternalTree.h"/>
|
| 511 |
+
<File Name="../../../moses/FF/MaxSpanFreeNonTermSource.cpp"/>
|
| 512 |
+
<File Name="../../../moses/FF/MaxSpanFreeNonTermSource.h"/>
|
| 513 |
+
<File Name="../../../moses/FF/Model1Feature.cpp"/>
|
| 514 |
+
<File Name="../../../moses/FF/Model1Feature.h"/>
|
| 515 |
+
<File Name="../../../moses/FF/NieceTerminal.cpp"/>
|
| 516 |
+
<File Name="../../../moses/FF/NieceTerminal.h"/>
|
| 517 |
+
<File Name="../../../moses/FF/PhraseBoundaryFeature.cpp"/>
|
| 518 |
+
<File Name="../../../moses/FF/PhraseBoundaryFeature.h"/>
|
| 519 |
+
<File Name="../../../moses/FF/PhraseLengthFeature.cpp"/>
|
| 520 |
+
<File Name="../../../moses/FF/PhraseLengthFeature.h"/>
|
| 521 |
+
<File Name="../../../moses/FF/PhraseOrientationFeature.cpp"/>
|
| 522 |
+
<File Name="../../../moses/FF/PhraseOrientationFeature.h"/>
|
| 523 |
+
<File Name="../../../moses/FF/PhrasePairFeature.cpp"/>
|
| 524 |
+
<File Name="../../../moses/FF/PhrasePairFeature.h"/>
|
| 525 |
+
<File Name="../../../moses/FF/PhrasePenalty.cpp"/>
|
| 526 |
+
<File Name="../../../moses/FF/PhrasePenalty.h"/>
|
| 527 |
+
<File Name="../../../moses/FF/ReferenceComparison.cpp"/>
|
| 528 |
+
<File Name="../../../moses/FF/ReferenceComparison.h"/>
|
| 529 |
+
<File Name="../../../moses/FF/RulePairUnlexicalizedSource.cpp"/>
|
| 530 |
+
<File Name="../../../moses/FF/RulePairUnlexicalizedSource.h"/>
|
| 531 |
+
<File Name="../../../moses/FF/RuleScope.cpp"/>
|
| 532 |
+
<File Name="../../../moses/FF/RuleScope.h"/>
|
| 533 |
+
<File Name="../../../moses/FF/SetSourcePhrase.cpp"/>
|
| 534 |
+
<File Name="../../../moses/FF/SetSourcePhrase.h"/>
|
| 535 |
+
<File Name="../../../moses/FF/SkeletonStatefulFF.cpp"/>
|
| 536 |
+
<File Name="../../../moses/FF/SkeletonStatefulFF.h"/>
|
| 537 |
+
<File Name="../../../moses/FF/SkeletonStatelessFF.cpp"/>
|
| 538 |
+
<File Name="../../../moses/FF/SkeletonStatelessFF.h"/>
|
| 539 |
+
<File Name="../../../moses/FF/SkeletonTranslationOptionListFeature.h"/>
|
| 540 |
+
<File Name="../../../moses/FF/SoftMatchingFeature.cpp"/>
|
| 541 |
+
<File Name="../../../moses/FF/SoftMatchingFeature.h"/>
|
| 542 |
+
<File Name="../../../moses/FF/SoftSourceSyntacticConstraintsFeature.cpp"/>
|
| 543 |
+
<File Name="../../../moses/FF/SoftSourceSyntacticConstraintsFeature.h"/>
|
| 544 |
+
<File Name="../../../moses/FF/SourceGHKMTreeInputMatchFeature.cpp"/>
|
| 545 |
+
<File Name="../../../moses/FF/SourceGHKMTreeInputMatchFeature.h"/>
|
| 546 |
+
<File Name="../../../moses/FF/SourceWordDeletionFeature.cpp"/>
|
| 547 |
+
<File Name="../../../moses/FF/SourceWordDeletionFeature.h"/>
|
| 548 |
+
<File Name="../../../moses/FF/SpanLength.cpp"/>
|
| 549 |
+
<File Name="../../../moses/FF/SpanLength.h"/>
|
| 550 |
+
<File Name="../../../moses/FF/SparseHieroReorderingFeature.cpp"/>
|
| 551 |
+
<File Name="../../../moses/FF/SparseHieroReorderingFeature.h"/>
|
| 552 |
+
<File Name="../../../moses/FF/SparseHieroReorderingFeatureTest.cpp"/>
|
| 553 |
+
<File Name="../../../moses/FF/StatefulFeatureFunction.cpp"/>
|
| 554 |
+
<File Name="../../../moses/FF/StatefulFeatureFunction.h"/>
|
| 555 |
+
<File Name="../../../moses/FF/StatelessFeatureFunction.cpp"/>
|
| 556 |
+
<File Name="../../../moses/FF/StatelessFeatureFunction.h"/>
|
| 557 |
+
<File Name="../../../moses/FF/SyntaxRHS.cpp"/>
|
| 558 |
+
<File Name="../../../moses/FF/SyntaxRHS.h"/>
|
| 559 |
+
<File Name="../../../moses/FF/TargetBigramFeature.cpp"/>
|
| 560 |
+
<File Name="../../../moses/FF/TargetBigramFeature.h"/>
|
| 561 |
+
<File Name="../../../moses/FF/TargetNgramFeature.cpp"/>
|
| 562 |
+
<File Name="../../../moses/FF/TargetNgramFeature.h"/>
|
| 563 |
+
<File Name="../../../moses/FF/TargetWordInsertionFeature.cpp"/>
|
| 564 |
+
<File Name="../../../moses/FF/TargetWordInsertionFeature.h"/>
|
| 565 |
+
<File Name="../../../moses/FF/TreeStructureFeature.cpp"/>
|
| 566 |
+
<File Name="../../../moses/FF/TreeStructureFeature.h"/>
|
| 567 |
+
<File Name="../../../moses/FF/UnalignedWordCountFeature.cpp"/>
|
| 568 |
+
<File Name="../../../moses/FF/UnalignedWordCountFeature.h"/>
|
| 569 |
+
<File Name="../../../moses/FF/UnknownWordPenaltyProducer.cpp"/>
|
| 570 |
+
<File Name="../../../moses/FF/UnknownWordPenaltyProducer.h"/>
|
| 571 |
+
<File Name="../../../moses/FF/WordPenaltyProducer.cpp"/>
|
| 572 |
+
<File Name="../../../moses/FF/WordPenaltyProducer.h"/>
|
| 573 |
+
<File Name="../../../moses/FF/WordTranslationFeature.cpp"/>
|
| 574 |
+
<File Name="../../../moses/FF/WordTranslationFeature.h"/>
|
| 575 |
+
</VirtualDirectory>
|
| 576 |
+
<Description/>
|
| 577 |
+
<Dependencies/>
|
| 578 |
+
<VirtualDirectory Name="src">
|
| 579 |
+
<File Name="../../../phrase-extract/extract-ghkm/PhraseOrientation.cpp"/>
|
| 580 |
+
<File Name="../../../phrase-extract/extract-ghkm/PhraseOrientation.h"/>
|
| 581 |
+
</VirtualDirectory>
|
| 582 |
+
<VirtualDirectory Name="include"/>
|
| 583 |
+
<VirtualDirectory Name="moses">
|
| 584 |
+
<File Name="../../../moses/AlignmentInfo.cpp"/>
|
| 585 |
+
<File Name="../../../moses/AlignmentInfo.h"/>
|
| 586 |
+
<File Name="../../../moses/AlignmentInfoCollection.cpp"/>
|
| 587 |
+
<File Name="../../../moses/AlignmentInfoCollection.h"/>
|
| 588 |
+
<File Name="../../../moses/AlignmentInfoTest.cpp"/>
|
| 589 |
+
<File Name="../../../moses/BaseManager.cpp"/>
|
| 590 |
+
<File Name="../../../moses/BaseManager.h"/>
|
| 591 |
+
<File Name="../../../moses/BitmapContainer.cpp"/>
|
| 592 |
+
<File Name="../../../moses/BitmapContainer.h"/>
|
| 593 |
+
<File Name="../../../moses/ChartCell.cpp"/>
|
| 594 |
+
<File Name="../../../moses/ChartCell.h"/>
|
| 595 |
+
<File Name="../../../moses/ChartCellCollection.cpp"/>
|
| 596 |
+
<File Name="../../../moses/ChartCellCollection.h"/>
|
| 597 |
+
<File Name="../../../moses/ChartCellLabel.h"/>
|
| 598 |
+
<File Name="../../../moses/ChartCellLabelSet.h"/>
|
| 599 |
+
<File Name="../../../moses/ChartHypothesis.cpp"/>
|
| 600 |
+
<File Name="../../../moses/ChartHypothesis.h"/>
|
| 601 |
+
<File Name="../../../moses/ChartHypothesisCollection.cpp"/>
|
| 602 |
+
<File Name="../../../moses/ChartHypothesisCollection.h"/>
|
| 603 |
+
<File Name="../../../moses/ChartKBestExtractor.cpp"/>
|
| 604 |
+
<File Name="../../../moses/ChartKBestExtractor.h"/>
|
| 605 |
+
<File Name="../../../moses/ChartManager.cpp"/>
|
| 606 |
+
<File Name="../../../moses/ChartManager.h"/>
|
| 607 |
+
<File Name="../../../moses/ChartParser.cpp"/>
|
| 608 |
+
<File Name="../../../moses/ChartParser.h"/>
|
| 609 |
+
<File Name="../../../moses/ChartParserCallback.h"/>
|
| 610 |
+
<File Name="../../../moses/ChartRuleLookupManager.cpp"/>
|
| 611 |
+
<File Name="../../../moses/ChartRuleLookupManager.h"/>
|
| 612 |
+
<File Name="../../../moses/ChartTranslationOption.cpp"/>
|
| 613 |
+
<File Name="../../../moses/ChartTranslationOption.h"/>
|
| 614 |
+
<File Name="../../../moses/ChartTranslationOptionList.cpp"/>
|
| 615 |
+
<File Name="../../../moses/ChartTranslationOptionList.h"/>
|
| 616 |
+
<File Name="../../../moses/ChartTranslationOptions.cpp"/>
|
| 617 |
+
<File Name="../../../moses/ChartTranslationOptions.h"/>
|
| 618 |
+
<File Name="../../../moses/ConfusionNet.cpp"/>
|
| 619 |
+
<File Name="../../../moses/ConfusionNet.h"/>
|
| 620 |
+
<File Name="../../../moses/DecodeGraph.cpp"/>
|
| 621 |
+
<File Name="../../../moses/DecodeGraph.h"/>
|
| 622 |
+
<File Name="../../../moses/DecodeStep.cpp"/>
|
| 623 |
+
<File Name="../../../moses/DecodeStep.h"/>
|
| 624 |
+
<File Name="../../../moses/DecodeStepGeneration.cpp"/>
|
| 625 |
+
<File Name="../../../moses/DecodeStepGeneration.h"/>
|
| 626 |
+
<File Name="../../../moses/DecodeStepTranslation.cpp"/>
|
| 627 |
+
<File Name="../../../moses/DecodeStepTranslation.h"/>
|
| 628 |
+
<File Name="../../../moses/ExportInterface.cpp"/>
|
| 629 |
+
<File Name="../../../moses/ExportInterface.h"/>
|
| 630 |
+
<File Name="../../../moses/Factor.cpp"/>
|
| 631 |
+
<File Name="../../../moses/Factor.h"/>
|
| 632 |
+
<File Name="../../../moses/FactorCollection.cpp"/>
|
| 633 |
+
<File Name="../../../moses/FactorCollection.h"/>
|
| 634 |
+
<File Name="../../../moses/FactorTypeSet.cpp"/>
|
| 635 |
+
<File Name="../../../moses/FactorTypeSet.h"/>
|
| 636 |
+
<File Name="../../../moses/FeatureVector.cpp"/>
|
| 637 |
+
<File Name="../../../moses/FeatureVector.h"/>
|
| 638 |
+
<File Name="../../../moses/FeatureVectorTest.cpp"/>
|
| 639 |
+
<File Name="../../../moses/File.cpp"/>
|
| 640 |
+
<File Name="../../../moses/File.h"/>
|
| 641 |
+
<File Name="../../../moses/FilePtr.h"/>
|
| 642 |
+
<File Name="../../../moses/FloydWarshall.cpp"/>
|
| 643 |
+
<File Name="../../../moses/FloydWarshall.h"/>
|
| 644 |
+
<File Name="../../../moses/ForestInput.cpp"/>
|
| 645 |
+
<File Name="../../../moses/ForestInput.h"/>
|
| 646 |
+
<File Name="../../../moses/GenerationDictionary.cpp"/>
|
| 647 |
+
<File Name="../../../moses/GenerationDictionary.h"/>
|
| 648 |
+
<File Name="../../../moses/gzfilebuf.h"/>
|
| 649 |
+
<File Name="../../../moses/HypergraphOutput.cpp"/>
|
| 650 |
+
<File Name="../../../moses/HypergraphOutput.h"/>
|
| 651 |
+
<File Name="../../../moses/HypoList.h"/>
|
| 652 |
+
<File Name="../../../moses/Hypothesis.cpp"/>
|
| 653 |
+
<File Name="../../../moses/Hypothesis.h"/>
|
| 654 |
+
<File Name="../../../moses/HypothesisStack.cpp"/>
|
| 655 |
+
<File Name="../../../moses/HypothesisStack.h"/>
|
| 656 |
+
<File Name="../../../moses/HypothesisStackCubePruning.cpp"/>
|
| 657 |
+
<File Name="../../../moses/HypothesisStackCubePruning.h"/>
|
| 658 |
+
<File Name="../../../moses/HypothesisStackNormal.cpp"/>
|
| 659 |
+
<File Name="../../../moses/HypothesisStackNormal.h"/>
|
| 660 |
+
<File Name="../../../moses/Incremental.cpp"/>
|
| 661 |
+
<File Name="../../../moses/Incremental.h"/>
|
| 662 |
+
<File Name="../../../moses/InputFileStream.cpp"/>
|
| 663 |
+
<File Name="../../../moses/InputFileStream.h"/>
|
| 664 |
+
<File Name="../../../moses/InputPath.cpp"/>
|
| 665 |
+
<File Name="../../../moses/InputPath.h"/>
|
| 666 |
+
<File Name="../../../moses/InputType.cpp"/>
|
| 667 |
+
<File Name="../../../moses/InputType.h"/>
|
| 668 |
+
<File Name="../../../moses/IOWrapper.cpp"/>
|
| 669 |
+
<File Name="../../../moses/IOWrapper.h"/>
|
| 670 |
+
<File Name="../../../moses/LatticeMBR.cpp"/>
|
| 671 |
+
<File Name="../../../moses/LatticeMBR.h"/>
|
| 672 |
+
<File Name="../../../moses/LVoc.cpp"/>
|
| 673 |
+
<File Name="../../../moses/LVoc.h"/>
|
| 674 |
+
<File Name="../../../moses/Manager.cpp"/>
|
| 675 |
+
<File Name="../../../moses/Manager.h"/>
|
| 676 |
+
<File Name="../../../moses/mbr.cpp"/>
|
| 677 |
+
<File Name="../../../moses/mbr.h"/>
|
| 678 |
+
<File Name="../../../moses/MockHypothesis.cpp"/>
|
| 679 |
+
<File Name="../../../moses/MockHypothesis.h"/>
|
| 680 |
+
<File Name="../../../moses/MosesTest.cpp"/>
|
| 681 |
+
<File Name="../../../moses/NonTerminal.cpp"/>
|
| 682 |
+
<File Name="../../../moses/NonTerminal.h"/>
|
| 683 |
+
<File Name="../../../moses/ObjectPool.h"/>
|
| 684 |
+
<File Name="../../../moses/OutputCollector.h"/>
|
| 685 |
+
<File Name="../../../moses/Parameter.cpp"/>
|
| 686 |
+
<File Name="../../../moses/Parameter.h"/>
|
| 687 |
+
<File Name="../../../moses/PartialTranslOptColl.cpp"/>
|
| 688 |
+
<File Name="../../../moses/PartialTranslOptColl.h"/>
|
| 689 |
+
<File Name="../../../moses/PCNTools.cpp"/>
|
| 690 |
+
<File Name="../../../moses/PCNTools.h"/>
|
| 691 |
+
<File Name="../../../moses/PDTAimp.cpp"/>
|
| 692 |
+
<File Name="../../../moses/PDTAimp.h"/>
|
| 693 |
+
<File Name="../../../moses/Phrase.cpp"/>
|
| 694 |
+
<File Name="../../../moses/Phrase.h"/>
|
| 695 |
+
<File Name="../../../moses/PrefixTree.h"/>
|
| 696 |
+
<File Name="../../../moses/PrefixTreeMap.cpp"/>
|
| 697 |
+
<File Name="../../../moses/PrefixTreeMap.h"/>
|
| 698 |
+
<File Name="../../../moses/ReorderingConstraint.cpp"/>
|
| 699 |
+
<File Name="../../../moses/ReorderingConstraint.h"/>
|
| 700 |
+
<File Name="../../../moses/RuleCube.cpp"/>
|
| 701 |
+
<File Name="../../../moses/RuleCube.h"/>
|
| 702 |
+
<File Name="../../../moses/RuleCubeItem.cpp"/>
|
| 703 |
+
<File Name="../../../moses/RuleCubeItem.h"/>
|
| 704 |
+
<File Name="../../../moses/RuleCubeQueue.cpp"/>
|
| 705 |
+
<File Name="../../../moses/RuleCubeQueue.h"/>
|
| 706 |
+
<File Name="../../../moses/ScoreComponentCollection.cpp"/>
|
| 707 |
+
<File Name="../../../moses/ScoreComponentCollection.h"/>
|
| 708 |
+
<File Name="../../../moses/ScoreComponentCollectionTest.cpp"/>
|
| 709 |
+
<File Name="../../../moses/Search.cpp"/>
|
| 710 |
+
<File Name="../../../moses/Search.h"/>
|
| 711 |
+
<File Name="../../../moses/SearchCubePruning.cpp"/>
|
| 712 |
+
<File Name="../../../moses/SearchCubePruning.h"/>
|
| 713 |
+
<File Name="../../../moses/SearchNormal.cpp"/>
|
| 714 |
+
<File Name="../../../moses/SearchNormal.h"/>
|
| 715 |
+
<File Name="../../../moses/SearchNormalBatch.cpp"/>
|
| 716 |
+
<File Name="../../../moses/SearchNormalBatch.h"/>
|
| 717 |
+
<File Name="../../../moses/Sentence.cpp"/>
|
| 718 |
+
<File Name="../../../moses/Sentence.h"/>
|
| 719 |
+
<File Name="../../../moses/SentenceStats.cpp"/>
|
| 720 |
+
<File Name="../../../moses/SentenceStats.h"/>
|
| 721 |
+
<File Name="../../../moses/SquareMatrix.cpp"/>
|
| 722 |
+
<File Name="../../../moses/SquareMatrix.h"/>
|
| 723 |
+
<File Name="../../../moses/StackVec.h"/>
|
| 724 |
+
<File Name="../../../moses/StaticData.cpp"/>
|
| 725 |
+
<File Name="../../../moses/StaticData.h"/>
|
| 726 |
+
<File Name="../../../moses/SyntacticLanguageModel.cpp"/>
|
| 727 |
+
<File Name="../../../moses/SyntacticLanguageModel.h"/>
|
| 728 |
+
<File Name="../../../moses/SyntacticLanguageModelFiles.h"/>
|
| 729 |
+
<File Name="../../../moses/SyntacticLanguageModelState.h"/>
|
| 730 |
+
<File Name="../../../moses/TabbedSentence.cpp"/>
|
| 731 |
+
<File Name="../../../moses/TabbedSentence.h"/>
|
| 732 |
+
<File Name="../../../moses/TargetPhrase.cpp"/>
|
| 733 |
+
<File Name="../../../moses/TargetPhrase.h"/>
|
| 734 |
+
<File Name="../../../moses/TargetPhraseCollection.cpp"/>
|
| 735 |
+
<File Name="../../../moses/TargetPhraseCollection.h"/>
|
| 736 |
+
<File Name="../../../moses/Terminal.h"/>
|
| 737 |
+
<File Name="../../../moses/ThreadPool.cpp"/>
|
| 738 |
+
<File Name="../../../moses/ThreadPool.h"/>
|
| 739 |
+
<File Name="../../../moses/Timer.cpp"/>
|
| 740 |
+
<File Name="../../../moses/Timer.h"/>
|
| 741 |
+
<File Name="../../../moses/TrainingTask.h"/>
|
| 742 |
+
<File Name="../../../moses/TranslationAnalysis.cpp"/>
|
| 743 |
+
<File Name="../../../moses/TranslationAnalysis.h"/>
|
| 744 |
+
<File Name="../../../moses/TranslationOption.cpp"/>
|
| 745 |
+
<File Name="../../../moses/TranslationOption.h"/>
|
| 746 |
+
<File Name="../../../moses/TranslationOptionCollection.cpp"/>
|
| 747 |
+
<File Name="../../../moses/TranslationOptionCollection.h"/>
|
| 748 |
+
<File Name="../../../moses/TranslationOptionCollectionConfusionNet.cpp"/>
|
| 749 |
+
<File Name="../../../moses/TranslationOptionCollectionConfusionNet.h"/>
|
| 750 |
+
<File Name="../../../moses/TranslationOptionCollectionLattice.cpp"/>
|
| 751 |
+
<File Name="../../../moses/TranslationOptionCollectionLattice.h"/>
|
| 752 |
+
<File Name="../../../moses/TranslationOptionCollectionText.cpp"/>
|
| 753 |
+
<File Name="../../../moses/TranslationOptionCollectionText.h"/>
|
| 754 |
+
<File Name="../../../moses/TranslationOptionList.cpp"/>
|
| 755 |
+
<File Name="../../../moses/TranslationOptionList.h"/>
|
| 756 |
+
<File Name="../../../moses/TranslationTask.cpp"/>
|
| 757 |
+
<File Name="../../../moses/TranslationTask.h"/>
|
| 758 |
+
<File Name="../../../moses/TreeInput.cpp"/>
|
| 759 |
+
<File Name="../../../moses/TreeInput.h"/>
|
| 760 |
+
<File Name="../../../moses/TrellisPath.cpp"/>
|
| 761 |
+
<File Name="../../../moses/TrellisPath.h"/>
|
| 762 |
+
<File Name="../../../moses/TrellisPathCollection.cpp"/>
|
| 763 |
+
<File Name="../../../moses/TrellisPathCollection.h"/>
|
| 764 |
+
<File Name="../../../moses/TrellisPathList.h"/>
|
| 765 |
+
<File Name="../../../moses/TypeDef.h"/>
|
| 766 |
+
<File Name="../../../moses/UniqueObject.h"/>
|
| 767 |
+
<File Name="../../../moses/Util.cpp"/>
|
| 768 |
+
<File Name="../../../moses/Util.h"/>
|
| 769 |
+
<File Name="../../../moses/Word.cpp"/>
|
| 770 |
+
<File Name="../../../moses/Word.h"/>
|
| 771 |
+
<File Name="../../../moses/WordLattice.cpp"/>
|
| 772 |
+
<File Name="../../../moses/WordLattice.h"/>
|
| 773 |
+
<File Name="../../../moses/Bitmap.cpp"/>
|
| 774 |
+
<File Name="../../../moses/Bitmap.h"/>
|
| 775 |
+
<File Name="../../../moses/Range.cpp"/>
|
| 776 |
+
<File Name="../../../moses/Range.h"/>
|
| 777 |
+
<File Name="../../../moses/XmlOption.cpp"/>
|
| 778 |
+
<File Name="../../../moses/XmlOption.h"/>
|
| 779 |
+
<File Name="../../../moses/OutputFileStream.cpp"/>
|
| 780 |
+
<File Name="../../../moses/OutputFileStream.h"/>
|
| 781 |
+
</VirtualDirectory>
|
| 782 |
+
<VirtualDirectory Name="PP">
|
| 783 |
+
<File Name="../../../moses/PP/CountsPhraseProperty.cpp"/>
|
| 784 |
+
<File Name="../../../moses/PP/CountsPhraseProperty.h"/>
|
| 785 |
+
<File Name="../../../moses/PP/Factory.cpp"/>
|
| 786 |
+
<File Name="../../../moses/PP/Factory.h"/>
|
| 787 |
+
<File Name="../../../moses/PP/NonTermContextProperty.cpp"/>
|
| 788 |
+
<File Name="../../../moses/PP/NonTermContextProperty.h"/>
|
| 789 |
+
<File Name="../../../moses/PP/OrientationPhraseProperty.cpp"/>
|
| 790 |
+
<File Name="../../../moses/PP/OrientationPhraseProperty.h"/>
|
| 791 |
+
<File Name="../../../moses/PP/PhraseProperty.cpp"/>
|
| 792 |
+
<File Name="../../../moses/PP/PhraseProperty.h"/>
|
| 793 |
+
<File Name="../../../moses/PP/SourceLabelsPhraseProperty.cpp"/>
|
| 794 |
+
<File Name="../../../moses/PP/SourceLabelsPhraseProperty.h"/>
|
| 795 |
+
<File Name="../../../moses/PP/SpanLengthPhraseProperty.cpp"/>
|
| 796 |
+
<File Name="../../../moses/PP/SpanLengthPhraseProperty.h"/>
|
| 797 |
+
<File Name="../../../moses/PP/TreeStructurePhraseProperty.h"/>
|
| 798 |
+
</VirtualDirectory>
|
| 799 |
+
<VirtualDirectory Name="parameters">
|
| 800 |
+
<File Name="../../../moses/parameters/ContextParameters.cpp"/>
|
| 801 |
+
<File Name="../../../moses/parameters/ContextParameters.h"/>
|
| 802 |
+
<File Name="../../../moses/parameters/BookkeepingOptions.cpp"/>
|
| 803 |
+
<File Name="../../../moses/parameters/BookkeepingOptions.h"/>
|
| 804 |
+
<File Name="../../../moses/parameters/NBestOptions.cpp"/>
|
| 805 |
+
<File Name="../../../moses/parameters/NBestOptions.h"/>
|
| 806 |
+
</VirtualDirectory>
|
| 807 |
+
<Settings Type="Static Library">
|
| 808 |
+
<GlobalSettings>
|
| 809 |
+
<Compiler Options="" C_Options="" Assembler="">
|
| 810 |
+
<IncludePath Value="."/>
|
| 811 |
+
</Compiler>
|
| 812 |
+
<Linker Options="">
|
| 813 |
+
<LibraryPath Value="."/>
|
| 814 |
+
</Linker>
|
| 815 |
+
<ResourceCompiler Options=""/>
|
| 816 |
+
</GlobalSettings>
|
| 817 |
+
<Configuration Name="Debug" CompilerType="GCC" DebuggerType="LLDB Debugger" Type="Static Library" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append">
|
| 818 |
+
<Compiler Options="-g -std=c++0x" C_Options="-g" Assembler="" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" PCHFlags="" PCHFlagsPolicy="0">
|
| 819 |
+
<IncludePath Value="."/>
|
| 820 |
+
<IncludePath Value="../../../"/>
|
| 821 |
+
<IncludePath Value="../../../phrase-extract"/>
|
| 822 |
+
<IncludePath Value="../../../boost/include"/>
|
| 823 |
+
<Preprocessor Value="MAX_NUM_FACTORS=4"/>
|
| 824 |
+
<Preprocessor Value="KENLM_MAX_ORDER=7"/>
|
| 825 |
+
<Preprocessor Value="WITH_THREADS"/>
|
| 826 |
+
<Preprocessor Value="TRACE_ENABLE=1"/>
|
| 827 |
+
</Compiler>
|
| 828 |
+
<Linker Options="" Required="yes"/>
|
| 829 |
+
<ResourceCompiler Options="" Required="no"/>
|
| 830 |
+
<General OutputFile="$(IntermediateDirectory)/lib$(ProjectName).a" IntermediateDirectory="./Debug" Command="" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="yes" IsGUIProgram="no" IsEnabled="yes"/>
|
| 831 |
+
<Environment EnvVarSetName="<Use Defaults>" DbgSetName="<Use Defaults>">
|
| 832 |
+
<![CDATA[]]>
|
| 833 |
+
</Environment>
|
| 834 |
+
<Debugger IsRemote="no" RemoteHostName="" RemoteHostPort="" DebuggerPath="" IsExtended="yes">
|
| 835 |
+
<DebuggerSearchPaths/>
|
| 836 |
+
<PostConnectCommands/>
|
| 837 |
+
<StartupCommands/>
|
| 838 |
+
</Debugger>
|
| 839 |
+
<PreBuild/>
|
| 840 |
+
<PostBuild/>
|
| 841 |
+
<CustomBuild Enabled="no">
|
| 842 |
+
<RebuildCommand/>
|
| 843 |
+
<CleanCommand/>
|
| 844 |
+
<BuildCommand/>
|
| 845 |
+
<PreprocessFileCommand/>
|
| 846 |
+
<SingleFileCommand/>
|
| 847 |
+
<MakefileGenerationCommand/>
|
| 848 |
+
<ThirdPartyToolName/>
|
| 849 |
+
<WorkingDirectory/>
|
| 850 |
+
</CustomBuild>
|
| 851 |
+
<AdditionalRules>
|
| 852 |
+
<CustomPostBuild/>
|
| 853 |
+
<CustomPreBuild/>
|
| 854 |
+
</AdditionalRules>
|
| 855 |
+
<Completion EnableCpp11="no" EnableCpp14="no">
|
| 856 |
+
<ClangCmpFlagsC/>
|
| 857 |
+
<ClangCmpFlags/>
|
| 858 |
+
<ClangPP/>
|
| 859 |
+
<SearchPaths/>
|
| 860 |
+
</Completion>
|
| 861 |
+
</Configuration>
|
| 862 |
+
<Configuration Name="Release" CompilerType="clang( based on LLVM 3.5svn )" DebuggerType="LLDB Debugger" Type="Static Library" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append">
|
| 863 |
+
<Compiler Options="" C_Options="" Assembler="" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" PCHFlags="" PCHFlagsPolicy="0">
|
| 864 |
+
<IncludePath Value="."/>
|
| 865 |
+
</Compiler>
|
| 866 |
+
<Linker Options="" Required="yes"/>
|
| 867 |
+
<ResourceCompiler Options="" Required="no"/>
|
| 868 |
+
<General OutputFile="$(IntermediateDirectory)/lib$(ProjectName).a" IntermediateDirectory="./Release" Command="" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="yes" IsGUIProgram="no" IsEnabled="yes"/>
|
| 869 |
+
<Environment EnvVarSetName="<Use Defaults>" DbgSetName="<Use Defaults>">
|
| 870 |
+
<![CDATA[]]>
|
| 871 |
+
</Environment>
|
| 872 |
+
<Debugger IsRemote="no" RemoteHostName="" RemoteHostPort="" DebuggerPath="" IsExtended="yes">
|
| 873 |
+
<DebuggerSearchPaths/>
|
| 874 |
+
<PostConnectCommands/>
|
| 875 |
+
<StartupCommands/>
|
| 876 |
+
</Debugger>
|
| 877 |
+
<PreBuild/>
|
| 878 |
+
<PostBuild/>
|
| 879 |
+
<CustomBuild Enabled="no">
|
| 880 |
+
<RebuildCommand/>
|
| 881 |
+
<CleanCommand/>
|
| 882 |
+
<BuildCommand/>
|
| 883 |
+
<PreprocessFileCommand/>
|
| 884 |
+
<SingleFileCommand/>
|
| 885 |
+
<MakefileGenerationCommand/>
|
| 886 |
+
<ThirdPartyToolName/>
|
| 887 |
+
<WorkingDirectory/>
|
| 888 |
+
</CustomBuild>
|
| 889 |
+
<AdditionalRules>
|
| 890 |
+
<CustomPostBuild/>
|
| 891 |
+
<CustomPreBuild/>
|
| 892 |
+
</AdditionalRules>
|
| 893 |
+
<Completion EnableCpp11="no" EnableCpp14="no">
|
| 894 |
+
<ClangCmpFlagsC/>
|
| 895 |
+
<ClangCmpFlags/>
|
| 896 |
+
<ClangPP/>
|
| 897 |
+
<SearchPaths/>
|
| 898 |
+
</Completion>
|
| 899 |
+
</Configuration>
|
| 900 |
+
</Settings>
|
| 901 |
+
<Dependencies Name="Debug"/>
|
| 902 |
+
<Dependencies Name="Release"/>
|
| 903 |
+
</CodeLite_Project>
|