module Diff::LCS

def traverse_balanced(other, callbacks = nil, &block)

Diff::LCS#traverse_balanced.
+other+ using the alternate, balanced algorithm. See
Traverses the discovered longest common subsequences between +self+ and
def traverse_balanced(other, callbacks = nil, &block)
  Diff::LCS.traverse_balanced(self, other, callbacks || Diff::LCS::BalancedCallbacks, &block)
end