summaryrefslogtreecommitdiff
path: root/python/src/sa/suffix_array.pxi
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2012-09-20 21:51:31 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2012-09-20 21:51:31 -0400
commitd2bc8694e5450a46c6f851d926c1ebfeb3424cbf (patch)
tree5619896999d43ca478acee0da2b1c60244aab5b1 /python/src/sa/suffix_array.pxi
parent78518f1f417616633b300a361cd5e0c1bcb1ff24 (diff)
parent5d159b948ad71850bcb03d0882ea7183a3a59b7e (diff)
Merge branch 'master' of https://github.com/redpony/cdec
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 d86e8ea6..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 getSentId(self, i):
- return self.darray.getSentId(i)
-
- def getSent(self, i):
- return self.darray.getSent(i)
-
- def getSentPos(self, loc):
- return self.darray.getSentPos(loc)
-
def read_text(self, filename, side):
'''Constructs suffix array using the algorithm
of Larsson & Sadahkane (1999)'''