Skip to content
Snippets Groups Projects
Commit f071e75b authored by satok's avatar satok
Browse files

Change the prune condition

Change-Id: I92aef12e0e1d89cfe1b346ddc6ef4df158ffe0b3
parent 8289dede
No related branches found
No related tags found
No related merge requests found
......@@ -808,7 +808,8 @@ inline bool UnigramDictionary::processCurrentNode(const int initialPos, const in
}
}
// Optimization: Prune out words that are too long compared to how much was typed.
if (correctionState->getOutputIndex() >= maxDepth || diffs > mMaxEditDistance) {
if (isTerminal
&& (correctionState->getOutputIndex() >= maxDepth || diffs > mMaxEditDistance)) {
// We are giving up parsing this node and its children. Skip the rest of the node,
// output the sibling position, and return that we don't want to traverse children.
if (!isLastChar) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment