summaryrefslogtreecommitdiff
path: root/python/src/sa/suffix_array.pxi
diff options
context:
space:
mode:
authorVictor Chahuneau <vchahune@cs.cmu.edu>2012-09-06 16:44:53 +0100
committerVictor Chahuneau <vchahune@cs.cmu.edu>2012-09-06 16:44:53 +0100
commit28194c2d099b9ea039b60ac35393626ce26d326c (patch)
tree4beb695adae0a6dea92e14febbd047a5c547fbc5 /python/src/sa/suffix_array.pxi
parent8bc09e198e53da911fd625ae2cb26c38b53fb36a (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.pxi9
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)'''