class Diff::LCS::Change

def ==(other)

def ==(other)
  (self.class == other.class) and
  (self.action == other.action) and
  (self.position == other.position) and
  (self.element == other.element)
end