diff options
author | Victor Chahuneau <vchahune@cs.cmu.edu> | 2012-09-06 16:44:53 +0100 |
---|---|---|
committer | Victor Chahuneau <vchahune@cs.cmu.edu> | 2012-09-06 16:44:53 +0100 |
commit | c1b77250f656c4cff9f0e532d6b6644cb0dc993c (patch) | |
tree | 93711d64a442124ca441e61d64b75b861c517120 /python/src/sa/suffix_array.pxi | |
parent | fe9577d0ec51b7a5136d23885742780ca7f9ba8c (diff) |
[cdec.sa] Fix API to make everyone happy
Diffstat (limited to 'python/src/sa/suffix_array.pxi')
-rw-r--r-- | python/src/sa/suffix_array.pxi | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/python/src/sa/suffix_array.pxi b/python/src/sa/suffix_array.pxi index baa3d546..de4adcd9 100644 --- a/python/src/sa/suffix_array.pxi +++ b/python/src/sa/suffix_array.pxi @@ -20,15 +20,6 @@ cdef class SuffixArray: def __getitem__(self, i): return self.sa.arr[i] - def get_sentence_id(self, i): - return self.darray.get_sentence_id(i) - - def get_sentence(self, i): - return self.darray.get_sentence(i) - - def get_sentence_position(self, loc): - return self.darray.get_sentence_position(loc) - def read_text(self, filename, side): '''Constructs suffix array using the algorithm of Larsson & Sadahkane (1999)''' |