TitleGeneralized data structure synthesis
Publication TypeConference Paper
Year of Publication2018
AuthorsLoncaric C, Ernst MD, Torlak E
Conference NameICSE 2018, Proceedings of the 40th International Conference on Software Engineering
Pagination958-968
Date or Month PublishedMay
Conference LocationGothenburg, Sweden
AbstractData structure synthesis is the task of generating data structure implementations from high-level specifications. Recent work in this area has shown potential to save programmer time and reduce the risk of defects. Existing techniques focus on data structures for manipulating subsets of a single collection, but real-world programs often track multiple related collections and aggregate properties such as sums, counts, minimums, and maximums. \par This paper shows how to synthesize data structures that track subsets and aggregations of multiple related collections. Our technique decomposes the synthesis task into alternating steps of \emphquery synthesis and \emphincrementalization. The query synthesis step implements pure operations over the data structure state by leveraging existing enumerative synthesis techniques, specialized to the data structures domain. The incrementalization step implements imperative state modifications by re-framing them as fresh queries that determine what to change, coupled with a small amount of code to apply the change. As an added benefit of this approach over previous work, the synthesized data structure is optimized for not only the queries in the specification but also the required update operations. We have evaluated our approach in four large case studies, demonstrating that these extensions are broadly applicable.
Downloadshttps://github.com/CozySynthesizer/cozy Cozy implementation
Citation KeyLoncaricET2018