diff_myers {diffobj} | R Documentation |
Implementation of Myer's Diff algorithm with linear space refinement
originally implemented by Mike B. Allen as part of
libmba
version 0.9.1. This implementation is a heavily modified version of the
original C code and is not compatible with the libmba
library.
The C code is simplified by using fixed size arrays instead of variable
ones for tracking the longest reaching paths and for recording the shortest
edit scripts. Additionally all error handling and memory allocation calls
have been moved to the internal R functions designed to handle those things.
A failover result is provided in the case where max diffs allowed is
exceeded. Ability to provide custom comparison functions is removed.
diff_myers(a, b, max.diffs = 0L, warn = FALSE)
a |
character |
b |
character |
max.diffs |
integer(1L) how many differences before giving up; set to zero to allow as many as there are |
warn |
TRUE or FALSE, whether to warn if we hit 'max.diffs'. |
list