You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Carter Davis edited this page Mar 5, 2026
·
2 revisions
Research Sources
Source 1: Flexible Tree Matching by Ranjitha Kumar(Lead Author)
This source is an explanation of a method to compare similarity between abstract syntax trees. The authors present an algorithm that they have developed to compare the syntax and functionality of nodes in an AST and then calculate how similar it is compared to another tree that they give the algorithm. It is able to match nodes as similar even when using variable names that are different, and even when they apear at completely different ends of the tree.
Source 2: Combining Similarity Metrics with Abstract Syntax Trees to Gain Insights into How Students Program by Manuel Freire-Morán
This paper shows an implementation of, and project using an algorithm like the one described in the source above.