Skip to content
Snippets Groups Projects
Commit 5c4e2636 authored by Mads Kiilerich's avatar Mads Kiilerich
Browse files

bdiff: rearrange the "better longest match" code

This is primarily to make the code more managable and prepare for later
changes.

More specific assignments might also be slightly faster, even thought it also
might generate a bit more code.
parent 38ed5488
No related branches found
No related tags found
No related merge requests found
......@@ -177,7 +177,8 @@
/* best match so far? we prefer matches closer
to the middle to balance recursion */
if (k > mk || (k == mk && (i <= mi || i <= half))) {
if (k > mk) {
/* a longer match */
mi = i;
mj = j;
mk = k;
......@@ -181,6 +182,15 @@
mi = i;
mj = j;
mk = k;
} else if (k == mk) {
if (i > mi && i <= half) {
/* same match but closer to half */
mi = i;
mj = j;
} else if (i == mi) {
/* same i but earlier j */
mj = j;
}
}
}
}
......
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