-
Notifications
You must be signed in to change notification settings - Fork 353
Structural Diffs
Wilfred Hughes edited this page Jun 26, 2021
·
12 revisions
Most tree diff implementations focus on XML, and there's a great overview of techniques in this blog post.
Jane Street's patdiff implements a tree diff, using an A* algorithm.
json-diff provides a proper structural diff for JSON files.
graphtage compares structured data by parsing into a generic file format, then displaying a diff. It finds the optimal edit sequence, and even allows things like diffing JSON against YAML.
sdiff and diff-sexp explore s-expression oriented diffs.
Autochrome is a structural diff for Clojure, using Dijkstra pathfinding. It does not track moves.