// Copyright © 2015 GitHub. All rights reserved. /// Computes the SES (shortest edit script), i.e. the shortest sequence of diffs (`Free>`) for two arrays of terms (`Fix`) which would suffice to transform `a` into `b`. /// /// This is computed w.r.t. an `equals` function, which computes the equality of leaf nodes within terms, and a `recur` function, which produces diffs representing matched-up terms. public func SES(a: [Fix], _ b: [Fix], equals: (A, A) -> Bool, recur: (Fix, Fix) -> Free>) -> [Free>] { typealias Term = Fix typealias Diff = Free> if a.isEmpty { return b.map { Diff.Pure(Patch.Insert($0)) } } if b.isEmpty { return a.map { Diff.Pure(Patch.Delete($0)) } } func cost(diff: Diff) -> Int { return diff.map(const(1)).iterate { syntax in switch syntax { case .Leaf: return 0 case let .Indexed(costs): return costs.reduce(0, combine: +) case let .Keyed(costs): return costs.lazy.map { $1 }.reduce(0, combine: +) } } } func cons(diff: Diff, rest: Memo>) -> Stream<(Diff, Int)> { return .Cons((diff, cost(diff) + costOfStream(rest)), rest) } func costOfStream(stream: Memo>) -> Int { return stream.value.first?.1 ?? 0 } var matrix: Matrix>! matrix = Matrix(width: a.count, height: b.count) { i, j in let right = matrix[i + 1, j] let down = matrix[i, j + 1] let diagonal = matrix[i + 1, j + 1] let diff = recur(a[i], b[j]) func copy(term: Term) -> Diff { return Diff.Roll(term.out.map(copy)) } if let right = right, down = down, diagonal = diagonal { let costs = (right: costOfStream(right), down: costOfStream(down), diagonal: costOfStream(diagonal)) // nominate the best edge to continue along let best: Memo> if costs.diagonal < costs.down { best = costs.diagonal < costs.right ? diagonal : right } else { best = costs.down < costs.right ? down : right } return cons(diff, rest: best) } // right extent of the edit graph; can only move down if let down = down { return cons(diff, rest: down) } // bottom extent of the edit graph; can only move right if let right = right { return cons(diff, rest: right) } // bottom-right corner of the edit graph return cons(diff, rest: Memo(evaluated: Stream.Nil)) } return Array(matrix[0, 0]!.value.map { diff, _ in diff }) }