next up previous
Next: Suffix Table Up: No Title Previous: Finding Words

Removing Suffixes

To achieve this is to add the following clause to find_word

find_word(Ending,Tree,Result+Suffix) :-
 suffix(Ending,Suffix),
 find_word([],Tree,Result).



Mike Rosner
Mon Feb 14 08:45:31 MET 2000