diff options
author | Chris Dyer <redpony@gmail.com> | 2014-02-27 19:45:14 -0500 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2014-02-27 19:45:14 -0500 |
commit | 5675965782e2c9201a7a2fe54b542f5b06d660ef (patch) | |
tree | 2fefaf95c72f2caa72185e4579ad3b715e1cc5c4 /python/cdec/sa/bilex.pxi | |
parent | ed56625e5edeadbe9297680b07e269c42b7ea420 (diff) | |
parent | 53f4328e5e5cc72c6d483783edb85ba16b414caf (diff) |
Merge branch 'master' of https://github.com/redpony/cdec
Diffstat (limited to 'python/cdec/sa/bilex.pxi')
-rw-r--r-- | python/cdec/sa/bilex.pxi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/python/cdec/sa/bilex.pxi b/python/cdec/sa/bilex.pxi index 44bc0ce6..73ba99c1 100644 --- a/python/cdec/sa/bilex.pxi +++ b/python/cdec/sa/bilex.pxi @@ -249,6 +249,14 @@ cdef class BiLex: fclose(f) + def contains_e_word(self, eword): + return (eword in self.eword2id) + + + def contains_f_word(self, fword): + return (fword in self.fword2id) + + def get_e_id(self, eword): if eword not in self.eword2id: e_id = len(self.id2eword) |