summaryrefslogtreecommitdiff
path: root/python/src/sa/rulefactory.pxi
diff options
context:
space:
mode:
Diffstat (limited to 'python/src/sa/rulefactory.pxi')
-rw-r--r--python/src/sa/rulefactory.pxi3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/src/sa/rulefactory.pxi b/python/src/sa/rulefactory.pxi
index 24bb680f..1c8d25a4 100644
--- a/python/src/sa/rulefactory.pxi
+++ b/python/src/sa/rulefactory.pxi
@@ -975,7 +975,6 @@ cdef class HieroCachingRuleFactory:
continue
phrase = prefix + (word_id,)
- str_phrase = map(sym_tostring, phrase)
hiero_phrase = Phrase(phrase)
arity = hiero_phrase.arity()
@@ -1019,7 +1018,7 @@ cdef class HieroCachingRuleFactory:
else:
# Suffix array search
phrase_location = node.phrase_location
- sa_range = self.fsa.lookup(str_phrase[-1], len(str_phrase)-1, phrase_location.sa_low, phrase_location.sa_high)
+ sa_range = self.fsa.lookup(sym_tostring(phrase[-1]), len(phrase)-1, phrase_location.sa_low, phrase_location.sa_high)
if sa_range is not None:
phrase_location = PhraseLocation(sa_low=sa_range[0], sa_high=sa_range[1])
else: