-
Notifications
You must be signed in to change notification settings - Fork 10
Description
In discussions with Sebastian about the completions, we both had the impression the existing structure of the completion is a bit messy to be processed by a client.
A nested list of words [(Word,[Word])]
is in most cases a bit of an overkill, usually only the last word of a list of words (a phrase) query is of interest, so a [Word]
or a [(Word,Score)]
for completion of the last word would be sufficient (This only would concern the result, when the query is evaluated all the other words would all be taken into account).
When working on the scoring algorithms for the completions, I've one rather simple algorithm (processing arbitrary queries), that computes a scored list of words suited for completions. In the local version, I've added a new CmdResult
variant ResSuggestions
that delivers a scored (and sorted by score) list of words. The ResCompletion
is still there, but not used.
Is this simplified version o.k.? Is this a version sufficient with the 1. release or do we need the more advanced version too? Any suggestions?