1
1
mirror of https://github.com/github/semantic.git synced 2024-11-29 11:02:26 +03:00

Note that we need to recur in SES.

This commit is contained in:
Rob Rix 2015-10-06 12:01:39 -04:00
parent 6a11a88dea
commit d020d17f60

View File

@ -132,6 +132,7 @@ public enum FreeAlgorithm<A, B> {
let down = matrix[i, j + 1]
let diagonal = matrix[i + 1, j + 1]
// fixme: this should recur.
let diff = Diff.Pure(Patch.Replace(a[i], b[j]))
if let right = right, down = down, diagonal = diagonal {